[arch-commits] Commit in giflib/repos (4 files)

2020-05-19 Thread Felix Yan via arch-commits
Date: Tuesday, May 19, 2020 @ 08:26:36
  Author: felixonmars
Revision: 386305

archrelease: copy trunk to staging-x86_64

Added:
  giflib/repos/staging-x86_64/
  giflib/repos/staging-x86_64/PKGBUILD
(from rev 386303, giflib/trunk/PKGBUILD)
  
giflib/repos/staging-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch
(from rev 386303, 
giflib/trunk/giflib-5.1.9-fix-missing-quantize-API-symbols.patch)
  giflib/repos/staging-x86_64/giflib-5.1.9-make-flags.patch
(from rev 386303, giflib/trunk/giflib-5.1.9-make-flags.patch)

-+
 PKGBUILD|   46 ++
 giflib-5.1.9-fix-missing-quantize-API-symbols.patch |   32 
 giflib-5.1.9-make-flags.patch   |   43 
 3 files changed, 121 insertions(+)

Copied: giflib/repos/staging-x86_64/PKGBUILD (from rev 386303, 
giflib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-19 08:26:36 UTC (rev 386305)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.2.1
+pkgrel=2
+pkgdesc='Library for reading and writing gif images'
+url='http://giflib.sourceforge.net/'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc')
+provides=('libgif.so')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(https://downloads.sourceforge.net/project/giflib/${pkgname}-${pkgver}.tar.gz
+giflib-5.1.9-fix-missing-quantize-API-symbols.patch
+giflib-5.1.9-make-flags.patch)
+sha512sums=('4550e53c21cb1191a4581e363fc9d0610da53f7898ca8320f0d3ef6711e76bdda2609c2df15dc94c45e28bff8de441f1227ec2da7ea827cb3c0405af4faa4736'
+
'5de1e8724f5221fa3637b4e6a482f650f7608673e2c9200233290018ec8a0bf1beea049b3979b5f57dbf2b2a5fda409324e636e9af10582fd01c71d92d4de3b3'
+
'b9afd436c31b971087485c7b476f796817e6ee4f237ef8a0e61e47f8ac59fbe5e673d7194895fcc9aafbb79f133469d27c2f69041ae0cccd9acb78667c0222dd')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 < ../giflib-5.1.9-fix-missing-quantize-API-symbols.patch
+  patch -Np1 < ../giflib-5.1.9-make-flags.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
giflib/repos/staging-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch 
(from rev 386303, 
giflib/trunk/giflib-5.1.9-fix-missing-quantize-API-symbols.patch)
===
--- staging-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch  
(rev 0)
+++ staging-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch  
2020-05-19 08:26:36 UTC (rev 386305)
@@ -0,0 +1,32 @@
+From ff8d9a59e79b79657e64430730c35835a84db619 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Tue, 2 Apr 2019 11:46:18 +0200
+Subject: [PATCH] fix missing quantize API symbols
+
+GifQuantizeBuffer is required by many libs and applications
+like mplayer, libgdiplus (mono) and others.
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index e4ded69..17d0a5c 100644
+--- a/Makefile
 b/Makefile
+@@ -29,11 +29,11 @@ LIBPOINT=0
+ LIBVER=$(LIBMAJOR).$(LIBMINOR).$(LIBPOINT)
+ 
+ SOURCES = dgif_lib.c egif_lib.c gifalloc.c gif_err.c gif_font.c \
+-  gif_hash.c openbsd-reallocarray.c
++  gif_hash.c openbsd-reallocarray.c quantize.c
+ HEADERS = gif_hash.h  gif_lib.h  gif_lib_private.h
+ OBJECTS = $(SOURCES:.c=.o)
+ 
+-USOURCES = qprintf.c quantize.c getarg.c 
++USOURCES = qprintf.c getarg.c
+ UHEADERS = getarg.h
+ UOBJECTS = $(USOURCES:.c=.o)
+ 
+-- 
+2.21.0
+

Copied: giflib/repos/staging-x86_64/giflib-5.1.9-make-flags.patch (from rev 
386303, giflib/trunk/giflib-5.1.9-make-flags.patch)
===
--- staging-x86_64/giflib-5.1.9-make-flags.patch
(rev 0)
+++ staging-x86_64/giflib-5.1.9-make-flags.patch2020-05-19 08:26:36 UTC 
(rev 386305)
@@ -0,0 +1,43 @@
+From 788a52c399f4731ac1fb27a49db48626f3e140e1 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Tue, 2 Apr 2019 14:53:28 +0200
+Subject: [PATCH] respect existence of distro CFLAGS and CPPFLAGS
+
+- append CFLAGS instead of set to honor default distro CFLAGS
+- add CPPFLAGS that are defined by distros
+---
+ Makefile | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index e4ded69..7fef84a 100644
+--- a/Makefile
 b/Makefile
+@@ -8,7 +8,7 @@
+ #
+ OFLAGS = -

[arch-commits] Commit in giflib/repos (4 files)

2019-07-19 Thread Antonio Rojas via arch-commits
Date: Friday, July 19, 2019 @ 21:54:57
  Author: arojas
Revision: 358398

archrelease: copy trunk to testing-x86_64

Added:
  giflib/repos/testing-x86_64/
  giflib/repos/testing-x86_64/PKGBUILD
(from rev 358397, giflib/trunk/PKGBUILD)
  
giflib/repos/testing-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch
(from rev 358397, 
giflib/trunk/giflib-5.1.9-fix-missing-quantize-API-symbols.patch)
  giflib/repos/testing-x86_64/giflib-5.1.9-make-flags.patch
(from rev 358397, giflib/trunk/giflib-5.1.9-make-flags.patch)

-+
 PKGBUILD|   46 ++
 giflib-5.1.9-fix-missing-quantize-API-symbols.patch |   32 
 giflib-5.1.9-make-flags.patch   |   43 
 3 files changed, 121 insertions(+)

Copied: giflib/repos/testing-x86_64/PKGBUILD (from rev 358397, 
giflib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-07-19 21:54:57 UTC (rev 358398)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.2.1
+pkgrel=1
+pkgdesc='Library for reading and writing gif images'
+url='http://giflib.sourceforge.net/'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc')
+provides=('libgif.so')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(https://downloads.sourceforge.net/project/giflib/${pkgname}-${pkgver}.tar.gz
+giflib-5.1.9-fix-missing-quantize-API-symbols.patch
+giflib-5.1.9-make-flags.patch)
+sha512sums=('4550e53c21cb1191a4581e363fc9d0610da53f7898ca8320f0d3ef6711e76bdda2609c2df15dc94c45e28bff8de441f1227ec2da7ea827cb3c0405af4faa4736'
+
'5de1e8724f5221fa3637b4e6a482f650f7608673e2c9200233290018ec8a0bf1beea049b3979b5f57dbf2b2a5fda409324e636e9af10582fd01c71d92d4de3b3'
+
'b9afd436c31b971087485c7b476f796817e6ee4f237ef8a0e61e47f8ac59fbe5e673d7194895fcc9aafbb79f133469d27c2f69041ae0cccd9acb78667c0222dd')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 < ../giflib-5.1.9-fix-missing-quantize-API-symbols.patch
+  patch -Np1 < ../giflib-5.1.9-make-flags.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
giflib/repos/testing-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch 
(from rev 358397, 
giflib/trunk/giflib-5.1.9-fix-missing-quantize-API-symbols.patch)
===
--- testing-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch  
(rev 0)
+++ testing-x86_64/giflib-5.1.9-fix-missing-quantize-API-symbols.patch  
2019-07-19 21:54:57 UTC (rev 358398)
@@ -0,0 +1,32 @@
+From ff8d9a59e79b79657e64430730c35835a84db619 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Tue, 2 Apr 2019 11:46:18 +0200
+Subject: [PATCH] fix missing quantize API symbols
+
+GifQuantizeBuffer is required by many libs and applications
+like mplayer, libgdiplus (mono) and others.
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index e4ded69..17d0a5c 100644
+--- a/Makefile
 b/Makefile
+@@ -29,11 +29,11 @@ LIBPOINT=0
+ LIBVER=$(LIBMAJOR).$(LIBMINOR).$(LIBPOINT)
+ 
+ SOURCES = dgif_lib.c egif_lib.c gifalloc.c gif_err.c gif_font.c \
+-  gif_hash.c openbsd-reallocarray.c
++  gif_hash.c openbsd-reallocarray.c quantize.c
+ HEADERS = gif_hash.h  gif_lib.h  gif_lib_private.h
+ OBJECTS = $(SOURCES:.c=.o)
+ 
+-USOURCES = qprintf.c quantize.c getarg.c 
++USOURCES = qprintf.c getarg.c
+ UHEADERS = getarg.h
+ UOBJECTS = $(USOURCES:.c=.o)
+ 
+-- 
+2.21.0
+

Copied: giflib/repos/testing-x86_64/giflib-5.1.9-make-flags.patch (from rev 
358397, giflib/trunk/giflib-5.1.9-make-flags.patch)
===
--- testing-x86_64/giflib-5.1.9-make-flags.patch
(rev 0)
+++ testing-x86_64/giflib-5.1.9-make-flags.patch2019-07-19 21:54:57 UTC 
(rev 358398)
@@ -0,0 +1,43 @@
+From 788a52c399f4731ac1fb27a49db48626f3e140e1 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Tue, 2 Apr 2019 14:53:28 +0200
+Subject: [PATCH] respect existence of distro CFLAGS and CPPFLAGS
+
+- append CFLAGS instead of set to honor default distro CFLAGS
+- add CPPFLAGS that are defined by distros
+---
+ Makefile | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index e4ded69..7fef84a 100644
+--- a/Makefile
 b/Makefile
+@@ -8,7 +8,7 @@
+ #
+ OFLAGS = -O0 -g

[arch-commits] Commit in giflib/repos (4 files)

2016-05-20 Thread Jan de Groot
Date: Friday, May 20, 2016 @ 14:10:58
  Author: jgc
Revision: 268350

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  giflib/repos/extra-i686/PKGBUILD
(from rev 268349, giflib/trunk/PKGBUILD)
  giflib/repos/extra-x86_64/PKGBUILD
(from rev 268349, giflib/trunk/PKGBUILD)
Deleted:
  giflib/repos/extra-i686/PKGBUILD
  giflib/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   30 
 extra-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-20 12:10:49 UTC (rev 268349)
+++ extra-i686/PKGBUILD 2016-05-20 12:10:58 UTC (rev 268350)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.2
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('323a9f11ab56c8a2d1715376410ce376')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: giflib/repos/extra-i686/PKGBUILD (from rev 268349, 
giflib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-20 12:10:58 UTC (rev 268350)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.4
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('2c171ced93c0e83bb09e6ccad8e3ba2b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-20 12:10:49 UTC (rev 268349)
+++ extra-x86_64/PKGBUILD   2016-05-20 12:10:58 UTC (rev 268350)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.2
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('323a9f11ab56c8a2d1715376410ce376')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: giflib/repos/extra-x86_64/PKGBUILD (from rev 268349, 
giflib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-20 12:10:58 UTC (rev 268350)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.4
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('2c171ced93c0e83bb09e6ccad8e3ba2b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


[arch-commits] Commit in giflib/repos (4 files)

2016-02-04 Thread Jan de Groot
Date: Thursday, February 4, 2016 @ 16:04:09
  Author: jgc
Revision: 258873

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  giflib/repos/extra-i686/PKGBUILD
(from rev 258872, giflib/trunk/PKGBUILD)
  giflib/repos/extra-x86_64/PKGBUILD
(from rev 258872, giflib/trunk/PKGBUILD)
Deleted:
  giflib/repos/extra-i686/PKGBUILD
  giflib/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   30 
 extra-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-04 15:04:00 UTC (rev 258872)
+++ extra-i686/PKGBUILD 2016-02-04 15:04:09 UTC (rev 258873)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.1
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('1c39333192712788c6568c78a949f13e')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: giflib/repos/extra-i686/PKGBUILD (from rev 258872, 
giflib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-04 15:04:09 UTC (rev 258873)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.2
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('323a9f11ab56c8a2d1715376410ce376')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-04 15:04:00 UTC (rev 258872)
+++ extra-x86_64/PKGBUILD   2016-02-04 15:04:09 UTC (rev 258873)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.1
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('1c39333192712788c6568c78a949f13e')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: giflib/repos/extra-x86_64/PKGBUILD (from rev 258872, 
giflib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-02-04 15:04:09 UTC (rev 258873)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.2
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('323a9f11ab56c8a2d1715376410ce376')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


[arch-commits] Commit in giflib/repos (4 files)

2015-02-20 Thread Jan de Groot
Date: Friday, February 20, 2015 @ 10:30:46
  Author: jgc
Revision: 231696

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  giflib/repos/extra-i686/PKGBUILD
(from rev 231695, giflib/trunk/PKGBUILD)
  giflib/repos/extra-x86_64/PKGBUILD
(from rev 231695, giflib/trunk/PKGBUILD)
Deleted:
  giflib/repos/extra-i686/PKGBUILD
  giflib/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   31 
 extra-x86_64/PKGBUILD |   31 
 3 files changed, 60 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-20 09:30:34 UTC (rev 231695)
+++ extra-i686/PKGBUILD 2015-02-20 09:30:46 UTC (rev 231696)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.0
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('603838feeed62e9eaa90415742adddf9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-md5sums=('c7e9f1c10b755ab955156d4c1ac7fc5d')

Copied: giflib/repos/extra-i686/PKGBUILD (from rev 231695, 
giflib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-20 09:30:46 UTC (rev 231696)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.1
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('1c39333192712788c6568c78a949f13e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-20 09:30:34 UTC (rev 231695)
+++ extra-x86_64/PKGBUILD   2015-02-20 09:30:46 UTC (rev 231696)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=5.1.0
-pkgrel=1
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('603838feeed62e9eaa90415742adddf9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-md5sums=('c7e9f1c10b755ab955156d4c1ac7fc5d')

Copied: giflib/repos/extra-x86_64/PKGBUILD (from rev 231695, 
giflib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-02-20 09:30:46 UTC (rev 231696)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.1
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('1c39333192712788c6568c78a949f13e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


[arch-commits] Commit in giflib/repos (4 files)

2014-05-27 Thread Jan de Groot
Date: Tuesday, May 27, 2014 @ 11:23:51
  Author: jgc
Revision: 213645

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  giflib/repos/staging-i686/
  giflib/repos/staging-i686/PKGBUILD
(from rev 213644, giflib/trunk/PKGBUILD)
  giflib/repos/staging-x86_64/
  giflib/repos/staging-x86_64/PKGBUILD
(from rev 213644, giflib/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   31 +++
 staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: giflib/repos/staging-i686/PKGBUILD (from rev 213644, 
giflib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-05-27 09:23:51 UTC (rev 213645)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.0
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('603838feeed62e9eaa90415742adddf9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+md5sums=('c7e9f1c10b755ab955156d4c1ac7fc5d')

Copied: giflib/repos/staging-x86_64/PKGBUILD (from rev 213644, 
giflib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-05-27 09:23:51 UTC (rev 213645)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.1.0
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('603838feeed62e9eaa90415742adddf9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+md5sums=('c7e9f1c10b755ab955156d4c1ac7fc5d')



[arch-commits] Commit in giflib/repos (4 files)

2014-03-30 Thread Bartłomiej Piotrowski
Date: Sunday, March 30, 2014 @ 19:25:19
  Author: bpiotrowski
Revision: 209246

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  giflib/repos/testing-i686/
  giflib/repos/testing-i686/PKGBUILD
(from rev 209245, giflib/trunk/PKGBUILD)
  giflib/repos/testing-x86_64/
  giflib/repos/testing-x86_64/PKGBUILD
(from rev 209245, giflib/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: giflib/repos/testing-i686/PKGBUILD (from rev 209245, 
giflib/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-30 17:25:19 UTC (rev 209246)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.0.6
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('603838feeed62e9eaa90415742adddf9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: giflib/repos/testing-x86_64/PKGBUILD (from rev 209245, 
giflib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-30 17:25:19 UTC (rev 209246)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.0.6
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('xmlto' 'docbook-xml' 'docbook-xsl')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('603838feeed62e9eaa90415742adddf9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in giflib/repos (4 files)

2013-05-09 Thread Bartłomiej Piotrowski
Date: Thursday, May 9, 2013 @ 22:05:05
  Author: bpiotrowski
Revision: 185001

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  giflib/repos/testing-i686/
  giflib/repos/testing-i686/PKGBUILD
(from rev 185000, giflib/trunk/PKGBUILD)
  giflib/repos/testing-x86_64/
  giflib/repos/testing-x86_64/PKGBUILD
(from rev 185000, giflib/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   48 ++
 testing-x86_64/PKGBUILD |   48 ++
 2 files changed, 96 insertions(+)

Copied: giflib/repos/testing-i686/PKGBUILD (from rev 185000, 
giflib/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-09 20:05:05 UTC (rev 185001)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+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')
+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=('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 ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+
+  # libungif compatibility - instructions taken from Redhat specfile
+  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
+  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
+}
+
+package() {
+  cd ${pkgname}-${pkgver} 
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
+  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
+  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: giflib/repos/testing-x86_64/PKGBUILD (from rev 185000, 
giflib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-09 20:05:05 UTC (rev 185001)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+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')
+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=('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 ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+
+  # libungif compatibility - instructions taken from Redhat specfile
+  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
+  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
+}
+
+package() {
+  cd ${pkgname}-${pkgver} 
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
+  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
+  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in giflib/repos (4 files)

2013-05-09 Thread Bartłomiej Piotrowski
Date: Thursday, May 9, 2013 @ 21:36:41
  Author: bpiotrowski
Revision: 184996

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  giflib/repos/staging-i686/
  giflib/repos/staging-i686/PKGBUILD
(from rev 184995, giflib/trunk/PKGBUILD)
  giflib/repos/staging-x86_64/
  giflib/repos/staging-x86_64/PKGBUILD
(from rev 184995, giflib/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   44 
 staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: giflib/repos/staging-i686/PKGBUILD (from rev 184995, 
giflib/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-05-09 19:36:41 UTC (rev 184996)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libx11')
+provides=("libungif=${pkgver}")
+conflicts=('libungif')
+replaces=('libungif')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('da60935d07374de00a78c2f6f720c8f5')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+#  sed -i '/AC_PATH_XTRA/d' configure.ac
+#  libtoolize -f
+#  autoreconf
+  ./configure --prefix=/usr --disable-static
+  make
+
+  # libungif compatibility - instructions taken from Redhat specfile
+  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
+  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
+  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
+  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: giflib/repos/staging-x86_64/PKGBUILD (from rev 184995, 
giflib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-05-09 19:36:41 UTC (rev 184996)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libx11')
+provides=("libungif=${pkgver}")
+conflicts=('libungif')
+replaces=('libungif')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('da60935d07374de00a78c2f6f720c8f5')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+#  sed -i '/AC_PATH_XTRA/d' configure.ac
+#  libtoolize -f
+#  autoreconf
+  ./configure --prefix=/usr --disable-static
+  make
+
+  # libungif compatibility - instructions taken from Redhat specfile
+  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
+  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
+  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
+  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in giflib/repos (4 files)

2012-02-25 Thread Allan McRae
Date: Saturday, February 25, 2012 @ 05:17:00
  Author: allan
Revision: 151260

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  giflib/repos/extra-i686/PKGBUILD
(from rev 151259, giflib/trunk/PKGBUILD)
  giflib/repos/extra-x86_64/PKGBUILD
(from rev 151259, giflib/trunk/PKGBUILD)
Deleted:
  giflib/repos/extra-i686/PKGBUILD
  giflib/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   83 +---
 extra-x86_64/PKGBUILD |   83 +---
 2 files changed, 88 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-25 10:15:50 UTC (rev 151259)
+++ extra-i686/PKGBUILD 2012-02-25 10:17:00 UTC (rev 151260)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=4.1.6
-pkgrel=4
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('libx11')
-provides=("libungif=${pkgver}")
-conflicts=('libungif')
-replaces=('libungif')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('7125644155ae6ad33dbc9fc15a14735f')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  libtoolize -f
-  autoreconf
-  ./configure --prefix=/usr --disable-static
-  make
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  # libungif compatibility - instructions taken from Redhat specfile
-  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
-  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
-  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
-  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
-  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
-}

Copied: giflib/repos/extra-i686/PKGBUILD (from rev 151259, 
giflib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-25 10:17:00 UTC (rev 151260)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Baptiste Daroussin 
+# Contributor: Grigorios Bouzakis 
+# Contributor: mightyjaym 
+
+pkgname=giflib
+pkgver=4.1.6
+pkgrel=5
+pkgdesc="A library for reading and writing gif images"
+url="http://sourceforge.net/projects/giflib/";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libx11')
+provides=("libungif=${pkgver}")
+conflicts=('libungif')
+replaces=('libungif')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('7125644155ae6ad33dbc9fc15a14735f')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  libtoolize -f
+  autoreconf
+  ./configure --prefix=/usr --disable-static
+  make
+
+  # libungif compatibility - instructions taken from Redhat specfile
+  MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
+  gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o 
libungif.so.${pkgver}
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 libungif.so.${pkgver} "${pkgdir}/usr/lib/"
+  ln -sf libungif.so.${pkgver} "${pkgdir}/usr/lib/libungif.so.4"
+  ln -sf libungif.so.4 "${pkgdir}/usr/lib/libungif.so"
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-25 10:15:50 UTC (rev 151259)
+++ extra-x86_64/PKGBUILD   2012-02-25 10:17:00 UTC (rev 151260)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Baptiste Daroussin 
-# Contributor: Grigorios Bouzakis 
-# Contributor: mightyjaym 
-
-pkgname=giflib
-pkgver=4.1.6
-pkgrel=4
-pkgdesc="A library for reading and writing gif images"
-url="http://sourceforge.net/projects/giflib/";
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('libx11')
-provides=("libungif=${pkgver}")
-conflicts=('libungif')
-replaces=('libungif')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/giflib/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('7125644155ae6ad33dbc9fc15a14735f')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  libtoolize -f
-  autoreconf
-  ./configure --prefix=/usr --disable-static
-  make
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-