diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2008-10-23 21:53:15 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2008-10-23 21:54:22 +1100 |
commit | affe0f2fe8af34cdb2612c6e76b0a668b78b94a2 (patch) | |
tree | 6e4931c0153170e2c9066b98495e0747c418bcc9 /imlib/Pkgfile | |
parent | c84cc324bb2b2297af07564a476634782c9fc89c (diff) | |
download | contrib-affe0f2fe8af34cdb2612c6e76b0a668b78b94a2.tar.gz contrib-affe0f2fe8af34cdb2612c6e76b0a668b78b94a2.tar.xz |
imlib: various fixes
Diffstat (limited to 'imlib/Pkgfile')
-rw-r--r-- | imlib/Pkgfile | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/imlib/Pkgfile b/imlib/Pkgfile index 91e4b7e1f..31e72912d 100644 --- a/imlib/Pkgfile +++ b/imlib/Pkgfile @@ -1,4 +1,4 @@ -# Description: An image loading and rendering library for X11R6. +# Description: An image loading and rendering library. # URL: http://ftp.acc.umu.se/pub/GNOME/sources/imlib/1.9/ # Maintainer: Danny Rawlins, monster dot romster at gmail dot com # Packager: Daniel Mueller, daniel at danm dot de @@ -6,19 +6,31 @@ name=imlib version=1.9.15 -release=1 +release=2 source=(http://ftp.gnome.org/pub/GNOME/sources/imlib/${version%.*}/imlib-$version.tar.bz2 - imlib-$version.patch) + imlib-1.9.15-configure.patch + imlib-1.9.15-security.patch + imlib-1.9.15-bpp16-CVE-2007-3568.patch + imlib-1.9.15-fix-rendering.patch + imlib-1.9.15-asneeded.patch + gtk-1-for-imlib.m4.bz2) build() { cd imlib-$version - # Security patch - patch -p 1 -i $SRC/imlib-$version.patch + patch -p 1 -i $SRC/imlib-1.9.15-configure.patch + patch -p 1 -i $SRC/imlib-1.9.15-security.patch + patch -p 1 -i $SRC/imlib-1.9.15-bpp16-CVE-2007-3568.patch + patch -p 1 -i $SRC/imlib-1.9.15-fix-rendering.patch + patch -p 1 -i $SRC/imlib-1.9.15-asneeded.patch + + mkdir m4 + bzcat $SRC/gtk-1-for-imlib.m4.bz2 > m4/gtk-1-for-imlib.m4 + autoreconf -i ./configure \ --prefix=/usr \ - --disable-modules + --mandir=/usr/man make make DESTDIR=$PKG install |