diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-17 14:48:33 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-17 14:48:33 +0000 |
commit | c97079a4dc5ddbed5a8e033e34fb9324c7750187 (patch) | |
tree | a1f808608035304c6ad3a3f11cc47491f4f8077c | |
parent | s/pacakge/package in files/Gentoo (diff) | |
download | gentoo-2-c97079a4dc5ddbed5a8e033e34fb9324c7750187.tar.gz gentoo-2-c97079a4dc5ddbed5a8e033e34fb9324c7750187.tar.bz2 gentoo-2-c97079a4dc5ddbed5a8e033e34fb9324c7750187.zip |
Added wrapper for depend-java-query to pass USE flags. This and java-config-2.0.31 will fix bug #156228. This eclass should be changed to depend on 2.0.31 when it is stable.
-rw-r--r-- | eclass/java-utils-2.eclass | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index b398db6130e3..b51d24cecb91 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -6,7 +6,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.34 2006/12/08 12:12:04 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.35 2006/12/17 14:48:33 betelgeuse Exp $ # ----------------------------------------------------------------------------- @@ -205,6 +205,17 @@ java-pkg_dojar() { } +# ------------------------------------------------------------------------------ +# @internal-function depend-java-query +# +# Wrapper for the depend-java-query binary to enable passing USE in env. +# Using env variables keeps this eclass working with java-config versions that +# do not handle use flags. +# ------------------------------------------------------------------------------ + +depend-java-query() { + USE="${USE}" $(which depend-java-query) "${@}" +} # ------------------------------------------------------------------------------ # @ebuild-function java-pkg_regjar |