diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-03 15:27:48 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-03 15:27:48 +0000 |
commit | da0329c813d72a0b76d3ff26838ecd7545b9b254 (patch) | |
tree | 71a0a6a79786d60dad64d1731194ad5058051073 /eclass | |
parent | Fix for bug #140789 (diff) | |
download | historical-da0329c813d72a0b76d3ff26838ecd7545b9b254.tar.gz historical-da0329c813d72a0b76d3ff26838ecd7545b9b254.tar.bz2 historical-da0329c813d72a0b76d3ff26838ecd7545b9b254.zip |
Added link to http://bugs.gentoo.org/show_bug.cgi?id=137971 to comments in order to prevent anyone from adding a DEPEND on java-config to this eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg.eclass | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/eclass/java-pkg.eclass b/eclass/java-pkg.eclass index 4fb9fd91fd90..3338b9240067 100644 --- a/eclass/java-pkg.eclass +++ b/eclass/java-pkg.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.47 2006/11/26 21:59:41 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.48 2006/12/03 15:27:48 betelgeuse Exp $ inherit multilib @@ -12,6 +12,13 @@ EXPORT_FUNCTIONS pkg_setup # First we make sure java-config-1 will be used export WANT_JAVA_CONFIG="1" +# We can't depend on java-config directly because some packages use this eclass +# only with the java use flag. +# http://bugs.gentoo.org/show_bug.cgi?id=137971 +#DEPEND=" +# =dev-java/java-config-1.3* +# =dev-java/java-config-2*" + # During pkg_setup, we need to do a few extra things to ensure things work in a # mixed generation-1/generation-2 environment # TODO need to make sure everything that inherits java-pkg and has a pkg_setup |