Magellan Linux

Contents of /branches/magellan-next/core/db/db-5.1.19-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7398 - (show annotations) (download)
Tue Jan 11 22:59:22 2011 UTC (13 years, 4 months ago) by niro
File size: 1469 byte(s)
-fixed compat, dbm is default disabled by upstream - enable it at least for pam
1 # $Id: db-4.8.24-r1.smage2 3552 2009-10-26 11:51:21Z niro $
2
3 PNAME="db"
4 PVER="5.1.19"
5 PBUILD="r2"
6
7 PCATEGORIE="dev-db"
8 STATE="unstable"
9
10 DESCRIPTION="Berkley Database v${PVER:0:3} libraries and utilities."
11 HOMEPAGE="http://www.sleepycat.com/"
12
13 DEPEND=">= dev-db/db48-compat-4.8
14 >= dev-db/db50-compat-5.0"
15
16 SRCFILE="${PNAME}-${PVER}.tar.gz"
17 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18
19 sminclude mbuild
20
21 SRC_URI=(
22 http://download-east.oracle.com/berkeley-db/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 )
25
26 UP2URI="http://www.oracle.com/technology/software/products/berkeley-db/index.html"
27 UP2DATE="updatecmd ${UP2URI} | firsttarball gz"
28
29 src_compile()
30 {
31 cd ${SRCDIR}/build_unix
32
33 local conf
34 [[ ${ARCH} = x86_64 ]] && conf+=" --with-mutex=x86/gcc-assembly"
35
36 # enable dbm compat, at least pam needs it!
37 conf+=" --enable-dbm"
38
39 ../dist/configure \
40 --host=${CHOST} \
41 --sysconfdir=/etc \
42 --infodir=/usr/share/info \
43 --mandir=/usr/share/man \
44 --libdir=/usr/$(mlibdir) \
45 --localstatedir=/var/lib \
46 --prefix=/usr \
47 --enable-compat185 \
48 --enable-cxx \
49 --enable-static \
50 --enable-shared \
51 ${conf} \
52 || die
53
54 # force linking against nptl
55 mmake LIBSO_LIBS="-lpthread" || die
56 }
57
58 src_install()
59 {
60 cd ${SRCDIR}/build_unix
61
62 mmake DESTDIR=${BINDIR} docdir=${BINDIR}/usr/share/doc/${PNAME}-${PVER} install || die
63 cd ${SRCDIR}; minstalldocs LICENSE README || die
64
65 # remove broken /var/tmp dirs
66 if [[ -d ${BINDIR}/var ]]
67 then
68 rm -rf ${BINDIR}/var || die
69 fi
70 }