# Eclass for Java packages # # Copyright (c) 2004-2005, Thomas Matthijs # Copyright (c) 2004-2005, Gentoo Foundation # # Licensed under the GNU General Public License, v2 # # $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.20 2007/01/28 21:42:24 betelgeuse Exp $ inherit java-utils-2 # ----------------------------------------------------------------------------- # @eclass-begin # @eclass-summary Eclass for Java Packages # # This eclass should be inherited for pure Java packages, or by packages which # need to use Java. # ----------------------------------------------------------------------------- # ------------------------------------------------------------------------------ # @IUSE # # ebuilds using this eclass can set JAVA_PKG_IUSE and then this eclass # will automatically add deps for them. # # ------------------------------------------------------------------------------ IUSE="${JAVA_PKG_IUSE}" # ------------------------------------------------------------------------------ # @depend # # Java packages need java-config, and a fairly new release of Portage. # # JAVA_PKG_E_DEPEND is defined in java-utils.eclass. # ------------------------------------------------------------------------------ DEPEND="${JAVA_PKG_E_DEPEND}" hasq source ${JAVA_PKG_IUSE} && DEPEND="${DEPEND} source? ( app-arch/zip )" # ------------------------------------------------------------------------------ # @rdepend # # Nothing special for RDEPEND... just the same as DEPEND. # ------------------------------------------------------------------------------ RDEPEND="${DEPEND}" EXPORT_FUNCTIONS pkg_setup src_compile # ------------------------------------------------------------------------------ # @eclass-pkg_setup # # pkg_setup initializes the Java environment # ------------------------------------------------------------------------------ java-pkg-2_pkg_setup() { java-pkg_init java-pkg_ensure-test } # ------------------------------------------------------------------------------ # @eclass-src_compile # # Default src_compile for java packages # variables: # EANT_BUILD_XML - controls the location of the build.xml (default: ./build.xml) # EANT_FILTER_COMPILER - Calls java-pkg_filter-compiler with the value # EANT_BUILD_TARGET - the ant target/targets to execute (default: jar) # EANT_DOC_TARGET - the target to build extra docs under the doc use flag # (default: the one provided by use_doc in # java-utils-2.eclass) # EANT_GENTOO_CLASSPATH - @see eant documention in java-utils-2.eclass # EANT_EXTRA_ARGS - extra arguments to pass to eant # EANT_ANT_TASKS - modifies the ANT_TASKS variable in the eant environment # param: Parameters are passed to ant verbatim # ------------------------------------------------------------------------------ java-pkg-2_src_compile() { if [[ -e "${EANT_BUILD_XML:=build.xml}" ]]; then [[ "${EANT_FILTER_COMPILER}" ]] && \ java-pkg_filter-compiler ${EANT_FILTER_COMPILER} local antflags="${EANT_BUILD_TARGET:=jar}" hasq doc ${IUSE} && antflags="${antflags} $(use_doc ${EANT_DOC_TARGET})" local tasks [[ ${EANT_ANT_TASKS} ]] && tasks="${ANT_TASKS} ${EANT_ANT_TASKS}" ANT_TASKS="${tasks}" \ eant ${antflags} -f "${EANT_BUILD_XML}" ${EANT_EXTRA_ARGS} "${@}" else echo "${FUNCNAME}: ${EANT_BUILD_XML} not found so nothing to do." fi } # ------------------------------------------------------------------------------ # @note # # We need to initialize the environment in every function because Portage # will source /etc/profile between phases and trample all over the env. # This is accomplished by phase hooks, which is available with newer versions of # portage. # ------------------------------------------------------------------------------ pre_pkg_setup() { java-pkg-2_pkg_setup } pre_src_unpack() { java-pkg-2_pkg_setup } pre_src_compile() { if is-java-strict; then echo "Searching for bundled jars:" java-pkg_find-normal-jars || echo "None found." fi java-pkg-2_pkg_setup } pre_src_install() { java-pkg-2_pkg_setup } pre_src_test() { java-pkg-2_pkg_setup } pre_pkg_preinst() { java-pkg-2_pkg_setup } pre_pkg_postinst() { java-pkg-2_pkg_setup } # ------------------------------------------------------------------------------ # @eclass-end # ------------------------------------------------------------------------------