forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gigabase-3.83-r2.ebuild
58 lines (45 loc) · 1.14 KB
/
gigabase-3.83-r2.ebuild
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="OO-DBMS with interfaces for C/C++/Java/PHP/Perl"
HOMEPAGE="http://www.garret.ru/~knizhnik/gigabase.html"
SRC_URI="mirror://sourceforge/gigabase/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
S="${WORKDIR}/${PN}"
PATCHES=(
"${FILESDIR}/${P}-fix-dereferencing.patch"
"${FILESDIR}/${P}-cpp14.patch" # fix #594550
"${FILESDIR}/${P}-fix-build-system.patch"
)
src_configure() {
econf $(use_enable static-libs static)
}
src_compile() {
default
if use doc; then
doxygen doxygen.cfg || die
HTML_DOCS=( GigaBASE.htm docs/html/. )
fi
}
src_test() {
local t
for t in testddl testidx testidx2 testiref testleak testperf \
testperf2 testspat testtl testsync testtimeseries; do
./${t} || die
done
}
src_install() {
default
if ! use static-libs; then
find "${D}" -name '*.la' -delete || die
fi
}
pkg_postinst() {
elog "The subsql binary has been renamed to subsql-gdb,"
elog "to avoid a name clash with the FastDB version of subsql"
}