diff options
-rw-r--r-- | media-gfx/pngtools/ChangeLog | 10 | ||||
-rw-r--r-- | media-gfx/pngtools/pngtools-0.4.ebuild | 32 |
2 files changed, 40 insertions, 2 deletions
diff --git a/media-gfx/pngtools/ChangeLog b/media-gfx/pngtools/ChangeLog index 4301e36344c4..c2b2c3cef785 100644 --- a/media-gfx/pngtools/ChangeLog +++ b/media-gfx/pngtools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/pngtools -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngtools/ChangeLog,v 1.3 2008/04/23 18:53:07 drac Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngtools/ChangeLog,v 1.4 2009/06/04 13:37:39 flameeyes Exp $ + +*pngtools-0.4 (04 Jun 2009) + + 04 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> + +pngtools-0.4.ebuild: + Version bump for proper support of 64-bit systems. 23 Apr 2008; Samuli Suominen <drac@gentoo.org> +files/pngtools-0.3-implicit-declarations.patch, pngtools-0.3.ebuild: diff --git a/media-gfx/pngtools/pngtools-0.4.ebuild b/media-gfx/pngtools/pngtools-0.4.ebuild new file mode 100644 index 000000000000..8ef1190637fe --- /dev/null +++ b/media-gfx/pngtools/pngtools-0.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngtools/pngtools-0.4.ebuild,v 1.1 2009/06/04 13:37:39 flameeyes Exp $ + +inherit eutils + +MY_PV=${PV/./_} + +DESCRIPTION="A series of tools for the PNG image format" +HOMEPAGE="http://www.stillhq.com/pngtools" +SRC_URI="http://www.stillhq.com/pngtools/source/pngtools_${MY_PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=media-libs/libpng-1.2.8-r1 + virtual/libc" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.3-implicit-declarations.patch +} + +src_install() { + emake -j1 install DESTDIR="${D}" || die "emake install failed." + dodoc ABOUT AUTHORS ChangeLog NEWS README chunks.txt + insinto /usr/share/doc/${PF}/examples + doins *.png +} |