diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-01-06 17:50:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-01-06 17:50:05 +0000 |
commit | be3212a6435ea4e03791f9fb3619e7ea4262e0e4 (patch) | |
tree | 071deb711741e7f0e993f4ef97f4bd77c3062bbf /media-libs/giflib | |
parent | Version bump, per bug#450600 (diff) | |
download | gentoo-2-be3212a6435ea4e03791f9fb3619e7ea4262e0e4.tar.gz gentoo-2-be3212a6435ea4e03791f9fb3619e7ea4262e0e4.tar.bz2 gentoo-2-be3212a6435ea4e03791f9fb3619e7ea4262e0e4.zip |
Version bump #450566 by Agostino Sarubbo.
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'media-libs/giflib')
-rw-r--r-- | media-libs/giflib/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/giflib/giflib-5.0.3.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/media-libs/giflib/ChangeLog b/media-libs/giflib/ChangeLog index 2a10f386d398..713dff296bfd 100644 --- a/media-libs/giflib/ChangeLog +++ b/media-libs/giflib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/giflib -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/ChangeLog,v 1.65 2012/12/30 00:55:49 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/ChangeLog,v 1.66 2013/01/06 17:50:05 vapier Exp $ + +*giflib-5.0.3 (06 Jan 2013) + + 06 Jan 2013; Mike Frysinger <vapier@gentoo.org> +giflib-5.0.3.ebuild: + Version bump #450566 by Agostino Sarubbo. *giflib-5.0.2 (30 Dec 2012) diff --git a/media-libs/giflib/giflib-5.0.3.ebuild b/media-libs/giflib/giflib-5.0.3.ebuild new file mode 100644 index 000000000000..166a681a9720 --- /dev/null +++ b/media-libs/giflib/giflib-5.0.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-5.0.3.ebuild,v 1.1 2013/01/06 17:50:05 vapier Exp $ + +EAPI=4 + +inherit eutils libtool + +DESCRIPTION="Library to handle, display and manipulate GIF images" +HOMEPAGE="http://sourceforge.net/projects/giflib/" +SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +# Needs testing first. +#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="static-libs" + +src_prepare() { + elibtoolize + epunt_cxx +} + +src_configure() { + # No need for xmlto as they ship generated files. + ac_cv_prog_have_xmlto=no \ + econf $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete + doman doc/*.1 + dodoc doc/*.txt + dohtml -r doc +} |