summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-10-23 16:41:18 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-10-23 16:41:18 +0000
commit94a1a3e58d4b0b31a54e130a956b1f516e3ff0b8 (patch)
tree6bd8f3dafa21802b5e4d8cf74f844e613ebc6760 /media-gfx
parentReplaced deprecated opts variable in init scripts (bug #383641) (diff)
downloadgentoo-2-94a1a3e58d4b0b31a54e130a956b1f516e3ff0b8.tar.gz
gentoo-2-94a1a3e58d4b0b31a54e130a956b1f516e3ff0b8.tar.bz2
gentoo-2-94a1a3e58d4b0b31a54e130a956b1f516e3ff0b8.zip
old
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/gif2png/ChangeLog6
-rw-r--r--media-gfx/gif2png/files/gif2png-2.5.1-libpng.patch30
-rw-r--r--media-gfx/gif2png/gif2png-2.5.1-r1.ebuild29
-rw-r--r--media-gfx/gif2png/gif2png-2.5.1.ebuild28
4 files changed, 5 insertions, 88 deletions
diff --git a/media-gfx/gif2png/ChangeLog b/media-gfx/gif2png/ChangeLog
index 51f4b05d2e49..2c2cf596d07e 100644
--- a/media-gfx/gif2png/ChangeLog
+++ b/media-gfx/gif2png/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/gif2png
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gif2png/ChangeLog,v 1.28 2011/10/23 16:15:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gif2png/ChangeLog,v 1.29 2011/10/23 16:41:17 ssuominen Exp $
+
+ 23 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> -gif2png-2.5.1.ebuild,
+ -gif2png-2.5.1-r1.ebuild, -files/gif2png-2.5.1-libpng.patch:
+ old
23 Oct 2011; Raúl Porcel <armin76@gentoo.org> gif2png-2.5.4.ebuild:
sparc stable wrt #385975
diff --git a/media-gfx/gif2png/files/gif2png-2.5.1-libpng.patch b/media-gfx/gif2png/files/gif2png-2.5.1-libpng.patch
deleted file mode 100644
index e4ceaebb115f..000000000000
--- a/media-gfx/gif2png/files/gif2png-2.5.1-libpng.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- work/gif2png-2.5.1/gif2png.c.orig 2006-07-07 16:40:33.000000000 -0400
-+++ work/gif2png-2.5.1/gif2png.c 2006-07-07 16:43:25.000000000 -0400
-@@ -135,7 +135,7 @@
- unsigned long hist_maxvalue;
- int passcount;
- int errtype, errorcount = 0;
-- png_text software;
-+ png_text comment, software;
-
- /* these volatile declarations prevent gcc warnings ("variable might be
- * clobbered by `longjmp' or `vfork'") */
-@@ -517,10 +517,15 @@
- j = s->size;
- if (j > 0 && data[j-1] == '\0') /* some apps include a NULL in GIF comment */
- --j;
-- if (j<500) {
-- png_write_tEXt(png_ptr, "Comment", (png_charp)data, j);
-+ if (j<1000) {
-+ comment.compression = PNG_TEXT_COMPRESSION_NONE;
- } else {
-- png_write_zTXt(png_ptr, "Comment", (png_charp)data, j, 0);
-+ comment.compression = PNG_TEXT_COMPRESSION_zTXt;
-+ comment.key = "Comment";
-+ comment.text = data;
-+ comment.text_length = j;
-+
-+ png_set_text(png_ptr, info_ptr, &comment, 1);
- }
- break;
-
diff --git a/media-gfx/gif2png/gif2png-2.5.1-r1.ebuild b/media-gfx/gif2png/gif2png-2.5.1-r1.ebuild
deleted file mode 100644
index 1de073d31469..000000000000
--- a/media-gfx/gif2png/gif2png-2.5.1-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gif2png/gif2png-2.5.1-r1.ebuild,v 1.6 2010/12/10 19:39:25 ranger Exp $
-
-inherit eutils
-
-DESCRIPTION="Converts images from gif format to png format"
-HOMEPAGE="http://catb.org/~esr/gif2png/"
-SRC_URI="http://catb.org/~esr/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-DEPEND="media-libs/libpng"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # bug 139338 - gif2png won't compile with libpng-1.2.12
- epatch "${FILESDIR}"/${P}-libpng.patch
- epatch "${FILESDIR}"/${P}-overflow.patch
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog NEWS README
-}
diff --git a/media-gfx/gif2png/gif2png-2.5.1.ebuild b/media-gfx/gif2png/gif2png-2.5.1.ebuild
deleted file mode 100644
index 946f5385d7bb..000000000000
--- a/media-gfx/gif2png/gif2png-2.5.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gif2png/gif2png-2.5.1.ebuild,v 1.16 2010/01/07 22:08:36 fauli Exp $
-
-inherit eutils
-
-DESCRIPTION="Converts images from gif format to png format"
-HOMEPAGE="http://catb.org/~esr/gif2png/"
-SRC_URI="http://catb.org/~esr/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-DEPEND="media-libs/libpng"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # bug 139338 - gif2png won't compile with libpng-1.2.12
- epatch "${FILESDIR}"/${PN}-2.5.1-libpng.patch
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README
-}