]> Pileus Git - ~andy/sunrise/blobdiff - scripts/portdupe
net-dns/nsd in portage
[~andy/sunrise] / scripts / portdupe
index 88e717aa88b7ac15616572aa8d010828250f7060..fd03f84383bf653fda2c48a608628c32fa12aebf 100755 (executable)
@@ -1,10 +1,9 @@
 #!/bin/bash
 #
-# Copyright 2006 David Shakaryan <d@ompty.org>
+# Copyright 2006 David Shakaryan <omp@gentoo.org>
 # Distributed under the terms of the GNU General Public License v2
 
-# Change portage tree directory if you have it elsewhere.
-PORTDIR="/usr/portage"
+PORTDIR="$(portageq envvar PORTDIR)"
 
 # If an argument is present, use it as the overlay directory.
 if [ $1 ]; then
@@ -12,8 +11,8 @@ if [ $1 ]; then
 fi
 
 # Checking, displaying, etc.
-for PACKAGE in *-*/*; do
-       if [[ -d ${PORTDIR}/${PACKAGE} ]] && [[ $(basename ${PACKAGE}) != "CVS" ]] && echo ${PACKAGE} | grep -qv ${PORTDIR}/profiles/categories; then
+for PACKAGE in */*; do
+       if [[ -d ${PORTDIR}/${PACKAGE} ]] && [[ $(basename ${PACKAGE}) != "CVS" ]] && grep -q $(dirname ${PACKAGE}) ${PORTDIR}/profiles/categories; then
                # Reset versions from last package checked.
                PORTPACK_VERS=""
                OVERPACK_VERS=""