diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-12-08 09:16:32 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-12-08 09:16:32 +0000 |
commit | 48d2f07b721f8643efd68b0a5be2beac71af3e0c (patch) | |
tree | 1d53a7aa2847d772504632422aea81a5b61f31e1 /media-gfx/pngcrush | |
parent | Version bump (diff) | |
download | gentoo-2-48d2f07b721f8643efd68b0a5be2beac71af3e0c.tar.gz gentoo-2-48d2f07b721f8643efd68b0a5be2beac71af3e0c.tar.bz2 gentoo-2-48d2f07b721f8643efd68b0a5be2beac71af3e0c.zip |
Version bump.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/pngcrush')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.22.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index cab9ea8a524e..8b3e772cab6e 100644 --- a/media-gfx/pngcrush/ChangeLog +++ b/media-gfx/pngcrush/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pngcrush # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.75 2011/11/11 09:22:59 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.76 2011/12/08 09:16:32 radhermit Exp $ + +*pngcrush-1.7.22 (08 Dec 2011) + + 08 Dec 2011; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.22.ebuild: + Version bump. 11 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> pngcrush-1.7.20.ebuild: x86 stable wrt bug #389567 diff --git a/media-gfx/pngcrush/pngcrush-1.7.22.ebuild b/media-gfx/pngcrush/pngcrush-1.7.22.ebuild new file mode 100644 index 000000000000..cfe59b08684f --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.22.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.22.ebuild,v 1.1 2011/12/08 09:16:32 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 +} |