| 1 |
# Copyright 1999-2012 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.49.ebuild,v 1.4 2012/04/04 16:01:32 vapier 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 |
src_prepare() {
|
| 26 |
elibtoolize
|
| 27 |
}
|
| 28 |
|
| 29 |
src_configure() {
|
| 30 |
econf --disable-static
|
| 31 |
}
|
| 32 |
|
| 33 |
src_compile() {
|
| 34 |
emake libpng12.la
|
| 35 |
}
|
| 36 |
|
| 37 |
src_install() {
|
| 38 |
newlib.so .libs/libpng12.so.0.* libpng12.so.0
|
| 39 |
}
|