| 1 |
nichoj |
1.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 |
betelgeuse |
1.29 |
# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.28 2008/07/07 16:54:56 betelgeuse Exp $ |
| 9 |
nichoj |
1.1 |
|
| 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 |
betelgeuse |
1.13 |
# @IUSE |
| 22 |
|
|
# |
| 23 |
betelgeuse |
1.25 |
# 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 |
betelgeuse |
1.13 |
# |
| 27 |
|
|
# ------------------------------------------------------------------------------ |
| 28 |
|
|
IUSE="${JAVA_PKG_IUSE}" |
| 29 |
|
|
|
| 30 |
|
|
# ------------------------------------------------------------------------------ |
| 31 |
nichoj |
1.1 |
# @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 |
betelgeuse |
1.26 |
# 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 |
betelgeuse |
1.29 |
EXPORT_FUNCTIONS pkg_setup src_compile pkg_preinst |
| 53 |
nichoj |
1.1 |
|
| 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 |
betelgeuse |
1.5 |
java-pkg_ensure-test |
| 62 |
nichoj |
1.1 |
} |
| 63 |
|
|
|
| 64 |
|
|
# ------------------------------------------------------------------------------ |
| 65 |
betelgeuse |
1.6 |
# @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 |
betelgeuse |
1.10 |
# EANT_FILTER_COMPILER - Calls java-pkg_filter-compiler with the value |
| 71 |
betelgeuse |
1.6 |
# 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 |
caster |
1.22 |
# (default: javadoc; declare empty to disable completely) |
| 74 |
betelgeuse |
1.12 |
# EANT_GENTOO_CLASSPATH - @see eant documention in java-utils-2.eclass |
| 75 |
betelgeuse |
1.16 |
# EANT_EXTRA_ARGS - extra arguments to pass to eant |
| 76 |
betelgeuse |
1.17 |
# EANT_ANT_TASKS - modifies the ANT_TASKS variable in the eant environment |
| 77 |
betelgeuse |
1.15 |
# param: Parameters are passed to ant verbatim |
| 78 |
betelgeuse |
1.6 |
# ------------------------------------------------------------------------------ |
| 79 |
|
|
java-pkg-2_src_compile() { |
| 80 |
|
|
if [[ -e "${EANT_BUILD_XML:=build.xml}" ]]; then |
| 81 |
betelgeuse |
1.10 |
[[ "${EANT_FILTER_COMPILER}" ]] && \ |
| 82 |
|
|
java-pkg_filter-compiler ${EANT_FILTER_COMPILER} |
| 83 |
betelgeuse |
1.6 |
local antflags="${EANT_BUILD_TARGET:=jar}" |
| 84 |
caster |
1.22 |
if hasq doc ${IUSE} && [[ -n "${EANT_DOC_TARGET=javadoc}" ]]; then |
| 85 |
|
|
antflags="${antflags} $(use_doc ${EANT_DOC_TARGET})" |
| 86 |
|
|
fi |
| 87 |
betelgeuse |
1.20 |
local tasks |
| 88 |
|
|
[[ ${EANT_ANT_TASKS} ]] && tasks="${ANT_TASKS} ${EANT_ANT_TASKS}" |
| 89 |
betelgeuse |
1.21 |
ANT_TASKS="${tasks:-${ANT_TASKS}}" \ |
| 90 |
betelgeuse |
1.17 |
eant ${antflags} -f "${EANT_BUILD_XML}" ${EANT_EXTRA_ARGS} "${@}" |
| 91 |
betelgeuse |
1.6 |
else |
| 92 |
betelgeuse |
1.18 |
echo "${FUNCNAME}: ${EANT_BUILD_XML} not found so nothing to do." |
| 93 |
betelgeuse |
1.6 |
fi |
| 94 |
|
|
} |
| 95 |
|
|
|
| 96 |
betelgeuse |
1.29 |
|
| 97 |
|
|
java-pkg-2_pkg_preinst() { |
| 98 |
|
|
if is-java-strict; then |
| 99 |
|
|
if has_version dev-java/java-dep-check; then |
| 100 |
|
|
local output=$(GENTOO_VM= java-dep-check --image "${D}" "${JAVA_PKG_ENV}") |
| 101 |
|
|
if [[ ${output} ]]; then |
| 102 |
|
|
ewarn "Possibly unneeded dependencies found in package.env:" |
| 103 |
|
|
for dep in ${output}; do |
| 104 |
|
|
ewarn "\t${dep}" |
| 105 |
|
|
done |
| 106 |
|
|
fi |
| 107 |
|
|
else |
| 108 |
|
|
eerror "Install dev-java/java-dep-check for dependency checking" |
| 109 |
|
|
fi |
| 110 |
|
|
fi |
| 111 |
|
|
} |
| 112 |
|
|
|
| 113 |
betelgeuse |
1.6 |
# ------------------------------------------------------------------------------ |
| 114 |
nichoj |
1.1 |
# @eclass-end |
| 115 |
|
|
# ------------------------------------------------------------------------------ |