blob: 025088125288ce8b76281c5f3fad7a04f5498bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2005 Gentoo Foundation
# 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.14 2005/10/30 17:43:14 grobian Exp $
DESCRIPTION="PNG optimizing tool"
HOMEPAGE="http://pmt.sourceforge.net/pngcrush/"
SRC_URI="mirror://sourceforge/pmt/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc-macos x86"
IUSE="doc"
DEPEND="virtual/libc"
src_compile() {
cp Makefile.gcc Makefile
emake CFLAGS="-I. ${CFLAGS}" || die
}
src_install() {
dobin pngcrush
use doc && dodoc {INSTALL,README}.txt
}
|