blob: e387eddaa6cbbd43f793b622fa74090b0827c17e (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.0.7.ebuild,v 1.1 2000/11/15 16:46:05 achim Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="libpng"
SRC_URI="ftp://swrinde.nde.swri.edu/pub/png/src/${A}"
HOMEPAGE="http://www.libpng.org/"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
}
src_compile() {
cd ${S}
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
try make
}
src_install() {
cd ${S}
mkdir ${D}/usr
mkdir ${D}/usr/include
mkdir ${D}/usr/lib
try make install prefix=${D}/usr
into /usr
doman *.3 *.5
dodoc ANNOUNCE CHANGES KNOWNBUG LICENSE README TODO Y2KINFO
}
|