diff options
author | des <des@FreeBSD.org> | 2002-01-24 10:11:43 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-01-24 10:11:43 +0000 |
commit | 8cb0c94ebf790254beef249d6a3258238686fa70 (patch) | |
tree | 4ae08bd53c39f8dbf3cfd4d7a761f916301e963a /ports-mgmt | |
parent | 05c4c5fc1bfa1a7ab4fb9878e7efc55de7320273 (diff) | |
download | FreeBSD-ports-8cb0c94ebf790254beef249d6a3258238686fa70.zip FreeBSD-ports-8cb0c94ebf790254beef249d6a3258238686fa70.tar.gz |
Fix the master port detection logic to correctly handle KDE ports.
Bump version to 2.6.3.
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/porteasy/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/porteasy/src/porteasy.pl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ports-mgmt/porteasy/Makefile b/ports-mgmt/porteasy/Makefile index 47aef10..5c738ed 100644 --- a/ports-mgmt/porteasy/Makefile +++ b/ports-mgmt/porteasy/Makefile @@ -8,7 +8,7 @@ # PORTNAME= porteasy -PORTVERSION= 2.6.2 +PORTVERSION= 2.6.3 CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/porteasy/src/porteasy.pl b/ports-mgmt/porteasy/src/porteasy.pl index 2c773e6..115efa2 100644 --- a/ports-mgmt/porteasy/src/porteasy.pl +++ b/ports-mgmt/porteasy/src/porteasy.pl @@ -33,7 +33,7 @@ use strict; use Fcntl; use Getopt::Long; -my $VERSION = "2.6.2"; +my $VERSION = "2.6.3"; my $COPYRIGHT = "Copyright (c) 2000 Dag-Erling Smørgrav. All rights reserved."; # Constants @@ -476,7 +476,7 @@ sub find_master($) { while (<FILE>) { if (/^(?:MAIN|MASTER)DIR\s*=\s*(\S+)\s*$/) { $master = $1; - } elsif (/^\.?include \"([^\"]+)\/Makefile\"\s*$/) { + } elsif (/^\.?include \"([^\"]+)\/Makefile(?:[^\/\"]*)\"\s*$/) { $master = $1; } if (defined($master)) { |