summaryrefslogtreecommitdiff
path: root/ports-mgmt/porteasy
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2004-01-22 15:06:01 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2004-01-22 15:06:01 +0000
commite6e63e1d298cc9fdbc24316bcf445db0c0192eed (patch)
treeeaa6d77701e5e72ccd4225b1a3467cb3eb2b3f59 /ports-mgmt/porteasy
parentUpdate to 20031210. (diff)
check out Tools along with Mk and Templates. also fix a minor typo.
Notes
Notes: svn path=/head/; revision=98809
Diffstat (limited to 'ports-mgmt/porteasy')
-rw-r--r--ports-mgmt/porteasy/Makefile1
-rw-r--r--ports-mgmt/porteasy/src/porteasy.pl4
2 files changed, 3 insertions, 2 deletions
diff --git a/ports-mgmt/porteasy/Makefile b/ports-mgmt/porteasy/Makefile
index 0c034ce667c6..0f96f161c4da 100644
--- a/ports-mgmt/porteasy/Makefile
+++ b/ports-mgmt/porteasy/Makefile
@@ -9,6 +9,7 @@
PORTNAME= porteasy
PORTVERSION= 2.7.10
+PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= # none
DISTFILES= # none
diff --git a/ports-mgmt/porteasy/src/porteasy.pl b/ports-mgmt/porteasy/src/porteasy.pl
index af31490f9653..2bca387ccfca 100644
--- a/ports-mgmt/porteasy/src/porteasy.pl
+++ b/ports-mgmt/porteasy/src/porteasy.pl
@@ -333,7 +333,7 @@ sub update_index() {
cvs("update", "-l")
or bsd::errx(1, "error updating the index file");
}
- cvs("update", "Mk", "Templates")
+ cvs("update", "Mk", "Templates", "Tools")
or bsd::errx(1, "error updating the ports infrastructure");
$index = "$portsdir/INDEX-" . substr($release, 0, 1);
if (! -f $index) {
@@ -741,7 +741,7 @@ sub find_port_file($$) {
$master = $port;
while (!-f "$portsdir/$master/$file") {
if (!($master = $masterport{$master})) {
- bsd:errx(1, "$port has no $file");
+ bsd::errx(1, "$port has no $file");
}
}
return "$portsdir/$master/$file";