diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-01 05:48:50 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-01 05:48:50 +0000 |
commit | c99da6b6e9fa3b90d14b0a93b824a1c3d8b336e7 (patch) | |
tree | 95e51c586ad28d240bdd6b58d0b56ae80f20a7ff /media-gfx | |
parent | added initscript; closing #2223 (diff) | |
download | gentoo-2-c99da6b6e9fa3b90d14b0a93b824a1c3d8b336e7.tar.gz gentoo-2-c99da6b6e9fa3b90d14b0a93b824a1c3d8b336e7.tar.bz2 gentoo-2-c99da6b6e9fa3b90d14b0a93b824a1c3d8b336e7.zip |
New package
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pngcrush/ChangeLog | 14 | ||||
-rw-r--r-- | media-gfx/pngcrush/files/digest-pngcrush-1.5.8 | 1 | ||||
-rw-r--r-- | media-gfx/pngcrush/pngcrush-1.5.8.ebuild | 19 |
3 files changed, 34 insertions, 0 deletions
diff --git a/media-gfx/pngcrush/ChangeLog b/media-gfx/pngcrush/ChangeLog new file mode 100644 index 000000000000..65217a91d394 --- /dev/null +++ b/media-gfx/pngcrush/ChangeLog @@ -0,0 +1,14 @@ +# 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 $ + +*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. + diff --git a/media-gfx/pngcrush/files/digest-pngcrush-1.5.8 b/media-gfx/pngcrush/files/digest-pngcrush-1.5.8 new file mode 100644 index 000000000000..69ce4d564222 --- /dev/null +++ b/media-gfx/pngcrush/files/digest-pngcrush-1.5.8 @@ -0,0 +1 @@ +MD5 1c6aa5408cd145d3a05ec3f6114722be pngcrush-1.5.8.tar.gz 309672 diff --git a/media-gfx/pngcrush/pngcrush-1.5.8.ebuild b/media-gfx/pngcrush/pngcrush-1.5.8.ebuild new file mode 100644 index 000000000000..9c53cc63e9cc --- /dev/null +++ b/media-gfx/pngcrush/pngcrush-1.5.8.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Hanno Boeck <hanno@gmx.de> +# /space/gentoo/cvsroot/gentoo-x86/dev-util/cweb/cweb-3.63.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp + +S=${WORKDIR}/${P} +DESCRIPTION="PNG optimizing tool" +SRC_URI="http://prdownloads.sourceforge.net/pmt/${P}.tar.gz" +HOMEPAGE="http://pmt.sourceforge.net/pngcrush/" +DEPEND="" + +src_compile() { + cp Makefile.gcc Makefile + emake CFLAGS="-I. ${CFLAGS}" || die +} + +src_install () { + dobin pngcrush +} |