aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2008-11-26 19:42:41 +0000
committerfuzzyray <fuzzyray@gentoo.org>2008-11-26 19:42:41 +0000
commit38571037f6320bfefc2007ec68c5ac070d70f00f (patch)
treeaa463c732c11dee8650eca4ecf14f00c3dda4518
parentChange awk calls to gawk for non-linux system compatibility (diff)
downloadgentoolkit-38571037f6320bfefc2007ec68c5ac070d70f00f.tar.gz
gentoolkit-38571037f6320bfefc2007ec68c5ac070d70f00f.tar.bz2
gentoolkit-38571037f6320bfefc2007ec68c5ac070d70f00f.zip
Add comment on how to add support for USE_EXPANDED variables
svn path=/; revision=523
-rwxr-xr-xtrunk/src/equery/equery6
1 files changed, 6 insertions, 0 deletions
diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery
index d5b5945..b1bc730 100755
--- a/trunk/src/equery/equery
+++ b/trunk/src/equery/equery
@@ -529,6 +529,12 @@ class CmdDisplayUSEs(Command):
except IOError:
print_warn(5, "Could not load USE flag descriptions from " + ppath(gentoolkit.settings["PORTDIR"] + "/profiles/use.desc"))
+ # TODO: Add USE_EXPANDED variables to usedesc hash -- Bug #238005
+ # Pseudo-code:
+ # for all files in gentoolkit.settings["PORTDIR"]+"/desc/*.desc
+ # variable name = <filename>_<field1>
+ # description = <field 2>
+
# Load local USE flag descriptions
try:
fd = open(gentoolkit.settings["PORTDIR"]+"/profiles/use.local.desc")