wok-next annotate tiff/receipt @ rev 8134
Automated merge with http://repos.slitaz.org/wok
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Jan 25 00:50:00 2011 +0100 (2011-01-25) |
parents | 00d23a2237d8 |
children | 940b5937e496 |
rev | line source |
---|---|
pankso@23 | 1 # SliTaz package receipt. |
pankso@23 | 2 |
pankso@23 | 3 PACKAGE="tiff" |
pascal@6414 | 4 VERSION="3.9.4" |
pankso@23 | 5 CATEGORY="x-window" |
pankso@23 | 6 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)." |
pankso@23 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@23 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@5007 | 9 DEPENDS="jpeg zlib gcc-lib-base" |
pankso@23 | 10 WEB_SITE="http://www.remotesensing.org/libtiff/" |
pankso@23 | 11 WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL" |
pankso@23 | 12 |
pankso@23 | 13 # Rules to configure and make the package. |
pankso@23 | 14 compile_rules() |
pankso@23 | 15 { |
pankso@23 | 16 cd $src |
slaxemulator@6424 | 17 |
slaxemulator@6424 | 18 # Added patch to fix CVE-2009-2285 |
slaxemulator@6424 | 19 # Bufffer underflow in the LZWDecodeCompat function in libtiff 3.8.2 |
slaxemulator@6424 | 20 # allows context-dependent attackers to cause a denial of service |
slaxemulator@6424 | 21 # (crash) via a crafted TIFF imag. |
slaxemulator@6424 | 22 |
slaxemulator@6424 | 23 patch -p1 -i ../stuff/libtiff-CVE-2009-2285.patch |
pankso@23 | 24 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2407 | 25 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2407 | 26 make && |
pankso@23 | 27 make DESTDIR=$PWD/_pkg install |
pankso@23 | 28 } |
pankso@23 | 29 |
pankso@23 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@23 | 31 genpkg_rules() |
pankso@23 | 32 { |
pankso@23 | 33 mkdir -p $fs/usr/lib |
pankso@23 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@23 | 35 strip --strip-unneeded $fs/usr/lib/*.so* |
pankso@23 | 36 } |