diff options
| author | genone <genone@gentoo.org> | 2004-02-06 22:37:58 +0000 |
|---|---|---|
| committer | genone <genone@gentoo.org> | 2004-02-06 22:37:58 +0000 |
| commit | fa07cbc87a1ef98355979aea13b066dbe76c8a16 (patch) | |
| tree | e64ddd976fa0f72fa81537ad8f1582c8c001f754 /trunk/src/qpkg | |
| parent | 772c92e525696aeb7f04c9a909b0d229a6e3bd14 (diff) | |
| download | gentoolkit-fa07cbc87a1ef98355979aea13b066dbe76c8a16.tar.gz | |
deprecation notice for qpkg+etcat, small fix for equery with amigious package
svn path=/; revision=78
Diffstat (limited to 'trunk/src/qpkg')
| -rw-r--r-- | trunk/src/qpkg/qpkg | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/trunk/src/qpkg/qpkg b/trunk/src/qpkg/qpkg index f7bd7bc..78aadc0 100644 --- a/trunk/src/qpkg/qpkg +++ b/trunk/src/qpkg/qpkg @@ -164,6 +164,10 @@ find packages owning files on your filesystem, check the integrity of installed packages, and do other queries against installed or uninstalled packages. +NOTICE: This tool will be phased out at some point in the + future, please use equery instead. + Bugs are still fixed but new features won't be added. + ${BR}Usage: ${T}${CY}${PROG}${NO} [${BR}options${NO}] [${YL}pkgname${NO}] [${BL}-g${YL} group${NO}] [${BL}-f${YL} <file>${NO}|${BL}-fp${YL} <pattern>${NO}] ${T}${CY}${PROG}${NO} ${BL}--dups${NO} [${BL}--slot${NO}] @@ -373,8 +377,11 @@ for p in ${ipak} ${upak} -;do fi if [ "${info}" ]; then - home=`grep HOMEPAGE ${p}| cut -d\" -f2` - desc=`grep DESCRIPTION ${p}| cut -d\" -f2` + source ${p} 2> /dev/null + home="${HOMEPAGE}" + desc="${DESCRIPTION}" + #home=`grep HOMEPAGE ${p}| cut -d\" -f2` + #desc=`grep DESCRIPTION ${p}|cut -d= -f2-|cat` echo -e "${T}${BL}${desc}${NO} [ ${YL}${home}${NO} ]" if [ ${verb} -gt 0 ]; then pdir=${p/$(basename ${p})/} |
