From d7d58daff4b40405017b3a29147301c9bbff0769 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 28 Aug 2003 11:15:48 +0000 Subject: [PATCH] * Let gtk use lib{png, tiff, jpeg}. * Fix gtkspell. svn path=/nixpkgs/trunk/; revision=371 --- pkgs/gtk+/gtk+-build.sh | 9 +++++++-- pkgs/gtk+/gtk+.fix | 4 ++++ pkgs/gtkspell/gtkspell-build.sh | 3 +-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/pkgs/gtk+/gtk+-build.sh b/pkgs/gtk+/gtk+-build.sh index 7fdc0b0a1dd..997710525ab 100755 --- a/pkgs/gtk+/gtk+-build.sh +++ b/pkgs/gtk+/gtk+-build.sh @@ -1,12 +1,17 @@ #! /bin/sh -envpkgs="$glib $atk $pango" +envpkgs="$glib $atk $pango $tiff $jpeg $png" . $stdenv/setup || exit 1 export PATH=$pkgconfig/bin:$perl/bin:$PATH +# !!! abstraction problem: libtiff optionally needs libjpeg's headers. +# idem for libpng depending on zlib +export NIX_CFLAGS_COMPILE="-I$tiff/include -I$jpeg/include -I$png/include -I$zlib/include $NIX_CFLAGS_COMPILE" + tar xvfj $src || exit 1 cd gtk+-* || exit 1 -./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1 +./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib \ + --with-libtiff=$tiff || exit 1 make || exit 1 make install || exit 1 diff --git a/pkgs/gtk+/gtk+.fix b/pkgs/gtk+/gtk+.fix index 5171c040a10..1384aaf389e 100644 --- a/pkgs/gtk+/gtk+.fix +++ b/pkgs/gtk+/gtk+.fix @@ -14,5 +14,9 @@ Package( , ("atk", IncludeFix("atk/atk.fix")) , ("pango", IncludeFix("pango/pango.fix")) , ("perl", IncludeFix("perl/perl.fix")) + , ("tiff", IncludeFix("libtiff/libtiff.fix")) + , ("jpeg", IncludeFix("libjpeg/libjpeg.fix")) + , ("png", IncludeFix("libpng/libpng.fix")) + , ("zlib", IncludeFix("zlib/zlib.fix")) ] ) diff --git a/pkgs/gtkspell/gtkspell-build.sh b/pkgs/gtkspell/gtkspell-build.sh index 52bf7db5204..514d51c9b02 100755 --- a/pkgs/gtkspell/gtkspell-build.sh +++ b/pkgs/gtkspell/gtkspell-build.sh @@ -3,8 +3,7 @@ envpkgs="$gtk $pspell" . $stdenv/setup || exit 1 export PATH=$pkgconfig/bin:$PATH - -export C_INCLUDE_PATH=$pspell/include:$C_INCLUDE_PATH +export NIX_CFLAGS_COMPILE="-I$pspell/include $NIX_CFLAGS_COMPILE" tar xvfz $src || exit 1 cd gtkspell-* || exit 1