diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-07-24 04:48:00 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-07-24 04:48:00 +0000 |
commit | 156d47a73a0f48f98586bcca0ea378669bf7bdab (patch) | |
tree | a69d501e4b143db7108de55f73ac5bb7dc2664e1 /media-gfx | |
parent | Version bump for dev channel release. (diff) | |
download | gentoo-2-156d47a73a0f48f98586bcca0ea378669bf7bdab.tar.gz gentoo-2-156d47a73a0f48f98586bcca0ea378669bf7bdab.tar.bz2 gentoo-2-156d47a73a0f48f98586bcca0ea378669bf7bdab.zip |
Version bump.
(Portage version: 2.2.0_alpha120/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.32.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index 2a202483b8c9..394e4a4bf33a 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.88 2012/07/11 23:11:26 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.89 2012/07/24 04:48:00 radhermit Exp $ + +*pngcrush-1.7.32 (24 Jul 2012) + + 24 Jul 2012; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.32.ebuild: + Version bump. *pngcrush-1.7.31 (11 Jul 2012) diff --git a/media-gfx/pngcrush/pngcrush-1.7.32.ebuild b/media-gfx/pngcrush/pngcrush-1.7.32.ebuild new file mode 100644 index 000000000000..5158640726d6 --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.32.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.32.ebuild,v 1.1 2012/07/24 04:48:00 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 +} |