diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-10-03 09:52:37 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-10-03 09:52:37 +0000 |
commit | 2057c90ad2c987a6149e9b32cf3e6bf1bce49af3 (patch) | |
tree | 33cd1a992f858b765c343d2b2107a4163a601201 | |
parent | Version bump. (diff) | |
download | gentoo-2-2057c90ad2c987a6149e9b32cf3e6bf1bce49af3.tar.gz gentoo-2-2057c90ad2c987a6149e9b32cf3e6bf1bce49af3.tar.bz2 gentoo-2-2057c90ad2c987a6149e9b32cf3e6bf1bce49af3.zip |
Version bump.
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
-rw-r--r-- | media-gfx/apngasm/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/apngasm/apngasm-2.7.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/media-gfx/apngasm/ChangeLog b/media-gfx/apngasm/ChangeLog index b8d39f8d980e..d09d06c692e2 100644 --- a/media-gfx/apngasm/ChangeLog +++ b/media-gfx/apngasm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/apngasm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.7 2012/05/05 07:00:20 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/ChangeLog,v 1.8 2012/10/03 09:52:37 radhermit Exp $ + +*apngasm-2.7 (03 Oct 2012) + + 03 Oct 2012; Tim Harder <radhermit@gentoo.org> +apngasm-2.7.ebuild: + Version bump. 05 May 2012; Jeff Horelick <jdhore@gentoo.org> apngasm-2.5.ebuild, apngasm-2.6.ebuild: diff --git a/media-gfx/apngasm/apngasm-2.7.ebuild b/media-gfx/apngasm/apngasm-2.7.ebuild new file mode 100644 index 000000000000..d0b11ee0abb4 --- /dev/null +++ b/media-gfx/apngasm/apngasm-2.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngasm/apngasm-2.7.ebuild,v 1.1 2012/10/03 09:52:37 radhermit Exp $ + +EAPI="4" + +inherit toolchain-funcs + +DESCRIPTION="create an APNG from multiple PNG files" +HOMEPAGE="http://sourceforge.net/projects/apngasm/" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/libpng[apng] + sys-libs/zlib" +DEPEND="${RDEPEND} + virtual/pkgconfig + app-arch/unzip" + +S=${WORKDIR} + +src_compile() { + emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng --libs zlib)" ${PN} +} + +src_install() { + dobin ${PN} + dodoc readme.txt +} |