diff options
author | marcus <marcus@FreeBSD.org> | 2010-06-16 11:53:15 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2010-06-16 11:53:15 +0800 |
commit | 801b372bef454af0b6f8085be57823d99e447d39 (patch) | |
tree | 944d5729e413b6d289be5b9081795d1fa2b88f71 /ports-mgmt | |
parent | 050ad58a502131daccc53349ad85efee23248bdd (diff) | |
download | freebsd-ports-gnome-801b372bef454af0b6f8085be57823d99e447d39.tar.gz freebsd-ports-gnome-801b372bef454af0b6f8085be57823d99e447d39.tar.zst freebsd-ports-gnome-801b372bef454af0b6f8085be57823d99e447d39.zip |
Update to 2.13.1.
* USE_APACHE=yes is now fatal
* Clean up WITH_APACHEX=X variants. WITH_APACHE=yes is now the only allowed one
PR: 146988
Submitted by: pgollucci
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portlint/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 15 |
2 files changed, 8 insertions, 9 deletions
diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index 03e3db8f66a6..b64c95b3d1a5 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.13.0 +PORTVERSION= 2.13.1 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index 0fdcbe449ab7..fa880bf2c3ae 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.196 2010/04/04 18:11:09 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.197 2010/05/30 17:12:48 marcus Exp $ # use strict; @@ -52,7 +52,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 13; -my $micro = 0; +my $micro = 1; sub l { '[{(]'; } sub r { '[)}]'; } @@ -2028,18 +2028,17 @@ ruby sed sh sort sysctl touch tr which xargs xmkmf # whole file: check for USE_APACHE=yes # if ($whole =~ /^USE_APACHE[?:]?=\s*(yes)$/m) { - &perror("WARN", $file, -1, "Use USE_APACHE=VERSION ". + &perror("FATAL", $file, -1, "Use USE_APACHE=VERSION ". "(where version can be found in \${PORTSDIR}/Mk/bsd.apache.mk) ". "instead of yes"); } # - # whole file: check for WITH_APACHE2 + # whole file: check for WITH_APACHE\d+ # - if ($whole =~ /^WITH_APACHE2[?:]?=/m) { - &perror("WARN", $file, -1, "Use WITH_APACHE=VERSION (where VERSION ". - "can be found in \${PORTSDIR}/Mk/bsd.apache.mk) instead to pull ". - "in APACHE_PORT"); + if ($whole =~ /WITH_APACHE\d+/) { + &perror("FATAL", $file, -1, "Use WITH_APACHE=yes and .if ". + "\${APACHE_VERSION} [==|<|>] 13|20|22|24"); } # |