2016-08-19 12:27:49 +02:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, libiconv, libintlOrEmpty
|
2015-09-15 10:32:57 +02:00
|
|
|
, expat, zlib, libpng, pixman, fontconfig, freetype, xorg
|
2011-09-20 08:22:14 +02:00
|
|
|
, gobjectSupport ? true, glib
|
2013-05-30 14:43:26 +02:00
|
|
|
, xcbSupport ? true # no longer experimental since 1.12
|
|
|
|
, glSupport ? true, mesa_noglu ? null # mesa is no longer a big dependency
|
2013-06-13 22:11:34 +02:00
|
|
|
, pdfSupport ? true
|
2016-03-29 18:04:46 +02:00
|
|
|
, darwin
|
2005-10-12 16:00:20 +02:00
|
|
|
}:
|
|
|
|
|
2013-05-30 14:43:26 +02:00
|
|
|
assert glSupport -> mesa_noglu != null;
|
|
|
|
|
|
|
|
with { inherit (stdenv.lib) optional optionals; };
|
2005-10-12 16:00:20 +02:00
|
|
|
|
2009-01-24 22:32:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-29 18:04:46 +02:00
|
|
|
name = "cairo-1.14.6";
|
2012-08-27 04:53:19 +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";
|
2016-03-29 18:04:46 +02:00
|
|
|
sha256 = "0lmjlzmghmr27y615px9hkm552x7ap6pmq9mfbzr6smp8y2b6g31";
|
2005-10-12 16:00:20 +02:00
|
|
|
};
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2016-08-19 12:27:49 +02:00
|
|
|
infinality = fetchFromGitHub {
|
|
|
|
owner = "bohoomil";
|
|
|
|
repo = "fontconfig-ultimate";
|
|
|
|
rev = "730f5e77580677e86522c1f2119aa78803741759";
|
|
|
|
sha256 = "1hbrdpm6xcczs2c2iid7by8h7dsd0jcf7an88s150njyqnjzxjg7";
|
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
patches="$patches $(echo $infinality/*_cairo-iu/*.patch)"
|
|
|
|
'';
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2015-10-28 19:38:17 +01:00
|
|
|
outputBin = "dev"; # very small
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2016-03-29 18:04:46 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
libiconv
|
|
|
|
] ++ libintlOrEmpty ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
CoreGraphics
|
|
|
|
ApplicationServices
|
|
|
|
Carbon
|
|
|
|
]);
|
2008-10-14 14:08:07 +02:00
|
|
|
|
2008-03-07 16:43:43 +01:00
|
|
|
propagatedBuildInputs =
|
2016-04-19 18:05:40 +02:00
|
|
|
with xorg; [ libXext fontconfig expat freetype pixman zlib libpng libXrender ]
|
2013-05-30 14:43:26 +02:00
|
|
|
++ optionals xcbSupport [ libxcb xcbutil ]
|
|
|
|
++ optional gobjectSupport glib
|
2015-10-06 19:57:45 +02:00
|
|
|
++ optional glSupport mesa_noglu
|
|
|
|
; # TODO: maybe liblzo but what would it be for here?
|
2013-05-30 14:43:26 +02:00
|
|
|
|
2016-03-29 18:04:46 +02:00
|
|
|
configureFlags = if stdenv.isDarwin then [
|
|
|
|
"--disable-dependency-tracking"
|
|
|
|
"--enable-quartz"
|
|
|
|
"--enable-quartz-font"
|
|
|
|
"--enable-quartz-image"
|
|
|
|
"--enable-ft"
|
|
|
|
] else ([ "--enable-tee" ]
|
2013-05-30 14:43:26 +02:00
|
|
|
++ optional xcbSupport "--enable-xcb"
|
|
|
|
++ optional glSupport "--enable-gl"
|
2013-06-13 15:12:43 +02:00
|
|
|
++ optional pdfSupport "--enable-pdf"
|
2016-03-29 18:04:46 +02:00
|
|
|
);
|
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.
|
2015-10-06 19:57:45 +02: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
|
2015-10-06 19:57:45 +02:00
|
|
|
''
|
|
|
|
+
|
2013-06-13 15:12:43 +02:00
|
|
|
''
|
|
|
|
# Work around broken `Requires.private' that prevents Freetype
|
|
|
|
# `-I' flags to be propagated.
|
|
|
|
sed -i "src/cairo.pc.in" \
|
2015-10-28 19:38:17 +01:00
|
|
|
-es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype.dev}/include/freetype2 -I${freetype.dev}/include|g'
|
2013-06-13 15:12:43 +02:00
|
|
|
'';
|
2009-01-25 12:50:29 +01:00
|
|
|
|
2012-05-16 22:49:31 +02:00
|
|
|
enableParallelBuilding = true;
|
2009-01-25 12:50:29 +01:00
|
|
|
|
2013-09-11 10:51:46 +02:00
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin glib.flattenInclude;
|
2011-02-08 18:57:00 +01:00
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 16:43:43 +01:00
|
|
|
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
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
license = with licenses; [ lgpl2Plus mpl10 ];
|
2011-09-26 14:07:24 +02:00
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
platforms = platforms.all;
|
2008-03-07 16:43:43 +01:00
|
|
|
};
|
2005-10-12 16:00:20 +02:00
|
|
|
}
|