blob: 496e148161289f4c1136413e3b06278753ae5495 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.40.ebuild,v 1.12 2010/05/10 13:02:24 ssuominen Exp $
# last of the unslotted libpng ebuild, in weird slot too, please kill this soon
# as KEYWORDS allow it.
EAPI=3
inherit libtool
DESCRIPTION="Portable Network Graphics library"
HOMEPAGE="http://www.libpng.org/"
SRC_URI="mirror://sourceforge/libpng/${P}.tar.bz2"
LICENSE="as-is"
SLOT="1.2"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE=""
DEPEND="sys-libs/zlib
!>=media-libs/libpng-1.2.40-r1"
src_prepare() {
elibtoolize
}
src_install() {
emake DESTDIR="${D}" install || die
}
|