diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-02-02 21:17:40 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-02-02 21:17:40 +0000 |
commit | 9bf9023ee492c2941ebb14802da2ecd07231413f (patch) | |
tree | 799a302625a94f0639b52e667220acda4289b19e /devel/portlint | |
parent | o Correct regexps after previous switch from PERL to USE_REINPLACE (diff) |
Let the PORTSDIR environment variable override our defaults.
Approved by: mharo (maintainer)
Notes
Notes:
svn path=/head/; revision=74533
Diffstat (limited to 'devel/portlint')
-rw-r--r-- | devel/portlint/Makefile | 2 | ||||
-rw-r--r-- | devel/portlint/src/portlint.1 | 8 | ||||
-rw-r--r-- | devel/portlint/src/portlint.pl | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/devel/portlint/Makefile b/devel/portlint/Makefile index 151e11c06857..ea92a34f05e1 100644 --- a/devel/portlint/Makefile +++ b/devel/portlint/Makefile @@ -9,7 +9,7 @@ PORTNAME= portlint PORTVERSION= 2.3.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/devel/portlint/src/portlint.1 b/devel/portlint/src/portlint.1 index 904157d9e90b..b1e9a8e039ef 100644 --- a/devel/portlint/src/portlint.1 +++ b/devel/portlint/src/portlint.1 @@ -125,14 +125,18 @@ on .Ox .Pc .It Pa /usr/ports/* -port collection +ports collection .Po .Pa /usr/pkgsrc/* on .Nx / .Ox -.Pc +.Pc ; +can be overriden by setting the +.Va PORTSDIR +environment variable. + .Sh AUTHORS .An Michael Haro Aq mharo@FreeBSD.org .An Jun-ichiro Hagino Aq itojun@itojun.org diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl index 08b13be587c8..8dfd2de84105 100644 --- a/devel/portlint/src/portlint.pl +++ b/devel/portlint/src/portlint.pl @@ -135,6 +135,10 @@ foreach my $i (@osdep) { last; } } + +# The PORTSDIR environment variable overrides our defaults. +$portsdir = $ENV{PORTSDIR} if ( defined $ENV{'PORTSDIR'} ); + if ($verbose) { print "OK: config: portsdir: \"$portsdir\" ". "rcsidstr: \"$rcsidstr\" ". |