diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-03-17 04:02:31 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-03-17 04:02:31 +0000 |
commit | a380db0c34e85da748fcff1b8088803258262928 (patch) | |
tree | a591241f34b7fc6f003e05051c6d47061cea19c3 /media-gfx | |
parent | Version bump, use autotool-utils to automatically run prune_libtool_files on ... (diff) | |
download | gentoo-2-a380db0c34e85da748fcff1b8088803258262928.tar.gz gentoo-2-a380db0c34e85da748fcff1b8088803258262928.tar.bz2 gentoo-2-a380db0c34e85da748fcff1b8088803258262928.zip |
Version bump.
(Portage version: 2.2.8-r1/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.73.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index 587517b2aae2..74f77dd9b83d 100644 --- a/media-gfx/pngcrush/ChangeLog +++ b/media-gfx/pngcrush/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pngcrush # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.122 2014/03/15 11:34:50 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.123 2014/03/17 04:02:31 radhermit Exp $ + +*pngcrush-1.7.73 (17 Mar 2014) + + 17 Mar 2014; Tim Harder <radhermit@gentoo.org> +pngcrush-1.7.73.ebuild: + Version bump. *pngcrush-1.7.72 (15 Mar 2014) diff --git a/media-gfx/pngcrush/pngcrush-1.7.73.ebuild b/media-gfx/pngcrush/pngcrush-1.7.73.ebuild new file mode 100644 index 000000000000..cccdd4d6c8f5 --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.73.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.73.ebuild,v 1.1 2014/03/17 04:02:31 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 +} |