2005-10-12 16:00:20 +02:00
|
|
|
{ postscriptSupport ? true
|
|
|
|
, pdfSupport ? true
|
|
|
|
, pngSupport ? true
|
2009-10-29 16:26:39 +01:00
|
|
|
, xcbSupport ? 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
|
2009-10-29 16:26:39 +01:00
|
|
|
, zlib, libpng, pixman, libxcb ? null, xcbutil ? null
|
2011-09-26 14:07:24 +02:00
|
|
|
, gettext
|
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;
|
2005-10-12 16:00:20 +02:00
|
|
|
|
2009-01-24 22:32:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-05-16 22:49:31 +02:00
|
|
|
name = "cairo-1.12.2";
|
2008-03-07 16:43:43 +01: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";
|
|
|
|
sha1 = "bc2ee50690575f16dab33af42a2e6cdc6451e3f9";
|
2005-10-12 16:00:20 +02:00
|
|
|
};
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2009-10-29 16:26:39 +01:00
|
|
|
buildInputs =
|
2012-01-14 19:04:28 +01:00
|
|
|
[ pkgconfig x11 fontconfig xlibs.libXrender ]
|
2011-09-20 08:22:14 +02:00
|
|
|
++ stdenv.lib.optionals xcbSupport [ libxcb xcbutil ]
|
2011-09-26 14:07:24 +02:00
|
|
|
|
|
|
|
# On non-GNU systems we need GNU Gettext for libintl.
|
|
|
|
++ stdenv.lib.optional (!stdenv.isLinux) gettext;
|
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;
|
|
|
|
|
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"
|
|
|
|
++ stdenv.lib.optional pdfSupport "--enable-pdf";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2009-01-25 12:50:29 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# Work around broken `Requires.private' that prevents Freetype
|
|
|
|
# `-I' flags to be propagated.
|
|
|
|
sed -i "src/cairo.pc.in" \
|
|
|
|
-es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype}/include/freetype2 -I${freetype}/include|g'
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|