diff options
author | 2012-10-23 08:46:32 +0000 | |
---|---|---|
committer | 2012-10-23 08:46:32 +0000 | |
commit | bea91cef8a4d6ce786e52b54143d3f939a81afa2 (patch) | |
tree | 0e673987f35ff41ad447a4ce8a0a73611686cad0 /media-gfx | |
parent | Version bump. Drop old. (diff) | |
download | gentoo-2-bea91cef8a4d6ce786e52b54143d3f939a81afa2.tar.gz gentoo-2-bea91cef8a4d6ce786e52b54143d3f939a81afa2.tar.bz2 gentoo-2-bea91cef8a4d6ce786e52b54143d3f939a81afa2.zip |
Version bump.
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.40.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index df5c3207db64..b575132e5688 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.97 2012/10/03 09:57:09 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.98 2012/10/23 08:46:32 radhermit Exp $ + +*pngcrush-1.7.40 (23 Oct 2012) + + 23 Oct 2012; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.40.ebuild: + Version bump. *pngcrush-1.7.38 (03 Oct 2012) diff --git a/media-gfx/pngcrush/pngcrush-1.7.40.ebuild b/media-gfx/pngcrush/pngcrush-1.7.40.ebuild new file mode 100644 index 000000000000..9a6c91f63e3c --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.40.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.40.ebuild,v 1.1 2012/10/23 08:46: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 +} |