blob: 77c73bea8b51dc22c058923902c7d9d5f74ce97b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /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="mirror://sourceforge/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
}
|