diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-28 21:42:24 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-28 21:42:24 +0000 |
commit | 6690dc8c58110b86939c02c831d574afe8a7ca74 (patch) | |
tree | 4eff2c9f227d4418e241c9c3f4c4c3f8e9adc5dc /eclass/java-ant-2.eclass | |
parent | x86 stable wrt bug 156304 (diff) | |
download | gentoo-2-6690dc8c58110b86939c02c831d574afe8a7ca74.tar.gz gentoo-2-6690dc8c58110b86939c02c831d574afe8a7ca74.tar.bz2 gentoo-2-6690dc8c58110b86939c02c831d574afe8a7ca74.zip |
Use WANT_ANT_TASKS if EANT_ANT_TASKS is not defined. Fixes bug #164315.
Diffstat (limited to 'eclass/java-ant-2.eclass')
-rw-r--r-- | eclass/java-ant-2.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/java-ant-2.eclass b/eclass/java-ant-2.eclass index 484d7126915c..8f78577e2aaa 100644 --- a/eclass/java-ant-2.eclass +++ b/eclass/java-ant-2.eclass @@ -10,7 +10,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.14 2007/01/21 01:20:21 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.15 2007/01/28 21:42:24 betelgeuse Exp $ inherit java-utils-2 @@ -27,8 +27,10 @@ inherit java-utils-2 # We need some tools from javatoolkit. We also need portage 2.1 for phase hooks DEPEND=">=dev-java/javatoolkit-0.1.5 ${JAVA_PKG_PORTAGE_DEP}" + # add ant-core into DEPEND, unless disabled -[[ "${JAVA_ANT_DISABLE_ANT_CORE_DEP:-true}" ]] || DEPEND="${DEPEND} dev-java/ant-core" +[[ "${JAVA_ANT_DISABLE_ANT_CORE_DEP}" ]] || DEPEND="${DEPEND} dev-java/ant-core" + # add ant tasks specified in WANT_ANT_TASKS to DEPEND local ANT_TASKS_DEPEND; ANT_TASKS_DEPEND="$(java-pkg_ant-tasks-depend)" |