blob: edeb3dcd4836c2662791642be5f8b2c0a4aa5891 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.8-r1.ebuild,v 1.3 2006/01/19 19:53:52 blubb Exp $
inherit flag-o-matic eutils toolchain-funcs multilib
DESCRIPTION="Portable Network Graphics library"
HOMEPAGE="http://www.libpng.org/"
SRC_URI="mirror://sourceforge/libpng/${P}.tar.bz2
doc? ( http://www.libpng.org/pub/png/libpng-manual.txt )"
LICENSE="as-is"
SLOT="1.2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="doc"
DEPEND="sys-libs/zlib"
src_unpack() {
unpack ${P}.tar.bz2
cd "${S}"
use doc && cp "${DISTDIR}"/libpng-manual.txt .
epatch "${FILESDIR}"/1.2.7-gentoo.diff
cp scripts/makefile.linux{,.orig}
epatch "${FILESDIR}"/${PN}-1.2.8-strnlen.patch
epatch "${FILESDIR}"/${PN}-1.2.8-build.patch
[[ $(gcc-version) == "3.3" || $(gcc-version) == "3.2" ]] \
&& replace-cpu-flags k6 k6-2 k6-3 i586
local makefilein
case ${CHOST} in
*-darwin*) makefilein="scripts/makefile.darwin";;
*) makefilein="scripts/makefile.linux";;
esac
sed \
-e "/^ZLIBLIB=/s:=.*:=:" \
-e "/^ZLIBINC=/s:=.*:=:" \
-e "/^LIBPATH=/s:/lib:/$(get_libdir):" \
-e 's:mkdir:mkdir -p:' \
${makefilein} > Makefile || die
sed -i -e "s:libdir=\${exec_prefix}/lib:libdir=/usr/$(get_libdir):" \
scripts/${PN}.pc.in || die
}
src_compile() {
tc-export CC RANLIB AR
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc ANNOUNCE CHANGES KNOWNBUG README TODO Y2KINFO
use doc && dodoc libpng-manual.txt
}
pkg_postinst() {
# the libpng authors really screwed around between 1.2.1 and 1.2.3
if [[ -f ${ROOT}/usr/$(get_libdir)/libpng.so.3.1.2.1 ]] ; then
rm -f "${ROOT}"/usr/$(get_libdir)/libpng.so.3.1.2.1
fi
}
|