blob: eaa4a77b978c4cfd657325d21dee35503bcdeaf6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngrewrite/pngrewrite-1.2.1.ebuild,v 1.8 2005/06/05 12:18:56 hansmi Exp $
DESCRIPTION="A utility which reduces large palettes in PNG images"
HOMEPAGE="http://entropymine.com/jason/pngrewrite/"
SRC_URI="http://entropymine.com/jason/pngrewrite/${P}.zip"
DEPEND="app-arch/unzip
media-libs/libpng
sys-libs/zlib"
RDEPEND="media-libs/libpng
sys-libs/zlib"
SLOT="0"
LICENSE="public-domain"
KEYWORDS="ppc sparc x86"
IUSE=""
S="${WORKDIR}"
src_compile () {
gcc -o pngrewrite pngrewrite.c -lpng -lz $CFLAGS || die
}
src_install () {
dobin pngrewrite
}
|