blob: 8d36ae2d87df91ef9ea1548303bfb2f4811b0a68 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.6.3.ebuild,v 1.5 2010/03/02 08:12:56 phajdan.jr Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Compress PNG files without affecting image quality"
HOMEPAGE="http://optipng.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha ~amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
DEPEND="media-libs/libpng"
src_prepare() {
sed -i \
-e '/^C/s: -O2.*: $(GENTOO_CFLAGS) -Wall:' \
-e '/^LD/s: -s$: $(GENTOO_LDFLAGS):' \
src/scripts/gcc.mak.in \
lib/pngxtern/scripts/gcc.mak \
|| die "sed failed"
rm -rf lib/{libpng,zlib}
}
src_configure() {
./configure \
-with-system-libpng \
-with-system-zlib \
|| die "configure failed"
}
src_compile() {
emake \
-C src \
-f scripts/gcc.mak \
CC="$(tc-getCC)" \
GENTOO_CFLAGS="${CFLAGS}" \
GENTOO_LDFLAGS="${LDFLAGS}" \
|| die "emake failed"
}
src_install() {
dobin src/optipng || die "dobin failed"
dodoc README.txt doc/*.txt
dohtml doc/*.html
doman man/optipng.1
}
|