1 |
# Copyright 1999-2011 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.46.ebuild,v 1.3 2011/10/01 03:30:48 phajdan.jr Exp $ |
4 |
|
5 |
# this ebuild is only for the libpng12.so.0 SONAME for ABI compat |
6 |
|
7 |
EAPI=4 |
8 |
|
9 |
inherit multilib libtool |
10 |
|
11 |
DESCRIPTION="Portable Network Graphics library" |
12 |
HOMEPAGE="http://www.libpng.org/" |
13 |
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" |
14 |
|
15 |
LICENSE="as-is" |
16 |
SLOT="1.2" |
17 |
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd" |
18 |
IUSE="" |
19 |
|
20 |
RDEPEND="sys-libs/zlib |
21 |
!=media-libs/libpng-1.2*:0" |
22 |
DEPEND="${RDEPEND} |
23 |
app-arch/xz-utils" |
24 |
|
25 |
pkg_setup() { |
26 |
if [[ -e ${EROOT}/usr/$(get_libdir)/libpng12.so.0 ]]; then |
27 |
rm -f "${EROOT}"/usr/$(get_libdir)/libpng12.so.0 |
28 |
fi |
29 |
} |
30 |
|
31 |
src_prepare() { |
32 |
elibtoolize |
33 |
} |
34 |
|
35 |
src_configure() { |
36 |
econf --disable-static |
37 |
} |
38 |
|
39 |
src_compile() { |
40 |
emake libpng12.la |
41 |
} |
42 |
|
43 |
src_install() { |
44 |
newlib.so .libs/libpng12.so.0.* libpng12.so.0 |
45 |
} |