diff options
author | des <des@FreeBSD.org> | 2003-07-21 16:30:40 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-07-21 16:30:40 +0800 |
commit | de72bf4b64ad6d42822889a029401aad0e61c831 (patch) | |
tree | 6092c30e35e8f1f6752c4740a56ad1e6b3328cbf /ports-mgmt | |
parent | c03a9841eb3a13672a13d5d90faa7175497299ea (diff) | |
download | freebsd-ports-gnome-de72bf4b64ad6d42822889a029401aad0e61c831.tar.gz freebsd-ports-gnome-de72bf4b64ad6d42822889a029401aad0e61c831.tar.zst freebsd-ports-gnome-de72bf4b64ad6d42822889a029401aad0e61c831.zip |
Add support for ports/Templates; bump version number and man page date.
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/porteasy/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/porteasy/src/porteasy.8 | 2 | ||||
-rw-r--r-- | ports-mgmt/porteasy/src/porteasy.pl | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ports-mgmt/porteasy/Makefile b/ports-mgmt/porteasy/Makefile index cceb64632afd..1a0429c53c57 100644 --- a/ports-mgmt/porteasy/Makefile +++ b/ports-mgmt/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/ports-mgmt/porteasy/src/porteasy.8 b/ports-mgmt/porteasy/src/porteasy.8 index 844342259339..f6ed5aad624d 100644 --- a/ports-mgmt/porteasy/src/porteasy.8 +++ b/ports-mgmt/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/ports-mgmt/porteasy/src/porteasy.pl b/ports-mgmt/porteasy/src/porteasy.pl index 643438774ab3..da54066dc48c 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.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"; |