diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-10-03 09:57:09 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-10-03 09:57:09 +0000 |
commit | 16509e15c71dfbca2ef0814c74a3df885795ed3c (patch) | |
tree | 5c5f02b6b853044c7567002a1f45d0df1ed9b5eb /media-gfx/pngcrush | |
parent | Version bump. (diff) | |
download | gentoo-2-16509e15c71dfbca2ef0814c74a3df885795ed3c.tar.gz gentoo-2-16509e15c71dfbca2ef0814c74a3df885795ed3c.tar.bz2 gentoo-2-16509e15c71dfbca2ef0814c74a3df885795ed3c.zip |
Version bump.
(Portage version: 2.2.0_alpha134/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.38.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index 3feda2e9c5c2..df5c3207db64 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.96 2012/09/02 04:05:39 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.97 2012/10/03 09:57:09 radhermit Exp $ + +*pngcrush-1.7.38 (03 Oct 2012) + + 03 Oct 2012; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.38.ebuild: + Version bump. *pngcrush-1.7.37 (02 Sep 2012) diff --git a/media-gfx/pngcrush/pngcrush-1.7.38.ebuild b/media-gfx/pngcrush/pngcrush-1.7.38.ebuild new file mode 100644 index 000000000000..f6aac4f5876b --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.38.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.38.ebuild,v 1.1 2012/10/03 09:57:09 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 +} |