| 1 |
# Eclass for Java packages
|
| 2 |
#
|
| 3 |
# Copyright (c) 2004-2005, Thomas Matthijs <axxo@gentoo.org>
|
| 4 |
# Copyright (c) 2004-2005, Gentoo Foundation
|
| 5 |
#
|
| 6 |
# Licensed under the GNU General Public License, v2
|
| 7 |
#
|
| 8 |
# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.25 2007/11/13 19:36:50 betelgeuse Exp $
|
| 9 |
|
| 10 |
inherit java-utils-2
|
| 11 |
|
| 12 |
# -----------------------------------------------------------------------------
|
| 13 |
# @eclass-begin
|
| 14 |
# @eclass-summary Eclass for Java Packages
|
| 15 |
#
|
| 16 |
# This eclass should be inherited for pure Java packages, or by packages which
|
| 17 |
# need to use Java.
|
| 18 |
# -----------------------------------------------------------------------------
|
| 19 |
|
| 20 |
# ------------------------------------------------------------------------------
|
| 21 |
# @IUSE
|
| 22 |
#
|
| 23 |
# Use JAVA_PKG_IUSE instead of IUSE for doc, source and examples so that
|
| 24 |
# the eclass can automatically add the needed dependencies for the java-pkg_do*
|
| 25 |
# functions.
|
| 26 |
#
|
| 27 |
# ------------------------------------------------------------------------------
|
| 28 |
IUSE="${JAVA_PKG_IUSE}"
|
| 29 |
|
| 30 |
# ------------------------------------------------------------------------------
|
| 31 |
# @depend
|
| 32 |
#
|
| 33 |
# Java packages need java-config, and a fairly new release of Portage.
|
| 34 |
#
|
| 35 |
# JAVA_PKG_E_DEPEND is defined in java-utils.eclass.
|
| 36 |
# ------------------------------------------------------------------------------
|
| 37 |
DEPEND="${JAVA_PKG_E_DEPEND}"
|
| 38 |
|
| 39 |
# ------------------------------------------------------------------------------
|
| 40 |
# @rdepend
|
| 41 |
#
|
| 42 |
# Nothing special for RDEPEND... just the same as DEPEND.
|
| 43 |
# ------------------------------------------------------------------------------
|
| 44 |
RDEPEND="${DEPEND}"
|
| 45 |
|
| 46 |
# Commons packages follow the same rules so do it here
|
| 47 |
if [[ ${CATEGORY} = dev-java && ${PN} = commons-* ]]; then
|
| 48 |
HOMEPAGE="http://commons.apache.org/${PN#commons-}/"
|
| 49 |
SRC_URI="mirror://apache/${PN/-///}/source/${P}-src.tar.gz"
|
| 50 |
fi
|
| 51 |
|
| 52 |
EXPORT_FUNCTIONS pkg_setup src_compile
|
| 53 |
|
| 54 |
# ------------------------------------------------------------------------------
|
| 55 |
# @eclass-pkg_setup
|
| 56 |
#
|
| 57 |
# pkg_setup initializes the Java environment
|
| 58 |
# ------------------------------------------------------------------------------
|
| 59 |
java-pkg-2_pkg_setup() {
|
| 60 |
java-pkg_init
|
| 61 |
java-pkg_ensure-test
|
| 62 |
}
|
| 63 |
|
| 64 |
# ------------------------------------------------------------------------------
|
| 65 |
# @eclass-src_compile
|
| 66 |
#
|
| 67 |
# Default src_compile for java packages
|
| 68 |
# variables:
|
| 69 |
# EANT_BUILD_XML - controls the location of the build.xml (default: ./build.xml)
|
| 70 |
# EANT_FILTER_COMPILER - Calls java-pkg_filter-compiler with the value
|
| 71 |
# EANT_BUILD_TARGET - the ant target/targets to execute (default: jar)
|
| 72 |
# EANT_DOC_TARGET - the target to build extra docs under the doc use flag
|
| 73 |
# (default: javadoc; declare empty to disable completely)
|
| 74 |
# EANT_GENTOO_CLASSPATH - @see eant documention in java-utils-2.eclass
|
| 75 |
# EANT_EXTRA_ARGS - extra arguments to pass to eant
|
| 76 |
# EANT_ANT_TASKS - modifies the ANT_TASKS variable in the eant environment
|
| 77 |
# param: Parameters are passed to ant verbatim
|
| 78 |
# ------------------------------------------------------------------------------
|
| 79 |
java-pkg-2_src_compile() {
|
| 80 |
if [[ -e "${EANT_BUILD_XML:=build.xml}" ]]; then
|
| 81 |
[[ "${EANT_FILTER_COMPILER}" ]] && \
|
| 82 |
java-pkg_filter-compiler ${EANT_FILTER_COMPILER}
|
| 83 |
local antflags="${EANT_BUILD_TARGET:=jar}"
|
| 84 |
if hasq doc ${IUSE} && [[ -n "${EANT_DOC_TARGET=javadoc}" ]]; then
|
| 85 |
antflags="${antflags} $(use_doc ${EANT_DOC_TARGET})"
|
| 86 |
fi
|
| 87 |
local tasks
|
| 88 |
[[ ${EANT_ANT_TASKS} ]] && tasks="${ANT_TASKS} ${EANT_ANT_TASKS}"
|
| 89 |
ANT_TASKS="${tasks:-${ANT_TASKS}}" \
|
| 90 |
eant ${antflags} -f "${EANT_BUILD_XML}" ${EANT_EXTRA_ARGS} "${@}"
|
| 91 |
else
|
| 92 |
echo "${FUNCNAME}: ${EANT_BUILD_XML} not found so nothing to do."
|
| 93 |
fi
|
| 94 |
}
|
| 95 |
|
| 96 |
# ------------------------------------------------------------------------------
|
| 97 |
# @eclass-end
|
| 98 |
# ------------------------------------------------------------------------------
|