diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-07-21 18:16:07 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-07-21 18:16:07 +0000 |
commit | 48eccfa032f54f896e1dcda60d75261932fae97a (patch) | |
tree | 4525c850357262b51942b802c389f67401e43646 /media-gfx/pngcrush | |
parent | initial import, closes bug #5311 (diff) | |
download | gentoo-2-48eccfa032f54f896e1dcda60d75261932fae97a.tar.gz gentoo-2-48eccfa032f54f896e1dcda60d75261932fae97a.tar.bz2 gentoo-2-48eccfa032f54f896e1dcda60d75261932fae97a.zip |
new media-gfx/pngcrush-1.5.10
Diffstat (limited to 'media-gfx/pngcrush')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 19 | ||||
-rw-r--r-- | media-gfx/pngcrush/files/digest-pngcrush-1.5.10 | 1 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.5.10.ebuild | 24 |
3 files changed, 35 insertions, 9 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog index 65217a91d394..fe73a57154aa 100644 --- a/media-gfx/pngcrush/ChangeLog +++ b/media-gfx/pngcrush/ChangeLog @@ -1,14 +1,15 @@ # ChangeLog for media-gfx/pngcrush # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.1 2002/05/01 05:48:50 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.2 2002/07/21 18:16:07 blizzy Exp $ + +*pngcrush-1.5.10 (21 Jul 2002) + + 21 Jul 2002; Maik Schreiber <blizzy@gentoo.org> : + + New version, closes bug #5332. *pngcrush-1.5.8 (30 Apr 2002) - 30 Apr 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. - + 30 Apr 2002; Ryan Phillips <rphillips@gentoo.org> : + + Initial import. diff --git a/media-gfx/pngcrush/files/digest-pngcrush-1.5.10 b/media-gfx/pngcrush/files/digest-pngcrush-1.5.10 new file mode 100644 index 000000000000..d0f2c3b3e6dc --- /dev/null +++ b/media-gfx/pngcrush/files/digest-pngcrush-1.5.10 @@ -0,0 +1 @@ +MD5 6118ef30738095223c2c01500cf04519 pngcrush-1.5.10.tar.gz 313220 diff --git a/media-gfx/pngcrush/pngcrush-1.5.10.ebuild b/media-gfx/pngcrush/pngcrush-1.5.10.ebuild new file mode 100644 index 000000000000..94713796c876 --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.5.10.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.5.10.ebuild,v 1.1 2002/07/21 18:16:07 blizzy Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="PNG optimizing tool" +SRC_URI="mirror://sourceforge/pmt/${P}.tar.gz" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush/" +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="virtual/glibc" +DEPEND="${RDEPEND}" + +src_compile() { + cp Makefile.gcc Makefile + emake CFLAGS="-I. ${CFLAGS}" || die +} + +src_install () { + dobin pngcrush +} |