diff options
author | 2009-06-28 13:04:47 +0000 | |
---|---|---|
committer | 2009-06-28 13:04:47 +0000 | |
commit | 9bfbafbc3d00bddfea1208b9dfb4752ad3af8ddf (patch) | |
tree | 0e9831b89ec2bf54abd44f9fa60845b5c2632c79 /media-gfx/pngcrush/pngcrush-1.6.19.ebuild | |
parent | Stable on alpha, bug #274731 (diff) | |
download | gentoo-2-9bfbafbc3d00bddfea1208b9dfb4752ad3af8ddf.tar.gz gentoo-2-9bfbafbc3d00bddfea1208b9dfb4752ad3af8ddf.tar.bz2 gentoo-2-9bfbafbc3d00bddfea1208b9dfb4752ad3af8ddf.zip |
version bump, reported by Michael Huber in bug #273168
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'media-gfx/pngcrush/pngcrush-1.6.19.ebuild')
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.6.19.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-gfx/pngcrush/pngcrush-1.6.19.ebuild b/media-gfx/pngcrush/pngcrush-1.6.19.ebuild new file mode 100644 index 000000000000..3f35998a80cc --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.6.19.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.6.19.ebuild,v 1.1 2009/06/28 13:04:47 maekke Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Portable Network Graphics (PNG) optimizing utility" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush" +SRC_URI="mirror://sourceforge/pmt/${P}-nolib.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=media-libs/libpng-1.2.31" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}-nolib" + +src_unpack() { + unpack ${A} + cp "${FILESDIR}"/Makefile "${S}" || die +} + +src_compile() { + tc-export CC + emake || die "emake failed." +} + +src_install() { + dobin ${PN} || die "dobin failed." + dohtml ChangeLog.html +} |