blob: 62319069706b968585a02bdf440ed8d97f477114 (
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
27
28
29
30
31
32
33
34
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.6.4-r1.ebuild,v 1.5 2008/04/24 19:08:34 dertobi123 Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Portable Network Graphics (PNG) optimizing utility"
HOMEPAGE="http://pmt.sourceforge.net/pngcrush"
SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND=">=media-libs/libpng-1.2.26-r1"
S=${WORKDIR}/${P}-nolib
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-modified-debian-patchset-5.patch
}
src_compile() {
tc-export CC
emake || die "emake failed."
}
src_install() {
dobin ${PN} || die "dobin failed."
dodoc *.txt
}
|