[arch-commits] Commit in gnustep-gui/repos (8 files)
Bartłomiej Piotrowski
bpiotrowski at nymeria.archlinux.org
Tue Jul 30 09:38:28 UTC 2013
Date: Tuesday, July 30, 2013 @ 11:38:27
Author: bpiotrowski
Revision: 94772
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
gnustep-gui/repos/community-staging-i686/
gnustep-gui/repos/community-staging-i686/ChangeLog
(from rev 94771, gnustep-gui/trunk/ChangeLog)
gnustep-gui/repos/community-staging-i686/PKGBUILD
(from rev 94771, gnustep-gui/trunk/PKGBUILD)
gnustep-gui/repos/community-staging-i686/giflib-5.0.patch
(from rev 94771, gnustep-gui/trunk/giflib-5.0.patch)
gnustep-gui/repos/community-staging-x86_64/
gnustep-gui/repos/community-staging-x86_64/ChangeLog
(from rev 94771, gnustep-gui/trunk/ChangeLog)
gnustep-gui/repos/community-staging-x86_64/PKGBUILD
(from rev 94771, gnustep-gui/trunk/PKGBUILD)
gnustep-gui/repos/community-staging-x86_64/giflib-5.0.patch
(from rev 94771, gnustep-gui/trunk/giflib-5.0.patch)
-------------------------------------------+
community-staging-i686/ChangeLog | 2 +
community-staging-i686/PKGBUILD | 36 ++++++++++++++++++++++++++++
community-staging-i686/giflib-5.0.patch | 21 ++++++++++++++++
community-staging-x86_64/ChangeLog | 2 +
community-staging-x86_64/PKGBUILD | 36 ++++++++++++++++++++++++++++
community-staging-x86_64/giflib-5.0.patch | 21 ++++++++++++++++
6 files changed, 118 insertions(+)
Copied: gnustep-gui/repos/community-staging-i686/ChangeLog (from rev 94771, gnustep-gui/trunk/ChangeLog)
===================================================================
--- community-staging-i686/ChangeLog (rev 0)
+++ community-staging-i686/ChangeLog 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,2 @@
+2007-06-27 tardo <tardo at nagi-fanboi.net>
+* version upgrade
Copied: gnustep-gui/repos/community-staging-i686/PKGBUILD (from rev 94771, gnustep-gui/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Vesa Kaihlavirta <vegai at iki.fi>
+# Contributor: Sebastian Sareyko <public at nooms.de>
+
+pkgname=gnustep-gui
+pkgver=0.23.1
+pkgrel=1
+pkgdesc="The GNUstep GUI class library"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/"
+license=('LGPL')
+depends=('gnustep-back' 'libungif' 'aspell' 'gcc-libs' 'libcups' 'audiofile' 'libsndfile' 'giflib' 'libao')
+makedepends=('gcc-objc' 'gnustep-base' 'gnustep-make')
+conflicts=('gnustep-gui-svn')
+groups=('gnustep-core')
+options=('!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz
+ giflib-5.0.patch)
+md5sums=('1771bdb42f27ee946b17bf60fef5eb2e'
+ 'b998c0bc3e2bc260c2779d7a50ce6407')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ . /etc/profile.d/GNUstep.sh
+ ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+ sed -i 's|#include "GNUstepBase/preface.h"|//#include "GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+ sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
+ patch -Np1 -i ../giflib-5.0.patch
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}
Copied: gnustep-gui/repos/community-staging-i686/giflib-5.0.patch (from rev 94771, gnustep-gui/trunk/giflib-5.0.patch)
===================================================================
--- community-staging-i686/giflib-5.0.patch (rev 0)
+++ community-staging-i686/giflib-5.0.patch 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,21 @@
+diff -rupN a/Source/NSBitmapImageRep+GIF.m b/Source/NSBitmapImageRep+GIF.m
+--- a/Source/NSBitmapImageRep+GIF.m 2013-01-13 14:57:37.000000000 +0100
++++ b/Source/NSBitmapImageRep+GIF.m 2013-07-30 11:30:19.630935640 +0200
+@@ -142,7 +142,7 @@ static int gs_gif_output(GifFileType *fi
+ }
+
+ gs_gif_init_input_source(&src, imageData);
+- file = DGifOpen(&src, gs_gif_input);
++ file = DGifOpen(&src, gs_gif_input, NULL);
+ if (file == NULL)
+ {
+ /* we do not use giferror here because it doesn't
+@@ -216,7 +216,7 @@ static int gs_gif_output(GifFileType *fi
+
+ /* open the image */
+ gs_gif_init_input_source(&src, imageData);
+- file = DGifOpen(&src, gs_gif_input);
++ file = DGifOpen(&src, gs_gif_input, NULL);
+ if (file == NULL)
+ {
+ /* we do not use giferror here because it doesn't
Copied: gnustep-gui/repos/community-staging-x86_64/ChangeLog (from rev 94771, gnustep-gui/trunk/ChangeLog)
===================================================================
--- community-staging-x86_64/ChangeLog (rev 0)
+++ community-staging-x86_64/ChangeLog 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,2 @@
+2007-06-27 tardo <tardo at nagi-fanboi.net>
+* version upgrade
Copied: gnustep-gui/repos/community-staging-x86_64/PKGBUILD (from rev 94771, gnustep-gui/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Vesa Kaihlavirta <vegai at iki.fi>
+# Contributor: Sebastian Sareyko <public at nooms.de>
+
+pkgname=gnustep-gui
+pkgver=0.23.1
+pkgrel=1
+pkgdesc="The GNUstep GUI class library"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/"
+license=('LGPL')
+depends=('gnustep-back' 'libungif' 'aspell' 'gcc-libs' 'libcups' 'audiofile' 'libsndfile' 'giflib' 'libao')
+makedepends=('gcc-objc' 'gnustep-base' 'gnustep-make')
+conflicts=('gnustep-gui-svn')
+groups=('gnustep-core')
+options=('!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz
+ giflib-5.0.patch)
+md5sums=('1771bdb42f27ee946b17bf60fef5eb2e'
+ 'b998c0bc3e2bc260c2779d7a50ce6407')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ . /etc/profile.d/GNUstep.sh
+ ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+ sed -i 's|#include "GNUstepBase/preface.h"|//#include "GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+ sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
+ patch -Np1 -i ../giflib-5.0.patch
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}
Copied: gnustep-gui/repos/community-staging-x86_64/giflib-5.0.patch (from rev 94771, gnustep-gui/trunk/giflib-5.0.patch)
===================================================================
--- community-staging-x86_64/giflib-5.0.patch (rev 0)
+++ community-staging-x86_64/giflib-5.0.patch 2013-07-30 09:38:27 UTC (rev 94772)
@@ -0,0 +1,21 @@
+diff -rupN a/Source/NSBitmapImageRep+GIF.m b/Source/NSBitmapImageRep+GIF.m
+--- a/Source/NSBitmapImageRep+GIF.m 2013-01-13 14:57:37.000000000 +0100
++++ b/Source/NSBitmapImageRep+GIF.m 2013-07-30 11:30:19.630935640 +0200
+@@ -142,7 +142,7 @@ static int gs_gif_output(GifFileType *fi
+ }
+
+ gs_gif_init_input_source(&src, imageData);
+- file = DGifOpen(&src, gs_gif_input);
++ file = DGifOpen(&src, gs_gif_input, NULL);
+ if (file == NULL)
+ {
+ /* we do not use giferror here because it doesn't
+@@ -216,7 +216,7 @@ static int gs_gif_output(GifFileType *fi
+
+ /* open the image */
+ gs_gif_init_input_source(&src, imageData);
+- file = DGifOpen(&src, gs_gif_input);
++ file = DGifOpen(&src, gs_gif_input, NULL);
+ if (file == NULL)
+ {
+ /* we do not use giferror here because it doesn't
More information about the arch-commits
mailing list