summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-10-21 14:39:20 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-10-21 14:39:20 +0000
commit27873e9b7a6309fe0eb268bbc12a147a0e43f7c8 (patch)
tree64b0b50bcd0a01bf4cec7eec08c8590c6b3606cb /Tools
parentUpdate MASTER_SITES to use ${MASTER_SITE_SOURCEFORGE} (diff)
s|pkg/PLIST|pkg-plist|g
Notes
Notes: svn path=/head/; revision=34071
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/gnomedepends.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/gnomedepends.py b/Tools/scripts/gnomedepends.py
index d1426912ed64..74041a142f97 100755
--- a/Tools/scripts/gnomedepends.py
+++ b/Tools/scripts/gnomedepends.py
@@ -68,7 +68,7 @@ newgnomeports = []
regobj = re.compile('^@dirrm (?P<dirname>\S+).*$')
for portdir in gnomeports:
try:
- lines = readfile(os.path.join(portdir, 'pkg/PLIST'))
+ lines = readfile(os.path.join(portdir, 'pkg-plist'))
lines = filter(lines, regobj)
if len(lines) > 0:
newgnomeports.append([portdir, lines])
@@ -78,7 +78,7 @@ gnomeports = newgnomeports
newgnomeports = []
try:
- currplist = readfile('pkg/PLIST')
+ currplist = readfile('pkg-plist')
except IOError, errmsg:
print errmsg
sys.exit(1)
@@ -118,7 +118,7 @@ if len(depends) == 0:
sys.stdout.writelines(['No dependencies found (maybe it is not a GNOME port).\n'])
sys.exit(0)
-sys.stdout.writelines(['According to the contents of PLIST the port depends on the following GNOME\n', 'port(s):\n\n'])
+sys.stdout.writelines(['According to the contents of pkg-plist the port depends on the following GNOME\n', 'port(s):\n\n'])
for depend in depends:
sys.stdout.writelines([depend[0], ', for directories:\n'])
for dir in depend[1]: