* Converted some more packages.

svn path=/nixpkgs/trunk/; revision=152
This commit is contained in:
Eelco Dolstra
2003-07-12 13:04:41 +00:00
parent ec3b5134c1
commit 0f0a347992
20 changed files with 237 additions and 2 deletions

12
pkgs/pango/pango-build.sh Executable file
View File

@@ -0,0 +1,12 @@
#! /bin/sh
export PATH=$pkgconfig/bin:/bin:/usr/bin
envpkgs="$glib $Xft"
. $setenv
tar xvfj $src || exit 1
cd pango-* || exit 1
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
make || exit 1
make install || exit 1
echo $envpkgs > $out/envpkgs || exit 1

16
pkgs/pango/pango.fix Normal file
View File

@@ -0,0 +1,16 @@
Package(
[ ("name", "pango-1.2.3")
, ("build", Relative("pango/pango-build.sh"))
, ("setenv", Relative("helpers/set-env.sh"))
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.gtk.org/pub/gtk/v2.2/pango-1.2.3.tar.bz2")
, ("md5", "12247592ea582907cfd2de81aeb32caf")
]))
, ("pkgconfig", IncludeFix("pkgconfig/pkgconfig.fix"))
, ("glib", IncludeFix("glib/glib.fix"))
, ("Xft", IncludeFix("Xft/Xft.fix"))
]
)