summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-06 21:10:16 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-06 21:10:16 +0000
commitfa191fc78257879aa34c524eafb9d1b060e706c4 (patch)
tree239f93ac63f4d9673d81a7400f66338cdd7c9a49 /bin
parentb2c3cd5eea1ee763d40401e34fa45a12914defea (diff)
downloadportage-fa191fc78257879aa34c524eafb9d1b060e706c4.tar.gz
portage-fa191fc78257879aa34c524eafb9d1b060e706c4.tar.bz2
portage-fa191fc78257879aa34c524eafb9d1b060e706c4.zip
Fix java.eclassesnotused logic. Thanks to Betelgeuse.
svn path=/main/trunk/; revision=9732
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index ae2804e9f..15f6b7d06 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1116,7 +1116,8 @@ for x in scanlist:
myflag = myflag[1:]
myiuse.add(myflag)
- inherited_java_eclass = "java-pkg" in inherited
+ inherited_java_eclass = "java-pkg-2" in inherited or \
+ "java-pkg-opt-2" in inherited
operator_tokens = set(["||", "(", ")"])
type_list, badsyntax = [], []
for mytype in ("DEPEND", "RDEPEND", "PDEPEND", "LICENSE", "PROVIDE"):