summaryrefslogtreecommitdiff
blob: bae5b75391a708fa60a5d200baf4cdd3855abca1 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.1.3-r1.ebuild,v 1.6 2000/11/30 23:14:00 achim Exp $

P=zlib-1.1.3
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Standard (de)compression library"
SRC_URI="ftp://ftp.freesoftware.com/pub/infozip/zlib/${A}"

DEPEND=">=sys-libs/glibc-2.1.3"
RDEPEND=$DEPEND

src_compile() {            
   cd ${S}               
    try ./configure --shared --prefix=/usr
    try make ${MAKEOPTS}
    try make test
    try ./configure --prefix=/usr
    try make ${MAKEOPTS}
}

src_install() {                               
    into /usr
    dodir /usr/include
    insinto /usr/include
    doins zconf.h zlib.h
    dolib libz.so.1.1.3
    dolib libz.a
    dosym libz.so.1.1.3 /usr/lib/libz.so
    dosym libz.so.1.1.3 /usr/lib/libz.so.1
    dodoc FAQ README algorithm.txt ChangeLog
}