blob: e5439f41e2c4af351b20d6af7d353b4a02638bda (
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
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.1.4-r2.ebuild,v 1.3 2004/06/24 23:09:53 agriffis Exp $
inherit eutils flag-o-matic
S="${WORKDIR}/${P}"
DESCRIPTION="Standard (de)compression library"
SRC_URI="http://www.gzip.org/zlib/${P}.tar.bz2"
HOMEPAGE="http://www.gzip.org/zlib"
LICENSE="ZLIB"
KEYWORDS="amd64 x86 ppc sparc alpha mips hppa ia64"
SLOT="0"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.security.patch
}
src_compile() {
append-flags -fPIC
./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.${PV}
( cd ${D}/usr/lib ; chmod 755 libz.so.* )
dolib libz.a
dosym libz.so.${PV} /usr/lib/libz.so
dosym libz.so.${PV} /usr/lib/libz.so.1
doman zlib.3
dodoc FAQ README ChangeLog
docinto txt
dodoc algorithm.txt
}
|