blob: c75dcd8cb409766df08fa48f7696b5cc79321e8e (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.4.3-r1.ebuild,v 1.3 2004/06/24 22:46:07 agriffis Exp $
inherit eutils
DESCRIPTION="PNG optimizing utility"
SRC_URI="http://www.cs.toronto.edu/~cosmin/pngtech/optipng/${P}.tar.gz"
HOMEPAGE="http://www.cs.toronto.edu/~cosmin/pngtech/optipng/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ~ppc alpha"
IUSE="ext-png ext-zlib"
DEPEND="virtual/glibc
ext-png? ( media-libs/libpng )
ext-zlib? ( sys-libs/zlib )"
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
# optionally use the system binaries, rather than the bundled
# patched versions (some archs/configurations require patches
# not included here)
cd ${S}/src; epatch ${FILESDIR}/${PF}-more-makefile-options.diff
}
src_compile() {
cd ${S}/src
# some logic to decide which version to build...
if ! use ext-png; then
if ! use ext-zlib; then
# use the included patched zlib/libpng
einfo "Building ${PN} with bundled libraries..."
emake -f scripts/Makefile.gcc optipng
else
# use the system zlib.
einfo "Building ${PN} with bundled libpng..."
emake -f scripts/Makefile.gcc optipng-extzlib
fi
else
if use ext-zlib; then
# use the system zlib and libpng.
einfo "Building ${PN} without bundled libraries..."
emake -f scripts/Makefile.gcc optipng-allext
else
# use the system libpng.
einfo "Building ${PN} with bundled zlib..."
emake -f scripts/Makefile.gcc optipng-extpng
fi
fi
# some feedback everything went ok...
echo; ls -l optipng; size optipng
}
src_install() {
dobin ${S}/src/optipng
dodoc ${S}/doc/{CAVEAT,DESIGN,FEATURES,HISTORY,LICENSE,README,TODO,USAGE}
dohtml ${S}/doc/index.html
}
|