diff options
Diffstat (limited to 'kpackage/gentooInterface.cpp')
-rw-r--r-- | kpackage/gentooInterface.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpackage/gentooInterface.cpp b/kpackage/gentooInterface.cpp index 22eaefc..65338f4 100644 --- a/kpackage/gentooInterface.cpp +++ b/kpackage/gentooInterface.cpp @@ -39,7 +39,7 @@ Should we care about the world-file? - Read tqmasked packages from /usr/portage/profiles/package.tqmask + Read masked packages from /usr/portage/profiles/package.tqmask Use flags and CFLAGS? @@ -181,14 +181,14 @@ void Gentoo::listInstalledPackages(TQPtrList<packageInfo> *pki) continue; } - for (TQStringList::Iterator tqmaskIt = packageMask.begin(); tqmaskIt != packageMask.end(); ++tqmaskIt) + for (TQStringList::Iterator maskIt = packageMask.begin(); maskIt != packageMask.end(); ++maskIt) { // FIXME Should all be handled, just not implemented yet - if ((*tqmaskIt).startsWith("<") || (*tqmaskIt).startsWith("=") || (*tqmaskIt).startsWith("~") || (*tqmaskIt).startsWith(">")) + if ((*maskIt).startsWith("<") || (*maskIt).startsWith("=") || (*maskIt).startsWith("~") || (*maskIt).startsWith(">")) continue; - if (*category+"/"+name == *tqmaskIt) + if (*category+"/"+name == *maskIt) { - kdDebug() << "Package: " << name << "-" << version << " is tqmasked" << endl; + kdDebug() << "Package: " << name << "-" << version << " is masked" << endl; isMasked = true; break; } |