diff options
author | 2011-06-25 23:26:23 +0000 | |
---|---|---|
committer | 2011-06-25 23:26:23 +0000 | |
commit | adc4afd5d4f03e975826eef15a546a7fb3d3499c (patch) | |
tree | e4c77a4c20d29f23f4e5310cec8bcc6a7eb7a255 /media-gfx/apng2gif | |
parent | Version bump and remove old. Fix dependencies. (diff) | |
download | gentoo-2-adc4afd5d4f03e975826eef15a546a7fb3d3499c.tar.gz gentoo-2-adc4afd5d4f03e975826eef15a546a7fb3d3499c.tar.bz2 gentoo-2-adc4afd5d4f03e975826eef15a546a7fb3d3499c.zip |
Version bump and remove old. Fix dependencies.
(Portage version: 2.2.0_alpha40/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/apng2gif')
-rw-r--r-- | media-gfx/apng2gif/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/apng2gif/apng2gif-1.2.ebuild (renamed from media-gfx/apng2gif/apng2gif-1.1.ebuild) | 11 |
2 files changed, 12 insertions, 7 deletions
diff --git a/media-gfx/apng2gif/ChangeLog b/media-gfx/apng2gif/ChangeLog index a2e5be3ecc13..c7908721687b 100644 --- a/media-gfx/apng2gif/ChangeLog +++ b/media-gfx/apng2gif/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/apng2gif # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apng2gif/ChangeLog,v 1.1 2011/04/26 17:38:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apng2gif/ChangeLog,v 1.2 2011/06/25 23:26:23 radhermit Exp $ + +*apng2gif-1.2 (25 Jun 2011) + + 25 Jun 2011; Tim Harder <radhermit@gentoo.org> -apng2gif-1.1.ebuild, + +apng2gif-1.2.ebuild: + Version bump and remove old. Fix dependencies. *apng2gif-1.1 (26 Apr 2011) diff --git a/media-gfx/apng2gif/apng2gif-1.1.ebuild b/media-gfx/apng2gif/apng2gif-1.2.ebuild index e92eb02a8969..099ebea8de80 100644 --- a/media-gfx/apng2gif/apng2gif-1.1.ebuild +++ b/media-gfx/apng2gif/apng2gif-1.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apng2gif/apng2gif-1.1.ebuild,v 1.1 2011/04/26 17:38:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apng2gif/apng2gif-1.2.ebuild,v 1.1 2011/06/25 23:26:23 radhermit Exp $ -EAPI="3" +EAPI="4" inherit toolchain-funcs @@ -15,18 +15,17 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="media-libs/libpng[apng]" +RDEPEND="sys-libs/zlib" DEPEND="${RDEPEND} - dev-util/pkgconfig app-arch/unzip" S=${WORKDIR} src_compile() { - emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng)" ${PN} || die + emake CC="$(tc-getCC)" LDLIBS="-lz" ${PN} } src_install() { - dobin ${PN} || die + dobin ${PN} dodoc readme.txt } |