summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Meier <maekke@gentoo.org>2009-06-28 13:04:47 +0000
committerMarkus Meier <maekke@gentoo.org>2009-06-28 13:04:47 +0000
commit9bfbafbc3d00bddfea1208b9dfb4752ad3af8ddf (patch)
tree0e9831b89ec2bf54abd44f9fa60845b5c2632c79 /media-gfx/pngcrush
parentStable on alpha, bug #274731 (diff)
downloadgentoo-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')
-rw-r--r--media-gfx/pngcrush/ChangeLog7
-rw-r--r--media-gfx/pngcrush/pngcrush-1.6.19.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog
index 48b81d360564..ecf22641a2d0 100644
--- a/media-gfx/pngcrush/ChangeLog
+++ b/media-gfx/pngcrush/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-gfx/pngcrush
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.45 2009/06/01 12:31:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.46 2009/06/28 13:04:47 maekke Exp $
+
+*pngcrush-1.6.19 (28 Jun 2009)
+
+ 28 Jun 2009; Markus Meier <maekke@gentoo.org> +pngcrush-1.6.19.ebuild:
+ version bump, reported by Michael Huber in bug #273168
01 Jun 2009; Markus Meier <maekke@gentoo.org> -pngcrush-1.6.10.ebuild,
-files/pngcrush-1.6.10-makefile_and_missing_definitions.patch,
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
+}