You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/lucene/lucene-1.9.1.ebuild

55 lines
1.3 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
# 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://lucene.apache.org"
SRC_URI="mirror://apache/lucene/java/archive/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="1.9"
KEYWORDS="amd64 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() {
java-ant_rewrite-classpath common-build.xml
EANT_GENTOO_CLASSPATH="junit ant-core" ANT_TASKS="ant-junit" eant test
}
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
}