diff options
Diffstat (limited to 'extra/gd')
-rw-r--r-- | extra/gd/ChangeLog | 11 | ||||
-rw-r--r-- | extra/gd/PKGBUILD | 26 | ||||
-rw-r--r-- | extra/gd/libpng14.patch | 12 |
3 files changed, 49 insertions, 0 deletions
diff --git a/extra/gd/ChangeLog b/extra/gd/ChangeLog new file mode 100644 index 000000000..813a49e46 --- /dev/null +++ b/extra/gd/ChangeLog @@ -0,0 +1,11 @@ +2010-01-17 Ionut Biru <ionut@archlinux.ro> + + * gd 2.0.36RC1-2 + * libpng 1.4.0/libjpeg 8 rebuild + +2009-10-30 Eric Belanger <eric@archlinux.org> + + * gd 2.0.36RC1-1 + * Upstream update + * Added perl depends + * Added ChangeLog diff --git a/extra/gd/PKGBUILD b/extra/gd/PKGBUILD new file mode 100644 index 000000000..d00cc4b2c --- /dev/null +++ b/extra/gd/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 64438 2010-01-20 12:11:26Z ibiru $ +# Maintainer: Eric Belanger <eric@archlinux.org> + +pkgname=gd +pkgver=2.0.36RC1 +pkgrel=3 +pkgdesc="Library for the dynamic creation of images by programmers" +arch=('i686' 'x86_64') +url="http://www.libgd.org/" +license=('custom') +depends=('perl' 'libpng>=1.4.0' 'fontconfig' 'libjpeg>=8') +options=('!libtool') +source=(http://www.libgd.org/releases/${pkgname}-${pkgver}.tar.bz2 libpng14.patch) +md5sums=('e876979ca3130623a4e7866d9579171a' + '7921556f4960e8d66cf4fb67ea7101b5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + patch -Np1 -i ${srcdir}/libpng14.patch || return 1 + + ./configure --prefix=/usr --without-xpm || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" || return 1 +} diff --git a/extra/gd/libpng14.patch b/extra/gd/libpng14.patch new file mode 100644 index 000000000..19a3fda91 --- /dev/null +++ b/extra/gd/libpng14.patch @@ -0,0 +1,12 @@ +diff -Nur gd-2.0.36RC1.orig/gd_png.c gd-2.0.36RC1/gd_png.c +--- gd-2.0.36RC1.orig/gd_png.c 2007-11-27 10:30:34.000000000 +0200 ++++ gd-2.0.36RC1/gd_png.c 2010-01-17 17:14:11.000000000 +0200 +@@ -151,7 +151,7 @@ + return NULL; + } + +- if (!png_check_sig (sig, 8)) { /* bad signature */ ++ if (png_sig_cmp (sig, 0, 8)) { /* bad signature */ + return NULL; /* bad signature */ + } + |