summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-06-04 17:59:20 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-06-04 17:59:20 +0000
commitd75a854a5ab164b17baa98984174204fbd7b922b (patch)
tree17937caf4e473efb6f53920e7740c7214a7336b9 /media-gfx
parentVersion bump, remove all old versions, update patch (diff)
downloadgentoo-2-d75a854a5ab164b17baa98984174204fbd7b922b.tar.gz
gentoo-2-d75a854a5ab164b17baa98984174204fbd7b922b.tar.bz2
gentoo-2-d75a854a5ab164b17baa98984174204fbd7b922b.zip
Version bump 'cause I needed this.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/gifsicle/ChangeLog10
-rw-r--r--media-gfx/gifsicle/gifsicle-1.55.ebuild30
2 files changed, 38 insertions, 2 deletions
diff --git a/media-gfx/gifsicle/ChangeLog b/media-gfx/gifsicle/ChangeLog
index aed33f4a2f5e..cb0351acad22 100644
--- a/media-gfx/gifsicle/ChangeLog
+++ b/media-gfx/gifsicle/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-gfx/gifsicle
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.23 2009/02/07 21:23:53 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.24 2009/06/04 17:59:20 flameeyes Exp $
+
+*gifsicle-1.55 (04 Jun 2009)
+
+ 04 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ +gifsicle-1.55.ebuild:
+ Version bump 'cause I needed this.
07 Feb 2009; Markus Meier <maekke@gentoo.org> -gifsicle-1.44.ebuild,
gifsicle-1.52.ebuild:
diff --git a/media-gfx/gifsicle/gifsicle-1.55.ebuild b/media-gfx/gifsicle/gifsicle-1.55.ebuild
new file mode 100644
index 000000000000..f4c390d423ea
--- /dev/null
+++ b/media-gfx/gifsicle/gifsicle-1.55.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.55.ebuild,v 1.1 2009/06/04 17:59:20 flameeyes Exp $
+
+DESCRIPTION="A command-line tool for creating, editing, and getting information about GIF images and animations"
+HOMEPAGE="http://www.lcdf.org/~eddietwo/gifsicle/"
+SRC_URI="http://www.lcdf.org/~eddietwo/gifsicle/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="X"
+
+RDEPEND="X? ( x11-libs/libX11
+ x11-libs/libXt )"
+DEPEND="${RDEPEND}
+ X? ( x11-proto/xproto )"
+
+src_compile() {
+ local myconf
+
+ use X || myconf="${myconf} --disable-gifview"
+ econf ${myconf} || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dodoc NEWS README || die
+}