| … | |
… | |
| 3 | # Copyright (c) 2004-2005, Thomas Matthijs <axxo@gentoo.org> |
3 | # Copyright (c) 2004-2005, Thomas Matthijs <axxo@gentoo.org> |
| 4 | # Copyright (c) 2004-2005, Gentoo Foundation |
4 | # Copyright (c) 2004-2005, Gentoo Foundation |
| 5 | # |
5 | # |
| 6 | # Licensed under the GNU General Public License, v2 |
6 | # Licensed under the GNU General Public License, v2 |
| 7 | # |
7 | # |
|
|
8 | # $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.26 2008/04/06 16:35:18 betelgeuse Exp $ |
| 8 | |
9 | |
| 9 | inherit java-utils-2 |
10 | inherit java-utils-2 |
| 10 | |
11 | |
| 11 | # ----------------------------------------------------------------------------- |
12 | # ----------------------------------------------------------------------------- |
| 12 | # @eclass-begin |
13 | # @eclass-begin |
| 13 | # @eclass-summary Eclass for Java Packages |
14 | # @eclass-summary Eclass for Java Packages |
| 14 | # |
15 | # |
| 15 | # This eclass should be inherited for pure Java packages, or by packages which |
16 | # This eclass should be inherited for pure Java packages, or by packages which |
| 16 | # need to use Java. |
17 | # need to use Java. |
| 17 | # ----------------------------------------------------------------------------- |
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}" |
| 18 | |
29 | |
| 19 | # ------------------------------------------------------------------------------ |
30 | # ------------------------------------------------------------------------------ |
| 20 | # @depend |
31 | # @depend |
| 21 | # |
32 | # |
| 22 | # Java packages need java-config, and a fairly new release of Portage. |
33 | # Java packages need java-config, and a fairly new release of Portage. |
| … | |
… | |
| 30 | # |
41 | # |
| 31 | # Nothing special for RDEPEND... just the same as DEPEND. |
42 | # Nothing special for RDEPEND... just the same as DEPEND. |
| 32 | # ------------------------------------------------------------------------------ |
43 | # ------------------------------------------------------------------------------ |
| 33 | RDEPEND="${DEPEND}" |
44 | RDEPEND="${DEPEND}" |
| 34 | |
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 | |
| 35 | EXPORT_FUNCTIONS pkg_setup |
52 | EXPORT_FUNCTIONS pkg_setup src_compile |
| 36 | |
53 | |
| 37 | # ------------------------------------------------------------------------------ |
54 | # ------------------------------------------------------------------------------ |
| 38 | # @eclass-pkg_setup |
55 | # @eclass-pkg_setup |
| 39 | # |
56 | # |
| 40 | # pkg_setup initializes the Java environment |
57 | # pkg_setup initializes the Java environment |
| 41 | # ------------------------------------------------------------------------------ |
58 | # ------------------------------------------------------------------------------ |
| 42 | java-pkg-2_pkg_setup() { |
59 | java-pkg-2_pkg_setup() { |
| 43 | java-pkg_init |
60 | java-pkg_init |
|
|
61 | java-pkg_ensure-test |
| 44 | } |
62 | } |
| 45 | |
63 | |
| 46 | # ------------------------------------------------------------------------------ |
64 | # ------------------------------------------------------------------------------ |
| 47 | # @note |
65 | # @eclass-src_compile |
| 48 | # |
66 | # |
| 49 | # We need to initialize the environment in every function because Portage |
67 | # Default src_compile for java packages |
| 50 | # will source /etc/profile between phases and trample all over the env. |
68 | # variables: |
| 51 | # This is accomplished by phase hooks, which is available with newer versions of |
69 | # EANT_BUILD_XML - controls the location of the build.xml (default: ./build.xml) |
| 52 | # portage. |
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 |
| 53 | # ------------------------------------------------------------------------------ |
78 | # ------------------------------------------------------------------------------ |
| 54 | |
|
|
| 55 | pre_pkg_setup() { |
|
|
| 56 | java-pkg-2_pkg_setup |
|
|
| 57 | } |
|
|
| 58 | |
|
|
| 59 | pre_src_unpack() { |
|
|
| 60 | java-pkg-2_pkg_setup |
|
|
| 61 | } |
|
|
| 62 | |
|
|
| 63 | pre_src_compile() { |
79 | java-pkg-2_src_compile() { |
| 64 | java-pkg-2_pkg_setup |
80 | if [[ -e "${EANT_BUILD_XML:=build.xml}" ]]; then |
| 65 | } |
81 | [[ "${EANT_FILTER_COMPILER}" ]] && \ |
| 66 | |
82 | java-pkg_filter-compiler ${EANT_FILTER_COMPILER} |
| 67 | pre_src_install() { |
83 | local antflags="${EANT_BUILD_TARGET:=jar}" |
| 68 | java-pkg-2_pkg_setup |
84 | if hasq doc ${IUSE} && [[ -n "${EANT_DOC_TARGET=javadoc}" ]]; then |
| 69 | } |
85 | antflags="${antflags} $(use_doc ${EANT_DOC_TARGET})" |
| 70 | |
86 | fi |
| 71 | pre_src_test() { |
87 | local tasks |
| 72 | java-pkg-2_pkg_setup |
88 | [[ ${EANT_ANT_TASKS} ]] && tasks="${ANT_TASKS} ${EANT_ANT_TASKS}" |
| 73 | } |
89 | ANT_TASKS="${tasks:-${ANT_TASKS}}" \ |
| 74 | |
90 | eant ${antflags} -f "${EANT_BUILD_XML}" ${EANT_EXTRA_ARGS} "${@}" |
| 75 | pre_pkg_preinst() { |
91 | else |
| 76 | java-pkg-2_pkg_setup |
92 | echo "${FUNCNAME}: ${EANT_BUILD_XML} not found so nothing to do." |
| 77 | } |
93 | fi |
| 78 | |
|
|
| 79 | pre_pkg_postinst() { |
|
|
| 80 | java-pkg-2_pkg_setup |
|
|
| 81 | } |
94 | } |
| 82 | |
95 | |
| 83 | # ------------------------------------------------------------------------------ |
96 | # ------------------------------------------------------------------------------ |
| 84 | # @eclass-end |
97 | # @eclass-end |
| 85 | # ------------------------------------------------------------------------------ |
98 | # ------------------------------------------------------------------------------ |