blob: 2af687a5991834e536f27f36f0fecd8bc8cb7cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.5.10.ebuild,v 1.9 2004/02/10 01:28:16 absinthe Exp $
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="PNG optimizing tool"
SRC_URI="mirror://sourceforge/pmt/${P}.tar.gz"
HOMEPAGE="http://pmt.sourceforge.net/pngcrush/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc amd64"
DEPEND="virtual/glibc"
src_compile() {
cp Makefile.gcc Makefile
emake CFLAGS="-I. ${CFLAGS}" || die
}
src_install() {
dobin pngcrush
}
|