diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-08-23 23:34:45 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-08-23 23:34:45 +0000 |
commit | 61a32bf65ac2d3f12c3409ec6ebab3e216412464 (patch) | |
tree | 145ada291ec4b44c9683614da55cfc95dab616a7 /media-gfx/gifsicle | |
parent | Version bump. (diff) | |
download | gentoo-2-61a32bf65ac2d3f12c3409ec6ebab3e216412464.tar.gz gentoo-2-61a32bf65ac2d3f12c3409ec6ebab3e216412464.tar.bz2 gentoo-2-61a32bf65ac2d3f12c3409ec6ebab3e216412464.zip |
Version bump.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/gifsicle')
-rw-r--r-- | media-gfx/gifsicle/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/gifsicle/gifsicle-1.63.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/media-gfx/gifsicle/ChangeLog b/media-gfx/gifsicle/ChangeLog index a53e8af36b19..937abc318a94 100644 --- a/media-gfx/gifsicle/ChangeLog +++ b/media-gfx/gifsicle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/gifsicle # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.30 2011/06/09 06:37:14 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.31 2011/08/23 23:34:45 radhermit Exp $ + +*gifsicle-1.63 (23 Aug 2011) + + 23 Aug 2011; Tim Harder <radhermit@gentoo.org> +gifsicle-1.63.ebuild: + Version bump. *gifsicle-1.62 (09 Jun 2011) diff --git a/media-gfx/gifsicle/gifsicle-1.63.ebuild b/media-gfx/gifsicle/gifsicle-1.63.ebuild new file mode 100644 index 000000000000..52f150eca056 --- /dev/null +++ b/media-gfx/gifsicle/gifsicle-1.63.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.63.ebuild,v 1.1 2011/08/23 23:34:45 radhermit Exp $ + +EAPI=4 + +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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="X" + +RDEPEND="X? ( x11-libs/libX11 + x11-libs/libXt )" +DEPEND="${RDEPEND} + X? ( x11-proto/xproto )" + +src_configure() { + local myconf + use X || myconf="--disable-gifview" + + econf ${myconf} +} |