blob: 87612a137fe962997aea7e4a0b1c6c205a8e32c3 (
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
53
54
55
56
57
58
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-1.85-r1.ebuild,v 1.34 2007/10/24 07:07:55 wltjr Exp $
inherit eutils
DESCRIPTION="db 1.85 -- required for RPM 4.0 to compile; that's about it."
HOMEPAGE="http://www.sleepycat.com/"
SRC_URI="ftp://ftp.sleepycat.com/releases/db.${PV}.tar.gz
mirror://gentoo/db.1.85.patch"
LICENSE="DB"
SLOT="1"
KEYWORDS="mips"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/db.${PV}
src_unpack() {
unpack db.${PV}.tar.gz
cd "${S}"
epatch ${DISTDIR}/db.${PV}.patch
}
src_compile() {
cd "${S}"/PORT/linux
make ${MAKEOPTS} OORG="${CFLAGS} -fomit-frame-pointer" prefix=/usr || die
}
src_install () {
cd "${S}"/PORT/linux
newlib.a libdb.a libdb1.a || die "newlib.a failed"
newlib.so libdb.so.2 libdb1.so.2 || die "newlib.so failed"
dosym libdb1.so.2 /usr/$(get_libdir)/libdb1.so
dosym libdb1.so.2 /usr/$(get_libdir)/libdb.so.2
dosym libdb1.so.2 /usr/$(get_libdir)/libndbm.so
dosym libdb1.a /usr/$(get_libdir)/libndbm.a
dodir /usr/include/db1
insinto /usr/include/db1
doins include/db.h include/mpool.h
insinto /usr/include/db1
doins include/ndbm.h
dosed "s:<db.h>:<db1/db.h>:" /usr/include/db1/ndbm.h
dosym db1/ndbm.h /usr/include/ndbm.h
newbin db_dump185 db1_dump185
cd "${S}"
dodoc changelog README
docinto ps
dodoc docs/*.ps
docinto hash
dodoc hash/README
}
|