aboutsummaryrefslogtreecommitdiff
path: root/misc/porteasy
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-07-21 08:30:40 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-07-21 08:30:40 +0000
commit89ea0bbd5ddb8ad4940b1d30bf4f2bfd1f1570d9 (patch)
treed2fe9389611e02c495963dfdcefd68aeb561e933 /misc/porteasy
parentff7f5d55da8d9d76e91a4a2d14372e9917d43fc3 (diff)
downloadports-89ea0bbd5ddb8ad4940b1d30bf4f2bfd1f1570d9.tar.gz
ports-89ea0bbd5ddb8ad4940b1d30bf4f2bfd1f1570d9.zip
Add support for ports/Templates; bump version number and man page date.
Notes
Notes: svn path=/head/; revision=85278
Diffstat (limited to 'misc/porteasy')
-rw-r--r--misc/porteasy/Makefile2
-rw-r--r--misc/porteasy/src/porteasy.82
-rw-r--r--misc/porteasy/src/porteasy.pl6
3 files changed, 5 insertions, 5 deletions
diff --git a/misc/porteasy/Makefile b/misc/porteasy/Makefile
index cceb64632afd..1a0429c53c57 100644
--- a/misc/porteasy/Makefile
+++ b/misc/porteasy/Makefile
@@ -8,7 +8,7 @@
#
PORTNAME= porteasy
-PORTVERSION= 2.7.8
+PORTVERSION= 2.7.9
CATEGORIES= misc
MASTER_SITES= # none
DISTFILES= # none
diff --git a/misc/porteasy/src/porteasy.8 b/misc/porteasy/src/porteasy.8
index 844342259339..f6ed5aad624d 100644
--- a/misc/porteasy/src/porteasy.8
+++ b/misc/porteasy/src/porteasy.8
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd May 23, 2003
+.Dd July 21, 2003
.Dt PORTEASY 8
.Os
.Sh NAME
diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl
index 643438774ab3..da54066dc48c 100644
--- a/misc/porteasy/src/porteasy.pl
+++ b/misc/porteasy/src/porteasy.pl
@@ -33,7 +33,7 @@ use strict;
use Fcntl;
use Getopt::Long;
-my $VERSION = "2.7.8";
+my $VERSION = "2.7.9";
my $COPYRIGHT = "Copyright (c) 2000-2003 Dag-Erling Smørgrav. " .
"All rights reserved.";
@@ -333,8 +333,8 @@ sub update_index() {
cvs("update", "-l")
or bsd::errx(1, "error updating the index file");
}
- cvs("update", "Mk")
- or bsd::errx(1, "error updating the Makefiles");
+ cvs("update", "Mk", "Templates")
+ or bsd::errx(1, "error updating the ports infrastructure");
$index = "$portsdir/INDEX-" . substr($release, 0, 1);
if (! -f $index) {
$index = "$portsdir/INDEX";