blob: c5bf8c01df262c168c12548dc39dc6c3f31c7fbe (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Desktop Team <desktop@gentoo.org>
# Author: Achim Gottinger <achim@gentoo.org>, Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.1-r1.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp $
S=${WORKDIR}/${P}
DESCRIPTION="libpng"
SRC_URI="ftp://swrinde.nde.swri.edu/pub/png/src/${P}.tar.gz"
HOMEPAGE="http://www.libpng.org/"
SLOT="1.2"
DEPEND=">=sys-libs/zlib-1.1.4"
src_compile() {
sed -e "s:ZLIBLIB=../zlib:ZLIBLIB=/usr/lib:" \
-e "s:ZLIBINC=../zlib:ZLIBINC=/usr/include:" \
-e "s:prefix=/usr:prefix=${D}/usr:" -e "s/-O3/${CFLAGS}/" \
scripts/makefile.linux > Makefile
make || die
}
src_install() {
dodir /usr/{include,lib}
make \
prefix=${D}/usr \
install || die
doman *.[35]
dodoc ANNOUNCE CHANGES KNOWNBUG LICENSE README TODO Y2KINFO
}
|