diff options
author | 2012-06-30 05:37:24 +0000 | |
---|---|---|
committer | 2012-06-30 05:37:24 +0000 | |
commit | f4ff0832b944f94aa43125aa7d03cdaa41130ea0 (patch) | |
tree | 82446909b460062b7197116762c687a576fb2153 /media-gfx | |
parent | Mark stable, bug #286245 (diff) | |
download | gentoo-2-f4ff0832b944f94aa43125aa7d03cdaa41130ea0.tar.gz gentoo-2-f4ff0832b944f94aa43125aa7d03cdaa41130ea0.tar.bz2 gentoo-2-f4ff0832b944f94aa43125aa7d03cdaa41130ea0.zip |
Version bump.
(Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.28.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index a71ba3a9fbd7..d9482c137f93 100644 --- a/media-gfx/pngcrush/ChangeLog +++ b/media-gfx/pngcrush/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pngcrush # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.85 2012/06/02 13:50:52 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.86 2012/06/30 05:37:24 radhermit Exp $ + +*pngcrush-1.7.28 (30 Jun 2012) + + 30 Jun 2012; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.28.ebuild: + Version bump. 02 Jun 2012; Johannes Huber <johu@gentoo.org> pngcrush-1.7.25.ebuild: Stable for x86, wrt bug #419069 diff --git a/media-gfx/pngcrush/pngcrush-1.7.28.ebuild b/media-gfx/pngcrush/pngcrush-1.7.28.ebuild new file mode 100644 index 000000000000..1b520ede565e --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.28.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.28.ebuild,v 1.1 2012/06/30 05:37:24 radhermit Exp $ + +EAPI=4 + +MY_P=${P}-nolib + +inherit toolchain-funcs + +DESCRIPTION="Portable Network Graphics (PNG) optimizing utility" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush/" +SRC_URI="mirror://sourceforge/pmt/${MY_P}.tar.xz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND=">=media-libs/libpng-1.4:0 + sys-libs/zlib" +DEPEND="${RDEPEND} + app-arch/xz-utils" + +S=${WORKDIR}/${MY_P} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + LD="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -Wall" \ + LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin ${PN} + dohtml ChangeLog.html +} |