diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-12-27 07:20:38 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-12-27 07:20:38 +0000 |
commit | 4a3af440768342c9f83df50727f1628d40c5cfa8 (patch) | |
tree | a0ac3c446aaa8863da498ed4f12307f1507bf06d /media-gfx/pngcrush | |
parent | Initial import. New dependency for dev-ruby/GeoRuby. (diff) | |
download | gentoo-2-4a3af440768342c9f83df50727f1628d40c5cfa8.tar.gz gentoo-2-4a3af440768342c9f83df50727f1628d40c5cfa8.tar.bz2 gentoo-2-4a3af440768342c9f83df50727f1628d40c5cfa8.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-gfx/pngcrush')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.70.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index 4d4b9cff0405..5df94cdae41c 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.119 2013/12/17 10:55:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.120 2013/12/27 07:20:38 radhermit Exp $ + +*pngcrush-1.7.70 (27 Dec 2013) + + 27 Dec 2013; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.70.ebuild: + Version bump. *pngcrush-1.7.69 (17 Dec 2013) diff --git a/media-gfx/pngcrush/pngcrush-1.7.70.ebuild b/media-gfx/pngcrush/pngcrush-1.7.70.ebuild new file mode 100644 index 000000000000..71f1b0bfd546 --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.70.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.70.ebuild,v 1.1 2013/12/27 07:20:38 radhermit 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 +} |