blob: 1b4b63bd02fae70fdff78d8c79ed418abf6cbea2 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.0.14.ebuild,v 1.11 2002/10/24 07:43:07 seemant Exp $
IUSE="tcltk java"
S=${WORKDIR}/${P}/build_unix
DESCRIPTION="Berkeley DB"
SRC_URI="http://www.sleepycat.com/update/snapshot/${P}.tar.gz"
HOMEPAGE="http://www.sleepycat.com"
SLOT="4"
LICENSE="DB"
KEYWORDS="-x86 -ppc -sparc -sparc64"
DEPEND="tcltk? ( dev-lang/tcl )
java? ( virtual/jdk )"
src_compile() {
local myconf
use java \
&& myconf="${myconf} --enable-java" \
|| myconf="${myconf} --disable-java"
use tcltk \
&& myconf="${myconf} --enable-tcl --with-tcl=/usr/lib" \
|| myconf="${myconf} --disable-tcl"
../dist/configure \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--enable-compat185 \
--enable-cxx \
--enable-posixmutexes \
${myconf} || die
emake || make || die
}
src_install () {
einstall || die
dodir /usr/share/doc/${PF}/html
mv ${D}/usr/docs/* ${D}/usr/share/doc/${PF}/html/
}
|