blob: d65b9d0fc6e4d33b9727072ad2ac238268fbd1f9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/lucene/lucene-1.9.1.ebuild,v 1.1 2008/01/16 12:50:53 elvanor Exp $
# This ebuild only builds the core of Lucene
# It does not build any optional component (contributions)
JAVA_PKG_IUSE="test source doc"
inherit java-pkg-2 java-ant-2 java-osgi
DESCRIPTION="High-performance, full-featured text search engine written entirely in Java"
HOMEPAGE="http://jakarta.apache.org/lucene"
SRC_URI="mirror://apache/lucene/java/archive/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="1.9"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
DEPEND=">=virtual/jdk-1.4
test? ( dev-java/junit dev-java/ant-junit )"
RDEPEND=">=virtual/jre-1.4"
src_unpack() {
unpack "${A}"
cd "${S}"
rm -rf contrib # we remove entirely the contrib directory
epatch "${FILESDIR}/disable-contrib.patch"
if use test; then
mkdir lib
java-ant_rewrite-classpath "common-build.xml"
fi
}
src_compile() {
eant jar-core $(use_doc javadocs)
}
src_test() {
ANT_TASKS="ant-junit" eant test -Dgentoo.classpath="$(java-pkg_getjars --build-only junit)"
}
src_install() {
dodoc CHANGES.txt README.txt
# WTF is with the jar version below
java-osgi_newjar-fromfile "build/lucene-core-1.9.2-dev.jar" \
"${FILESDIR}/lucene-manifest" "Apache Lucene"
use doc && java-pkg_dojavadoc build/docs/api
use source && java-pkg_dosrc src/java/org
}
|