forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db-je-3.3.75.ebuild
38 lines (30 loc) · 914 Bytes
/
db-je-3.3.75.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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="A high performance, transactional storage engine written entirely in Java"
HOMEPAGE="http://www.oracle.com/database/berkeley-db/je/index.html"
SRC_URI="http://download.oracle.com/berkeley-db/${P/db-/}.tar.gz"
LICENSE="Sleepycat BSD"
SLOT="3.3"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=virtual/jdk-1.5"
RDEPEND=">=virtual/jre-1.5"
S=${WORKDIR}/${P/db-/}
src_unpack() {
unpack ${A}
cd "${S}" || die
epatch "${FILESDIR}"/${P}-optional-test.patch
rm -rf docs
cd lib || die
rm -v *jar || die
java-pkg_jar-from --build-only ant-core ant.jar
}
EANT_DOC_TARGET="javadoc-all"
EANT_EXTRA_ARGS="-Dnotest=true"
src_install() {
java-pkg_dojar build/lib/je.jar
use doc && java-pkg_dojavadoc docs
use source && java-pkg_dosrc src/com
}