diff --git a/devel/portlint/Makefile b/devel/portlint/Makefile index 90ff590b6e6f..c688f9e8f724 100644 --- a/devel/portlint/Makefile +++ b/devel/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.4.1 +PORTVERSION= 2.4.2 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl index b8a3238d6f15..502d9336f566 100644 --- a/devel/portlint/src/portlint.pl +++ b/devel/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $Id: portlint.pl,v 1.6 2003/07/28 20:20:38 marcus Exp $ +# $Id: portlint.pl,v 1.8 2003/08/15 04:59:05 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_c $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -30,7 +30,7 @@ my ($err, $warn); my ($extrafile, $parenwarn, $committer, $verbose, $usetabs, $newport); my $contblank; my $portdir; -my $makeenv; +my $makeenv = ""; $err = $warn = 0; $extrafile = $parenwarn = $committer = $verbose = $usetabs = $newport = 0; @@ -40,7 +40,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 4; -my $micro = 1; +my $micro = 2; sub l { '[{(]'; } sub r { '[)}]'; } @@ -60,6 +60,7 @@ my $mancompress = 1; my $manstrict = 0; my $newxdef = 1; my $automan = 1; +my $autoinfo = 1; my $manchapters = '123456789ln'; my $localbase = '/usr/local'; @@ -115,15 +116,15 @@ $verbose = 1 if $opt_v; $newport = 1 if $opt_N || $opt_A; $usetabs = 1 if $opt_t || $opt_A; $contblank = $opt_B if $opt_B; -$makeenv = $opt_M; +$makeenv = $opt_M if $opt_M; $portdir = $ARGV[0] ? $ARGV[0] : '.'; # OS dependent configs -# os portsdir rcsid mplist ldcfg plist-rcsid mancompresss strict localbase newxdef automan +# os portsdir rcsid mplist ldcfg plist-rcsid mancompresss strict localbase newxdef automan autoinfo my @osdep = split(/\n/, <