diff options
author | 2010-03-13 14:15:26 +0000 | |
---|---|---|
committer | 2010-03-13 14:15:26 +0000 | |
commit | 406e987a8aaba00477e03ca82e0d2b3987231358 (patch) | |
tree | ce302d82eb7ede62d127327daa58fa4f99e3fe43 /media-gfx/pngcrush/pngcrush-1.7.10.ebuild | |
parent | It works fine with freebsd 8, adjust the dep to >= (diff) | |
download | gentoo-2-406e987a8aaba00477e03ca82e0d2b3987231358.tar.gz gentoo-2-406e987a8aaba00477e03ca82e0d2b3987231358.tar.bz2 gentoo-2-406e987a8aaba00477e03ca82e0d2b3987231358.zip |
Version bump wrt #308681. This version will compile against libpng-1.4.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/pngcrush/pngcrush-1.7.10.ebuild')
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.7.10.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-gfx/pngcrush/pngcrush-1.7.10.ebuild b/media-gfx/pngcrush/pngcrush-1.7.10.ebuild new file mode 100644 index 000000000000..1abbbfd7b15b --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.7.10.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.10.ebuild,v 1.1 2010/03/13 14:15:26 ssuominen Exp $ + +EAPI=3 +inherit toolchain-funcs + +MY_P=${P}-nolib + +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.2.40 + sys-libs/zlib" +DEPEND="${RDEPEND} + app-arch/xz-utils" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + cp -f "${FILESDIR}"/Makefile . || die + tc-export CC +} + +src_install() { + dobin ${PN} || die + dohtml ChangeLog.html || die +} |