* libjpeg fixes on Mac OS X.

svn path=/nixpkgs/trunk/; revision=5711
This commit is contained in:
Eelco Dolstra
2006-07-14 15:59:30 +00:00
parent 1410af25b7
commit 10c99c750e
3 changed files with 33 additions and 3 deletions
+16 -1
View File
@@ -2,6 +2,15 @@ source $stdenv/setup
configureFlags="--enable-shared"
preConfigure=preConfigure
preConfigure() {
# Workarounds for the ancient libtool shipped by libjpeg.
ln -s $libtool/bin/libtool .
cp $libtool/share/libtool/config.guess .
cp $libtool/share/libtool/config.sub .
}
preInstall=preInstall
preInstall() {
mkdir $out
mkdir $out/bin
@@ -10,6 +19,12 @@ preInstall() {
mkdir $out/man
mkdir $out/man/man1
}
preInstall=preInstall
patchPhase=patchPhase
patchPhase() {
for i in $patches; do
patch < $i
done
}
genericBuild