| … | |
… | |
| 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.36 2011/07/08 11:35:01 ssuominen 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 | |
| 35 | EXPORT_FUNCTIONS pkg_setup |
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 | case "${EAPI:-0}" in |
|
|
53 | 0|1) EXPORT_FUNCTIONS pkg_setup src_compile pkg_preinst ;; |
|
|
54 | *) EXPORT_FUNCTIONS pkg_setup src_prepare src_compile pkg_preinst ;; |
|
|
55 | esac |
| 36 | |
56 | |
| 37 | # ------------------------------------------------------------------------------ |
57 | # ------------------------------------------------------------------------------ |
| 38 | # @eclass-pkg_setup |
58 | # @eclass-pkg_setup |
| 39 | # |
59 | # |
| 40 | # pkg_setup initializes the Java environment |
60 | # pkg_setup initializes the Java environment |
| 41 | # ------------------------------------------------------------------------------ |
61 | # ------------------------------------------------------------------------------ |
| 42 | java-pkg-2_pkg_setup() { |
62 | java-pkg-2_pkg_setup() { |
| 43 | java-pkg_init |
63 | java-pkg_init |
|
|
64 | java-pkg_ensure-test |
| 44 | } |
65 | } |
| 45 | |
66 | |
| 46 | # ------------------------------------------------------------------------------ |
67 | # ------------------------------------------------------------------------------ |
| 47 | # @note |
68 | # @eclass-src_prepare |
| 48 | # |
69 | # |
| 49 | # We need to initialize the environment in every function because Portage |
70 | # wrapper for java-utils-2_src_prepare |
| 50 | # will source /etc/profile between phases and trample all over the env. |
|
|
| 51 | # This is accomplished by phase hooks, which is available with newer versions of |
|
|
| 52 | # portage. |
|
|
| 53 | # ------------------------------------------------------------------------------ |
71 | # ------------------------------------------------------------------------------ |
| 54 | |
72 | java-pkg-2_src_prepare() { |
| 55 | pre_pkg-2_setup() { |
73 | java-utils-2_src_prepare |
| 56 | java-pkg-2_pkg_setup |
|
|
| 57 | } |
74 | } |
| 58 | |
75 | |
| 59 | pre_src_unpack() { |
76 | # ------------------------------------------------------------------------------ |
| 60 | java-pkg-2_pkg_setup |
77 | # @eclass-src_compile |
|
|
78 | # |
|
|
79 | # Default src_compile for java packages |
|
|
80 | # variables: |
|
|
81 | # EANT_BUILD_XML - controls the location of the build.xml (default: ./build.xml) |
|
|
82 | # EANT_FILTER_COMPILER - Calls java-pkg_filter-compiler with the value |
|
|
83 | # EANT_BUILD_TARGET - the ant target/targets to execute (default: jar) |
|
|
84 | # EANT_DOC_TARGET - the target to build extra docs under the doc use flag |
|
|
85 | # (default: javadoc; declare empty to disable completely) |
|
|
86 | # EANT_GENTOO_CLASSPATH - @see eant documention in java-utils-2.eclass |
|
|
87 | # EANT_EXTRA_ARGS - extra arguments to pass to eant |
|
|
88 | # EANT_ANT_TASKS - modifies the ANT_TASKS variable in the eant environment |
|
|
89 | # param: Parameters are passed to ant verbatim |
|
|
90 | # ------------------------------------------------------------------------------ |
|
|
91 | java-pkg-2_src_compile() { |
|
|
92 | if [[ -e "${EANT_BUILD_XML:=build.xml}" ]]; then |
|
|
93 | [[ "${EANT_FILTER_COMPILER}" ]] && \ |
|
|
94 | java-pkg_filter-compiler ${EANT_FILTER_COMPILER} |
|
|
95 | local antflags="${EANT_BUILD_TARGET:=jar}" |
|
|
96 | if has doc ${IUSE} && [[ -n "${EANT_DOC_TARGET=javadoc}" ]]; then |
|
|
97 | antflags="${antflags} $(use_doc ${EANT_DOC_TARGET})" |
|
|
98 | fi |
|
|
99 | local tasks |
|
|
100 | [[ ${EANT_ANT_TASKS} ]] && tasks="${ANT_TASKS} ${EANT_ANT_TASKS}" |
|
|
101 | ANT_TASKS="${tasks:-${ANT_TASKS}}" \ |
|
|
102 | eant ${antflags} -f "${EANT_BUILD_XML}" ${EANT_EXTRA_ARGS} "${@}" |
|
|
103 | else |
|
|
104 | echo "${FUNCNAME}: ${EANT_BUILD_XML} not found so nothing to do." |
|
|
105 | fi |
| 61 | } |
106 | } |
| 62 | |
107 | |
| 63 | pre_src_compile() { |
108 | java-pkg-2_supports-test() { |
| 64 | java-pkg-2_pkg_setup |
109 | python << EOF |
|
|
110 | from xml.dom.minidom import parse |
|
|
111 | import sys |
|
|
112 | dom = parse("${1}") |
|
|
113 | for elem in dom.getElementsByTagName('target'): |
|
|
114 | if elem.getAttribute('name') == 'test': |
|
|
115 | sys.exit(0) |
|
|
116 | sys.exit(1) |
|
|
117 | EOF |
|
|
118 | return $? |
| 65 | } |
119 | } |
| 66 | |
120 | |
| 67 | pre_src_install() { |
121 | java-pkg-2_src_test() { |
| 68 | java-pkg-2_pkg_setup |
122 | [[ -e "${EANT_BUILD_XML:=build.xml}" ]] || return |
|
|
123 | |
|
|
124 | if [[ ${EANT_TEST_TARGET} ]] || java-pkg-2_supports-test ${EANT_BUILD_XML}; then |
|
|
125 | local opts task |
|
|
126 | |
|
|
127 | if [[ ${EANT_TEST_JUNIT_INTO} ]]; then |
|
|
128 | java-pkg_jar-from --into "${EANT_TEST_JUNIT_INTO}" junit |
|
|
129 | fi |
|
|
130 | |
|
|
131 | ANT_TASKS=${EANT_TEST_ANT_TASKS:-${ANT_TASKS:-${EANT_ANT_TASKS}}} |
|
|
132 | |
|
|
133 | if [[ ${DEPEND} = *dev-java/ant-junit* ]]; then |
|
|
134 | |
|
|
135 | if [[ ${ANT_TASKS} && "${ANT_TASKS}" != none ]]; then |
|
|
136 | ANT_TASKS="${ANT_TASKS} ant-junit" |
|
|
137 | else |
|
|
138 | ANT_TASKS="ant-junit" |
|
|
139 | fi |
|
|
140 | |
|
|
141 | task=true |
|
|
142 | fi |
|
|
143 | |
|
|
144 | if [[ ${task} ]] || [[ ${DEPEND} = *dev-java/junit* ]]; then |
|
|
145 | opts="-Djunit.jar=\"$(java-pkg_getjar junit junit.jar)\"" |
|
|
146 | if [[ ${EANT_TEST_GENTOO_CLASSPATH} ]]; then |
|
|
147 | EANT_GENTOO_CLASSPATH="${EANT_TEST_GENTOO_CLASSPATH},junit" |
|
|
148 | elif [[ ${EANT_GENTOO_CLASSPATH} ]]; then |
|
|
149 | EANT_GENTOO_CLASSPATH+=',junit' |
|
|
150 | else |
|
|
151 | EANT_GENTOO_CLASSPATH=junit |
|
|
152 | fi |
|
|
153 | fi |
|
|
154 | |
|
|
155 | eant ${opts} -f "${EANT_BUILD_XML}" \ |
|
|
156 | ${EANT_EXTRA_ARGS} ${EANT_TEST_EXTRA_ARGS} ${EANT_TEST_TARGET:-test} |
|
|
157 | |
|
|
158 | else |
|
|
159 | echo "${FUNCNAME}: No test target in ${EANT_BUILD_XML}" |
|
|
160 | fi |
| 69 | } |
161 | } |
| 70 | |
162 | |
| 71 | pre_src_test() { |
163 | # ------------------------------------------------------------------------------ |
| 72 | java-pkg-2_pkg_setup |
164 | # @eclass-pkg_preinst |
| 73 | } |
165 | # |
| 74 | |
166 | # wrapper for java-utils-2_pkg_preinst |
|
|
167 | # ------------------------------------------------------------------------------ |
| 75 | pre_pkg_preinst() { |
168 | java-pkg-2_pkg_preinst() { |
| 76 | java-pkg-2_pkg_setup |
169 | java-utils-2_pkg_preinst |
| 77 | } |
|
|
| 78 | |
|
|
| 79 | pre_pkg_postinst() { |
|
|
| 80 | java-pkg-2_pkg_setup |
|
|
| 81 | } |
170 | } |
| 82 | |
171 | |
| 83 | # ------------------------------------------------------------------------------ |
172 | # ------------------------------------------------------------------------------ |
| 84 | # @eclass-end |
173 | # @eclass-end |
| 85 | # ------------------------------------------------------------------------------ |
174 | # ------------------------------------------------------------------------------ |