diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-06-04 21:59:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-06-04 21:59:20 +0000 |
commit | a260bd6df6c43589bc2b52b4e2d7887108f0c78b (patch) | |
tree | c0228206b0200cfcf372d31dbeabdffca69184a9 /media-gfx | |
parent | Revbump and remove old. Drop caps use flag and disable capabilities due to va... (diff) | |
download | gentoo-2-a260bd6df6c43589bc2b52b4e2d7887108f0c78b.tar.gz gentoo-2-a260bd6df6c43589bc2b52b4e2d7887108f0c78b.tar.bz2 gentoo-2-a260bd6df6c43589bc2b52b4e2d7887108f0c78b.zip |
Version bump.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.59.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index b9dabca811ba..052c0441eb3d 100644 --- a/media-gfx/pngcrush/ChangeLog +++ b/media-gfx/pngcrush/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pngcrush # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.113 2013/05/20 08:47:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.114 2013/06/04 21:59:20 ssuominen Exp $ + +*pngcrush-1.7.59 (04 Jun 2013) + + 04 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> +pngcrush-1.7.59.ebuild: + Version bump. 20 May 2013; Agostino Sarubbo <ago@gentoo.org> pngcrush-1.7.57.ebuild: Stable for x86, wrt bug #470500 diff --git a/media-gfx/pngcrush/pngcrush-1.7.59.ebuild b/media-gfx/pngcrush/pngcrush-1.7.59.ebuild new file mode 100644 index 000000000000..aa9cfa86f31a --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.59.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.59.ebuild,v 1.1 2013/06/04 21:59:20 ssuominen Exp $ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="Portable Network Graphics (PNG) optimizing utility" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush/" +SRC_URI="system-libs? ( mirror://sourceforge/pmt/${P}-nolib.tar.xz ) + !system-libs? ( mirror://sourceforge/pmt/${P}.tar.xz )" + +LICENSE="pngcrush" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="+system-libs" + +RDEPEND=" + system-libs? ( + >=media-libs/libpng-1.5:0= + sys-libs/zlib:= + )" +DEPEND="${RDEPEND} + app-arch/xz-utils" + +pkg_setup() { + use system-libs && S+="-nolib" +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + LD="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -Wall" \ + LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin ${PN} + dohtml ChangeLog.html +} |