diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-03 14:49:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-03 14:49:20 +0000 |
commit | 6f59903665933da7c0a1da43ddbe9ff2e5378465 (patch) | |
tree | 736973c5061a3f57b2e24a2eac5293e23cb5c9a2 /media-gfx | |
parent | Marking xmlrpc-c-1.28.03 ppc64 for bug 393267 (diff) | |
download | gentoo-2-6f59903665933da7c0a1da43ddbe9ff2e5378465.tar.gz gentoo-2-6f59903665933da7c0a1da43ddbe9ff2e5378465.tar.bz2 gentoo-2-6f59903665933da7c0a1da43ddbe9ff2e5378465.zip |
Version bump.
(Portage version: 2.2.0_alpha89/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.25.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index b58f7b76bce1..9305754b1df4 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.80 2012/02/24 14:18:17 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.81 2012/03/03 14:49:20 ssuominen Exp $ + +*pngcrush-1.7.25 (03 Mar 2012) + + 03 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> +pngcrush-1.7.25.ebuild: + Version bump. 24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> pngcrush-1.7.24.ebuild: x86 stable wrt bug #405079 diff --git a/media-gfx/pngcrush/pngcrush-1.7.25.ebuild b/media-gfx/pngcrush/pngcrush-1.7.25.ebuild new file mode 100644 index 000000000000..e280c8dfbeb9 --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.25.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.25.ebuild,v 1.1 2012/03/03 14:49:20 ssuominen 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 +} |