summaryrefslogtreecommitdiff
path: root/extra/giflib
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
commitea84a7ef4c3c637a7504361c6ac42e8ba93a6179 (patch)
tree0bee5e198a06cfeff7de0396c4739ae2569f7067 /extra/giflib
parente55fda657497bd8743c0a57d917316afe70950f8 (diff)
parent5b9e0d821dd428792bd51ed03af2b800924ce69d (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/start-stop-daemon/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/giflib/PKGBUILD extra/gvfs/PKGBUILD extra/latex2rtf/PKGBUILD extra/libgpod/PKGBUILD extra/libimobiledevice/PKGBUILD extra/libvpx/PKGBUILD extra/libwpg/PKGBUILD extra/libxml2/PKGBUILD extra/pixman/PKGBUILD extra/thunar-archive-plugin/PKGBUILD
Diffstat (limited to 'extra/giflib')
-rw-r--r--extra/giflib/PKGBUILD22
1 files changed, 13 insertions, 9 deletions
diff --git a/extra/giflib/PKGBUILD b/extra/giflib/PKGBUILD
index 3e3406b74..1f1778b19 100644
--- a/extra/giflib/PKGBUILD
+++ b/extra/giflib/PKGBUILD
@@ -1,29 +1,33 @@
-# $Id: PKGBUILD 151260 2012-02-25 10:17:00Z allan $
+# $Id: PKGBUILD 185106 2013-05-11 07:24:47Z bpiotrowski $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Baptiste Daroussin <baptiste.daroussin@gmail.com>
# Contributor: Grigorios Bouzakis <grbzks[at]gmail[dot]com>
# Contributor: mightyjaym <jm.ambrosino@free.fr>
pkgname=giflib
-pkgver=4.1.6
-pkgrel=5.2
+pkgver=4.2.1
+pkgrel=1
pkgdesc="A library for reading and writing gif images"
url="http://sourceforge.net/projects/giflib/"
arch=('i686' 'x86_64' 'mips64el')
license=('MIT')
depends=('libx11')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
provides=("libungif=${pkgver}")
conflicts=('libungif')
replaces=('libungif')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('7125644155ae6ad33dbc9fc15a14735f')
+md5sums=('bbd3324af24156d5d7e66ab1cee8508d')
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ sed -i -e '/AC_PATH_XTRA/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
+ autoreconf -fi
+}
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- sed -i -e '/AC_PATH_XTRA/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
- libtoolize -f
- autoreconf
+ cd ${pkgname}-${pkgver}
./configure --prefix=/usr --disable-static
make
@@ -33,7 +37,7 @@ build() {
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"