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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# 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-4.5.20_p2.ebuild,v 1.9 2007/06/13 18:35:50 armin76 Exp $
inherit eutils db flag-o-matic java-pkg-opt-2
#Number of official patches
#PATCHNO=`echo ${PV}|sed -e "s,\(.*_p\)\([0-9]*\),\2,"`
PATCHNO=${PV/*.*.*_p}
if [[ ${PATCHNO} == "${PV}" ]] ; then
MY_PV=${PV}
MY_P=${P}
PATCHNO=0
else
MY_PV=${PV/_p${PATCHNO}}
MY_P=${PN}-${MY_PV}
fi
S="${WORKDIR}/${MY_P}/build_unix"
DESCRIPTION="Oracle Berkeley DB"
HOMEPAGE="http://www.oracle.com/technology/software/products/berkeley-db/index.html"
SRC_URI="http://download-west.oracle.com/berkeley-db/${MY_P}.tar.gz"
for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do
export SRC_URI="${SRC_URI} http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i}"
done
LICENSE="OracleDB"
SLOT="4.5"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~m68k ~ppc ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
IUSE="tcl java doc nocxx bootstrap"
DEPEND="tcl? ( >=dev-lang/tcl-8.4 )
java? ( >=virtual/jdk-1.4 )
>=sys-devel/binutils-2.16.1"
RDEPEND="tcl? ( dev-lang/tcl )
java? ( >=virtual/jre-1.4 )"
src_unpack() {
unpack "${MY_P}".tar.gz
cd "${WORKDIR}"/"${MY_P}"
for (( i=1 ; i<=${PATCHNO} ; i++ ))
do
epatch "${DISTDIR}"/patch."${MY_PV}"."${i}"
done
epatch "${FILESDIR}"/"${PN}"-"${SLOT}"-libtool.patch
# use the includes from the prefix
epatch "${FILESDIR}"/"${PN}"-4.3-jni-check-prefix-first.patch
epatch "${FILESDIR}"/"${PN}"-4.3-listen-to-java-options.patch
sed -i \
-e "s,\(ac_compiler\|\${MAKEFILE_CC}\|\${MAKEFILE_CXX}\|\$CC\)\( *--version\),\1 -dumpversion,g" \
"${S}"/../dist/configure
}
src_compile() {
# compilation with -O0 fails on amd64, see bug #171231
if use amd64; then
replace-flags -O0 -O2
fi
local myconf=""
use amd64 && myconf="${myconf} --with-mutex=x86/gcc-assembly"
use bootstrap \
&& myconf="${myconf} --disable-cxx" \
|| myconf="${myconf} $(use_enable !nocxx cxx)"
use tcl \
&& myconf="${myconf} --enable-tcl --with-tcl=/usr/$(get_libdir)" \
|| myconf="${myconf} --disable-tcl"
myconf="${myconf} $(use_enable java)"
if use java; then
myconf="${myconf} --with-java-prefix=${JAVA_HOME}"
# Can't get this working any other way, since it returns spaces, and
# bash doesn't seem to want to pass correctly in any way i try
local javaconf="-with-javac-flags=$(java-pkg_javac-args)"
fi
[[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}"
# the entire testsuite needs the TCL functionality
if use tcl && has test $FEATURES ; then
myconf="${myconf} --enable-test"
else
myconf="${myconf} --disable-test"
fi
# Add linker versions to the symbols. Easier to do, and safer than header file
# mumbo jumbo.
if use userland_GNU; then
append-ldflags -Wl,--default-symver
fi
cd ${S} && ECONF_SOURCE="${S}"/../dist econf \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--libdir=/usr/"$(get_libdir)" \
--enable-compat185 \
--without-uniquename \
--enable-rpc \
--host="${CHOST}" \
${myconf} "${javaconf}" || die "configure failed"
sed -e "s,\(^STRIP *=\).*,\1\"none\"," Makefile > Makefile.cpy \
&& mv Makefile.cpy Makefile
emake -j1 || die "make failed"
}
src_install() {
einstall libdir="${D}/usr/$(get_libdir)" STRIP="none" || die
db_src_install_usrbinslot
db_src_install_headerslot
db_src_install_doc
db_src_install_usrlibcleanup
dodir /usr/sbin
mv "${D}"/usr/bin/berkeley_db_svc "${D}"/usr/sbin/berkeley_db45_svc
if use java; then
java-pkg_regso "${D}"/usr/"$(get_libdir)"/libdb_java*.so
java-pkg_dojar "${D}"/usr/"$(get_libdir)"/*.jar
rm -f "${D}"/usr/"$(get_libdir)"/*.jar
fi
}
pkg_postinst() {
db_fix_so
}
pkg_postrm() {
db_fix_so
}
|