* Don't need to set CAIRO_CFLAGS anymore.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13061
This commit is contained in:
Eelco Dolstra 2008-10-14 12:08:07 +00:00
parent 5bc2dc536d
commit 5b45cce6c1
2 changed files with 3 additions and 8 deletions

View File

@ -19,13 +19,13 @@ stdenv.mkDerivation {
buildInputs = [
pkgconfig x11 fontconfig freetype pixman
];
propagatedBuildInputs =
stdenv.lib.optional postscriptSupport zlib ++
stdenv.lib.optional pngSupport libpng;
configureFlags =
(if pdfSupport then ["--enable-pdf"] else []);
configureFlags = ["--disable-static"] ++
stdenv.lib.optional pdfSupport "--enable-pdf";
meta = {
description = "A 2D graphics library with support for multiple output devices";

View File

@ -12,11 +12,6 @@ stdenv.mkDerivation {
propagatedBuildInputs = [x11 glib cairo libpng];
# The configure script doesn't seem to pick up the Cairo cflags.
preConfigure = ''
CAIRO_CFLAGS=$(pkg-config --cflags cairo --debug)
'';
meta = {
description = "A library for laying out and rendering of text, with an emphasis on internationalization";
homepage = http://www.pango.org/;