diff options
author | 2013-05-12 08:56:47 +0000 | |
---|---|---|
committer | 2013-05-12 08:56:47 +0000 | |
commit | 802dce442ef6da889dcb6797badef3c173ed2bf7 (patch) | |
tree | 26071892aa3ceda451b49218a416e960a08993a3 /media-gfx/gifsicle | |
parent | add license for media-gfx/gifsicle (diff) | |
download | gentoo-2-802dce442ef6da889dcb6797badef3c173ed2bf7.tar.gz gentoo-2-802dce442ef6da889dcb6797badef3c173ed2bf7.tar.bz2 gentoo-2-802dce442ef6da889dcb6797badef3c173ed2bf7.zip |
Version bump wrt #453820 by Agostino Sarubbo. Use LICENSE="clp" for include/lcdf/clp.h and src/clp.c.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-gfx/gifsicle')
-rw-r--r-- | media-gfx/gifsicle/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/gifsicle/gifsicle-1.70.ebuild | 25 |
2 files changed, 32 insertions, 1 deletions
diff --git a/media-gfx/gifsicle/ChangeLog b/media-gfx/gifsicle/ChangeLog index b17a1428ad5d..627a71f0332f 100644 --- a/media-gfx/gifsicle/ChangeLog +++ b/media-gfx/gifsicle/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/gifsicle # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.45 2013/05/12 08:46:55 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/ChangeLog,v 1.46 2013/05/12 08:56:47 ssuominen Exp $ + +*gifsicle-1.70 (12 May 2013) + + 12 May 2013; Samuli Suominen <ssuominen@gentoo.org> +gifsicle-1.70.ebuild: + Version bump wrt #453820 by Agostino Sarubbo. Use LICENSE="clp" for + include/lcdf/clp.h and src/clp.c. 12 May 2013; Samuli Suominen <ssuominen@gentoo.org> -gifsicle-1.64.ebuild: old diff --git a/media-gfx/gifsicle/gifsicle-1.70.ebuild b/media-gfx/gifsicle/gifsicle-1.70.ebuild new file mode 100644 index 000000000000..8aa1324ed754 --- /dev/null +++ b/media-gfx/gifsicle/gifsicle-1.70.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.70.ebuild,v 1.1 2013/05/12 08:56:47 ssuominen Exp $ + +EAPI=5 + +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/${PN}/${P}.tar.gz" + +LICENSE="clp 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} +} |