blob: 77b466f5a1b8f4f22bdb94ddf3c16db773bacf96 (
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
38
39
40
41
42
43
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.1.3-r3.ebuild,v 1.4 2002/07/11 06:30:56 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Standard (de)compression library"
SRC_URI="ftp://ftp.freesoftware.com/pub/infozip/zlib/${P}.tar.gz"
HOMEPAGE="http://www.gzip.org/zlib"
LICENSE="ZLIB"
KEYWORDS="x86"
SLOT="0"
DEPEND="virtual/glibc"
src_compile() {
./configure --shared --prefix=/usr || die
emake || die
make test || die
./configure --prefix=/usr || die
emake || die
}
src_install() {
into /usr
dodir /usr/include
insinto /usr/include
doins zconf.h zlib.h
dolib libz.so.1.1.3
( cd ${D}/usr/lib ; chmod 755 libz.so.* )
dolib libz.a
dosym libz.so.1.1.3 /usr/lib/libz.so
dosym libz.so.1.1.3 /usr/lib/libz.so.1
doman zlib.3
dodoc FAQ README ChangeLog
docinto txt
dodoc algorithm.txt
}
|