diff options
author | marcus <marcus@FreeBSD.org> | 2006-01-22 08:45:00 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-01-22 08:45:00 +0800 |
commit | 9cca2a1987a8287975629ca08a4deed2032a26d8 (patch) | |
tree | 47e55efbf60b0fb30cb5a828d03d41067d22e783 /ports-mgmt | |
parent | 4641db250c7a1dcd726198ef0b39d41ec62705d1 (diff) | |
download | freebsd-ports-gnome-9cca2a1987a8287975629ca08a4deed2032a26d8.tar.gz freebsd-ports-gnome-9cca2a1987a8287975629ca08a4deed2032a26d8.tar.zst freebsd-ports-gnome-9cca2a1987a8287975629ca08a4deed2032a26d8.zip |
Update to 2.8.3.
* Add support for PERL_{RUN,BUILD}_DEPENDS
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portlint/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index afcbbf64a3e3..c3ab94c01767 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.8.2 +PORTVERSION= 2.8.3 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index 3badcf8a5c3d..5d3f15acf4e8 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.99 2006/01/21 21:51:52 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.101 2006/01/22 00:44:29 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_C $opt_c $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -40,7 +40,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 8; -my $micro = 2; +my $micro = 3; sub l { '[{(]'; } sub r { '[)}]'; } @@ -2162,7 +2162,7 @@ MAINTAINER COMMENT # NOTE: EXEC_DEPENDS is obsolete, so it should not be listed. @linestocheck = qw( EXTRACT_DEPENDS LIB_DEPENDS PATCH_DEPENDS BUILD_DEPENDS RUN_DEPENDS -FETCH_DEPENDS DEPENDS DEPENDS_TARGET +FETCH_DEPENDS DEPENDS DEPENDS_TARGET PERL_RUN_DEPENDS PERL_BUILD_DEPENDS ); if ($tmp =~ /(LIB_|BUILD_|RUN_|FETCH_)?DEPENDS/) { |