2005-10-12 16:00:20 +02:00
|
|
|
{ postscriptSupport ? true
|
|
|
|
, pdfSupport ? true
|
|
|
|
, pngSupport ? true
|
2013-01-29 13:48:25 +01:00
|
|
|
, xcbSupport ? true # no longer experimental since 1.12
|
2012-12-02 12:25:29 +01:00
|
|
|
, glSupport ? false
|
2011-09-20 08:22:14 +02:00
|
|
|
, gobjectSupport ? true, glib
|
2011-02-08 18:57:00 +01:00
|
|
|
, stdenv, fetchurl, pkgconfig, x11, fontconfig, freetype, xlibs
|
2013-02-10 14:19:34 +01:00
|
|
|
, expat
|
2012-12-02 12:25:29 +01:00
|
|
|
, zlib, libpng, pixman, libxcb ? null, xcbutil ? null, mesa ? null
|
2012-10-19 14:10:17 +02:00
|
|
|
, gettext, libiconvOrEmpty
|
2005-10-12 16:00:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert postscriptSupport -> zlib != null;
|
|
|
|
assert pngSupport -> libpng != null;
|
2009-10-29 16:26:39 +01:00
|
|
|
assert xcbSupport -> libxcb != null && xcbutil != null;
|
2012-12-02 12:25:29 +01:00
|
|
|
assert glSupport -> mesa != null;
|
2005-10-12 16:00:20 +02:00
|
|
|
|
2009-01-24 22:32:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-02-10 16:33:15 +01:00
|
|
|
name = "cairo-1.12.14";
|
2012-10-16 18:00:41 +02:00
|
|
|
|
2005-10-12 16:00:20 +02:00
|
|
|
src = fetchurl {
|
2012-05-16 22:49:31 +02:00
|
|
|
url = "http://cairographics.org/releases/${name}.tar.xz";
|
2013-02-10 16:33:15 +01:00
|
|
|
sha256 = "04xcykglff58ygs0dkrmmnqljmpjwp2qgwcz8sijqkdpz7ix3l4n";
|
2005-10-12 16:00:20 +02:00
|
|
|
};
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2013-01-29 13:48:25 +01:00
|
|
|
buildInputs = with xlibs;
|
2013-03-17 11:28:28 +01:00
|
|
|
[ pkgconfig x11 fontconfig expat ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) libXrender
|
2011-09-20 08:22:14 +02:00
|
|
|
++ stdenv.lib.optionals xcbSupport [ libxcb xcbutil ]
|
2012-12-02 12:25:29 +01:00
|
|
|
++ stdenv.lib.optionals glSupport [ mesa ]
|
2011-09-26 14:07:24 +02:00
|
|
|
|
|
|
|
# On non-GNU systems we need GNU Gettext for libintl.
|
2012-10-19 14:10:17 +02:00
|
|
|
++ stdenv.lib.optional (!stdenv.isLinux) gettext
|
|
|
|
|
|
|
|
++ libiconvOrEmpty;
|
2008-10-14 14:08:07 +02:00
|
|
|
|
2008-03-07 16:43:43 +01:00
|
|
|
propagatedBuildInputs =
|
2012-01-14 19:04:28 +01:00
|
|
|
[ freetype pixman ] ++
|
|
|
|
stdenv.lib.optional gobjectSupport glib ++
|
2008-03-07 16:43:43 +01:00
|
|
|
stdenv.lib.optional postscriptSupport zlib ++
|
|
|
|
stdenv.lib.optional pngSupport libpng;
|
2012-10-16 18:00:41 +02:00
|
|
|
|
2009-10-29 16:26:39 +01:00
|
|
|
configureFlags =
|
2011-03-15 10:25:08 +01:00
|
|
|
[ "--enable-tee" ]
|
|
|
|
++ stdenv.lib.optional xcbSupport "--enable-xcb"
|
2012-12-02 12:25:29 +01:00
|
|
|
++ stdenv.lib.optional glSupport "--enable-gl"
|
2011-03-15 10:25:08 +01:00
|
|
|
++ stdenv.lib.optional pdfSupport "--enable-pdf";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2013-01-29 13:48:25 +01:00
|
|
|
preConfigure =
|
2012-10-18 10:53:05 +02:00
|
|
|
# On FreeBSD, `-ldl' doesn't exist.
|
2013-01-29 13:48:25 +01:00
|
|
|
(stdenv.lib.optionalString stdenv.isFreeBSD
|
2012-10-18 12:13:07 +02:00
|
|
|
'' for i in "util/"*"/Makefile.in" boilerplate/Makefile.in
|
|
|
|
do
|
|
|
|
cat "$i" | sed -es/-ldl//g > t
|
|
|
|
mv t "$i"
|
|
|
|
done
|
2012-10-18 10:53:05 +02:00
|
|
|
'');
|
2009-01-25 12:50:29 +01:00
|
|
|
|
2012-05-16 22:49:31 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-02-08 18:57:00 +01:00
|
|
|
# The default `--disable-gtk-doc' is ignored.
|
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2008-03-07 16:43:43 +01:00
|
|
|
meta = {
|
|
|
|
description = "A 2D graphics library with support for multiple output devices";
|
2009-01-24 22:32:25 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Cairo is a 2D graphics library with support for multiple output
|
|
|
|
devices. Currently supported output targets include the X
|
|
|
|
Window System, Quartz, Win32, image buffers, PostScript, PDF,
|
|
|
|
and SVG file output. Experimental backends include OpenGL
|
|
|
|
(through glitz), XCB, BeOS, OS/2, and DirectFB.
|
|
|
|
|
|
|
|
Cairo is designed to produce consistent output on all output
|
|
|
|
media while taking advantage of display hardware acceleration
|
|
|
|
when available (e.g., through the X Render Extension).
|
|
|
|
'';
|
|
|
|
|
2008-03-07 16:43:43 +01:00
|
|
|
homepage = http://cairographics.org/;
|
2009-01-24 22:32:25 +01:00
|
|
|
|
|
|
|
licenses = [ "LGPLv2+" "MPLv1" ];
|
2011-09-26 14:07:24 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-03-07 16:43:43 +01:00
|
|
|
};
|
2005-10-12 16:00:20 +02:00
|
|
|
}
|