blob: 9b70dd4ca4b5221c847a1c15599a46074ad0aa19 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Chad Huneycutt <chad.huneycutt@acm.org>
# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/gdbm-1.8.0-r5.ebuild,v 1.4 2002/07/11 06:30:56 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Standard GNU database libraries included for compatibility with Perl"
SRC_URI="ftp://prep.ai.mit.edu/gnu/gdbm/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/gdbm/gdbm.html"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND="virtual/glibc
berkdb? ( =sys-libs/db-1.85-r1 )"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${WORKDIR}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die
}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info || die
emake CFLAGS="${CFLAGS} -fomit-frame-pointer" || die
}
src_install() {
make prefix=${D}/usr \
man3dir=${D}/usr/share/man/man3 \
infodir=${D}/usr/share/info \
install || die
make includedir=${D}/usr/include/gdbm \
install-compat || die
dosed "s:/usr/local/lib':/usr/lib':g" /usr/lib/libgdbm.la
dodoc COPYING ChangeLog NEWS README
}
|