* Shocking: a new version of libjpeg!

svn path=/nixpkgs/branches/xorg-7.5/; revision=18024
This commit is contained in:
Eelco Dolstra 2009-10-29 14:13:07 +00:00
parent 35593f5cd5
commit f210a41f84
2 changed files with 10 additions and 46 deletions

View File

@ -1,25 +0,0 @@
source $stdenv/setup
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() {
mkdir $out
mkdir $out/bin
mkdir $out/lib
mkdir $out/include
mkdir $out/man
mkdir $out/man/man1
}
patchPhase() {
for i in $patches; do
patch < $i
done
}
genericBuild

View File

@ -1,29 +1,18 @@
{stdenv, fetchurl, libtool, static ? false, ...}: { stdenv, fetchurl, libtool, static ? false }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libjpeg-6b"; name = "libjpeg-7";
builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://www.ijg.org/files/jpegsrc.v6b.tar.gz; url = http://www.ijg.org/files/jpegsrc.v7.tar.gz;
md5 = "dbd5f3b47ed13132f04c685d608a7547"; sha256 = "1gvy6f83pskxrxwnxqah3g9mhnlgi6aph39b99609gn50ri8ddsh";
}; };
inherit libtool;
configureFlags = "--enable-shared ${if static then " --enable-static" else ""}"; configureFlags = "--enable-shared ${if static then " --enable-static" else ""}";
# Required for building of dynamic libraries on Darwin. meta = {
patches = [ homepage = http://www.ijg.org/;
(fetchurl { description = "A library that implements the JPEG image file format";
url = http://svn.macports.org/repository/macports/trunk/dports/graphics/jpeg/files/patch-ltconfig; license = "free";
md5 = "e6725fa4a09aa1de4ca75343fd0f61d5"; };
})
(fetchurl {
url = http://svn.macports.org/repository/macports/trunk/dports/graphics/jpeg/files/patch-ltmain.sh;
#md5 = "489986ad8e7a93aef036766b25f321d5";
md5 = "092a12aeb0c386dd7dae059109d950ba";
})
];
} }