Mk/bsd.apache.mk OPTIONSFILE fix
Philip M. Gollucci
pgollucci at freebsd.org
Tue May 25 07:09:38 UTC 2010
>Submitter-Id: current-users
>Originator: Philip M. Gollucci
>Organization: RideCharge Inc.
>Confidential: no
>Synopsis: Mk/bsd.apache.mk OPTIONSFILE fix
>Severity: non-critical
>Priority: low
>Category: ports
>Class: maintainer-update
>Release: FreeBSD 9.0-CURRENT amd64
>Environment:
System: FreeBSD frieza.p6m7g8.net 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Mon Apr 26 16:20:00 EDT 2010 root at frieza.p6m7g8.net:/usr/obj/usr/src/sys/FRIEZA amd64
>Description:
As stated in prior e-mail:
141 ports are mod_ ports
80 of those use AP_FAST_BUILD and thus are auto hooked by this patch.
61 remaining are then patched to mirror the other $lang frameworks.
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
This also changes PKGNAMEPREFIX=ap\d{2}- to need to be manually requested in the port Makefile instead of automagically by Mk/bsd.apache.mk. We're also dropping back to only doing this to ports where USE_APACHE is non-optional. So i.e.: lang/php5 goes back from apXX-php5-5.3.2 -> php5-5.3.2
-exp ?
My TB should be done the 225 ports by the time I wake up tomorrow.
>How-To-Repeat:
>Fix:
--- options.diff begins here ---
Index: Mk/bsd.apache.mk
===================================================================
RCS file: /home/ncvs/ports/Mk/bsd.apache.mk,v
retrieving revision 1.23
diff -u -r1.23 bsd.apache.mk
--- Mk/bsd.apache.mk 20 May 2010 21:43:47 -0000 1.23
+++ Mk/bsd.apache.mk 25 May 2010 02:54:13 -0000
@@ -302,7 +302,10 @@
. endif
.endfor
-PKGNAMEPREFIX?= ap${APACHE_VERSION}-
+APACHE_PKGNAMEPREFIX= $ap${APACHE_VERSION}-
+.if defined(AP_FAST_BUILD)
+PKGNAMEPREFIX?= ${APACHE_PKGNAMEPREFIX}
+.endif
BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
RUN_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
Index: www/mod_accounting/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_accounting/Makefile,v
retrieving revision 1.18
diff -u -r1.18 Makefile
--- www/mod_accounting/Makefile 22 Aug 2009 00:38:12 -0000 1.18
+++ www/mod_accounting/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 6
CATEGORIES= www
MASTER_SITES= SF/mod-acct/mod-acct/${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= An Apache module that records traffic statistics into a database
Index: www/mod_auth_form/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_form/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_auth_form/Makefile 13 May 2010 00:54:56 -0000 1.5
+++ www/mod_auth_form/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 2.05
CATEGORIES= www
MASTER_SITES= http://comp.uark.edu/~ajarthu/mod_auth_form/download.php?download=v2_05/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= net at arrishq.net
Index: www/mod_auth_kerb/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_kerb/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- www/mod_auth_kerb/Makefile 22 Aug 2009 00:38:12 -0000 1.25
+++ www/mod_auth_kerb/Makefile 25 May 2010 03:07:34 -0000
@@ -12,6 +12,7 @@
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= SF/modauthkerb/${PORTNAME}/${PORTNAME}-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= An Apache module for authenticating users with Kerberos v5
Index: www/mod_auth_kerb2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_kerb2/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- www/mod_auth_kerb2/Makefile 22 Aug 2009 00:38:13 -0000 1.25
+++ www/mod_auth_kerb2/Makefile 25 May 2010 03:07:34 -0000
@@ -12,6 +12,7 @@
PORTVERSION= 5.4
CATEGORIES= www
MASTER_SITES= SF/modauthkerb/${PORTNAME}/${PORTNAME}-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= An Apache module for authenticating users with Kerberos v5
Index: www/mod_auth_mysql/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_mysql/Makefile,v
retrieving revision 1.32
diff -u -r1.32 Makefile
--- www/mod_auth_mysql/Makefile 25 Dec 2009 07:44:43 -0000 1.32
+++ www/mod_auth_mysql/Makefile 25 May 2010 03:07:34 -0000
@@ -8,6 +8,7 @@
PORTVERSION= 3.2
CATEGORIES= www
MASTER_SITES= SF/mod-auth-mysql/mod-auth-mysql/mod-auth-mysql-1.0
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Allows users to use MySQL databases for user authentication
Index: www/mod_auth_openid/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_openid/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- www/mod_auth_openid/Makefile 18 May 2010 04:05:04 -0000 1.4
+++ www/mod_auth_openid/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.4
CATEGORIES= www
MASTER_SITES= http://butterfat.net/releases/mod_auth_openid/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= zhoushuqun at gmail.com
COMMENT= An authentication module for the Apache 2 webserver with OpenID
Index: www/mod_auth_pam2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_pam2/Makefile,v
retrieving revision 1.8
diff -u -r1.8 Makefile
--- www/mod_auth_pam2/Makefile 17 May 2009 07:24:26 -0000 1.8
+++ www/mod_auth_pam2/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://pam.sourceforge.net/mod_auth_pam/dist/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-2.0-${PORTVERSION}
MAINTAINER= apache at FreeBSD.org
Index: www/mod_auth_pgsql/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_pgsql/Makefile,v
retrieving revision 1.24
diff -u -r1.24 Makefile
--- www/mod_auth_pgsql/Makefile 17 May 2009 07:24:27 -0000 1.24
+++ www/mod_auth_pgsql/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTREVISION= 4
CATEGORIES= www
MASTER_SITES= http://www.giuseppetanzilli.it/${PORTNAME}/dist/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Allows users to use PostgreSQL databases for user authentication
Index: www/mod_auth_pubtkt/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_pubtkt/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- www/mod_auth_pubtkt/Makefile 18 Jul 2009 16:50:55 -0000 1.1
+++ www/mod_auth_pubtkt/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.5
CATEGORIES= www
MASTER_SITES= https://neon1.net/mod_auth_pubtkt/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= mod_auth_pubtkt-${PORTVERSION}
MAINTAINER= mk at neon1.net
Index: www/mod_auth_xradius/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_auth_xradius/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- www/mod_auth_xradius/Makefile 21 May 2009 20:45:26 -0000 1.2
+++ www/mod_auth_xradius/Makefile 25 May 2010 03:07:34 -0000
@@ -8,6 +8,7 @@
PORTVERSION= 0.4.6
CATEGORIES= www
MASTER_SITES= http://www.outoforder.cc/downloads/mod_auth_xradius/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= mwlucas at FreeBSD.org
COMMENT= Enables RADIUS authentication
Index: www/mod_backhand/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_backhand/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- www/mod_backhand/Makefile 17 May 2009 07:24:28 -0000 1.14
+++ www/mod_backhand/Makefile 25 May 2010 03:08:45 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www
MASTER_SITES= http://mirrors.omniti.com/mod_backhand/ \
http://people.FreeBSD.org/~seanc/ports/mod_backhand/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache module that allows seamless redirection and load balancing of HTTP requests
Index: www/mod_bandwidth/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_bandwidth/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- www/mod_bandwidth/Makefile 17 May 2009 07:24:28 -0000 1.12
+++ www/mod_bandwidth/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 2.1.0
CATEGORIES= www
MASTER_SITES= http://potatohead.estat.com/FreeBSD/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
#Orignal locations: ftp://ftp.cohprog.com/pub/apache/module/1.3.0/mod_bandwidth.c
# ftp://ftp.cohprog.com/pub/apache/module/cleanlink.pl
DIST_SUBDIR= apache
Index: www/mod_cband/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_cband/Makefile,v
retrieving revision 1.16
diff -u -r1.16 Makefile
--- www/mod_cband/Makefile 17 May 2009 07:24:29 -0000 1.16
+++ www/mod_cband/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.sfr-fresh.com/unix/privat/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:C/_/-/}-${PORTVERSION}
EXTRACT_SUFX= .tgz
DIST_SUBDIR= apache2
Index: www/mod_clamav/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_clamav/Makefile,v
retrieving revision 1.24
diff -u -r1.24 Makefile
--- www/mod_clamav/Makefile 18 May 2010 04:07:51 -0000 1.24
+++ www/mod_clamav/Makefile 25 May 2010 03:09:04 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www security
MASTER_SITES= http://software.othello.ch/mod_clamav/ \
http://www.kommunity.net/download/mod_clamav/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= tmueko at kommunity.net
COMMENT= Scans content delivered by the Apache20 proxy module for viruses
Index: www/mod_cplusplus/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_cplusplus/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- www/mod_cplusplus/Makefile 13 May 2010 00:54:56 -0000 1.12
+++ www/mod_cplusplus/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 1.5.4
CATEGORIES= www
MASTER_SITES= SF/modcplusplus/modcplusplus/${PORTNAME}-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache module for loading C++ objects as handlers
Index: www/mod_cvs2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_cvs2/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- www/mod_cvs2/Makefile 17 May 2009 07:24:30 -0000 1.4
+++ www/mod_cvs2/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://resare.com/noa/mod_cvs/dist/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= A module that makes Apache 2 CVS aware
Index: www/mod_dav/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_dav/Makefile,v
retrieving revision 1.23
diff -u -r1.23 Makefile
--- www/mod_dav/Makefile 17 May 2009 07:24:30 -0000 1.23
+++ www/mod_dav/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 4
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/${PORTNAME}/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-${PORTVERSION}-1.3.6
MAINTAINER= apache at FreeBSD.org
Index: www/mod_dnssd/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_dnssd/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- www/mod_dnssd/Makefile 18 May 2010 04:07:51 -0000 1.9
+++ www/mod_dnssd/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 6
CATEGORIES= www
MASTER_SITES= http://0pointer.de/lennart/projects/mod_dnssd/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= gnome at FreeBSD.org
COMMENT= An Apache module that provides DNS-SD capabilities
Index: www/mod_dtcl/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_dtcl/Makefile,v
retrieving revision 1.30
diff -u -r1.30 Makefile
--- www/mod_dtcl/Makefile 21 Dec 2009 13:07:55 -0000 1.30
+++ www/mod_dtcl/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www tcl
MASTER_SITES= http://tcl.apache.org/mod_dtcl/download/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= mi at aldan.algebra.com
COMMENT= Embeds a TCL8 interpreter in the Apache server
Index: www/mod_encoding/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_encoding/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- www/mod_encoding/Makefile 21 May 2009 20:45:27 -0000 1.7
+++ www/mod_encoding/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://webdav.todo.gr.jp/download/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= edwin at mavetju.org
COMMENT= Apache module for non-ascii filename interoperability
Index: www/mod_fcgid/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_fcgid/Makefile,v
retrieving revision 1.19
diff -u -r1.19 Makefile
--- www/mod_fcgid/Makefile 5 Feb 2010 04:10:23 -0000 1.19
+++ www/mod_fcgid/Makefile 25 May 2010 03:09:24 -0000
@@ -10,6 +10,7 @@
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD}
MASTER_SITE_SUBDIR= ${PORTNAME}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= hemi at puresimplicity.net
Index: www/mod_fileiri/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_fileiri/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- www/mod_fileiri/Makefile 5 Sep 2009 04:44:21 -0000 1.4
+++ www/mod_fileiri/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 1.15
CATEGORIES= www
MASTER_SITES= LOCAL/chinsan
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DIST_SUBDIR= apache2
MAINTAINER= apache at FreeBSD.org
Index: www/mod_gzip/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_gzip/Makefile,v
retrieving revision 1.17
diff -u -r1.17 Makefile
--- www/mod_gzip/Makefile 22 Aug 2009 00:38:14 -0000 1.17
+++ www/mod_gzip/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 1.3.26.1a
CATEGORIES= www
MASTER_SITES= SF/mod-gzip/mod-gzip13x/${PORTNAME}-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
EXTRACT_SUFX= .tgz
MAINTAINER= ale at FreeBSD.org
Index: www/mod_h264_streaming/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_h264_streaming/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- www/mod_h264_streaming/Makefile 18 May 2010 04:07:51 -0000 1.4
+++ www/mod_h264_streaming/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://h264.code-shop.com/download/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= apache_${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= apache22
Index: www/mod_jk/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_jk/Makefile,v
retrieving revision 1.44
diff -u -r1.44 Makefile
--- www/mod_jk/Makefile 3 Mar 2010 12:14:06 -0000 1.44
+++ www/mod_jk/Makefile 25 May 2010 03:09:38 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_APACHE}
MASTER_SITE_SUBDIR= tomcat/tomcat-connectors/jk/source/jk-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= tomcat-connectors-${PORTVERSION}-src
MAINTAINER?= girgen at FreeBSD.org
Index: www/mod_layout/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_layout/Makefile,v
retrieving revision 1.21
diff -u -r1.21 Makefile
--- www/mod_layout/Makefile 17 May 2009 07:24:31 -0000 1.21
+++ www/mod_layout/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 3.4
CATEGORIES= www
MASTER_SITES= http://download.tangent.org/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache module to wrap served pages with a header and/or footer
Index: www/mod_layout2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_layout2/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- www/mod_layout2/Makefile 17 May 2009 07:24:31 -0000 1.12
+++ www/mod_layout2/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 4.1
CATEGORIES= www
MASTER_SITES= http://download.tangent.org/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache2 module to wrap served pages with a header and/or footer
Index: www/mod_layout22/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_layout22/Makefile,v
retrieving revision 1.18
diff -u -r1.18 Makefile
--- www/mod_layout22/Makefile 18 May 2010 04:07:51 -0000 1.18
+++ www/mod_layout22/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://download.tangent.org/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache2.2 module to wrap served pages with a header and/or footer
Index: www/mod_limitipconn/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_limitipconn/Makefile,v
retrieving revision 1.11
diff -u -r1.11 Makefile
--- www/mod_limitipconn/Makefile 21 May 2009 20:45:30 -0000 1.11
+++ www/mod_limitipconn/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://dominia.org/djao/limit/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= ychsiao at ychsiao.org
COMMENT= Limit the number of simultaneous connections from a single IP address
Index: www/mod_limitipconn2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_limitipconn2/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- www/mod_limitipconn2/Makefile 21 May 2009 20:45:30 -0000 1.7
+++ www/mod_limitipconn2/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.23
CATEGORIES= www
MASTER_SITES= http://dominia.org/djao/limit/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DIST_SUBDIR= apache2
MAINTAINER= ychsiao at ychsiao.org
Index: www/mod_line_edit/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_line_edit/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_line_edit/Makefile 5 Sep 2009 04:44:21 -0000 1.5
+++ www/mod_line_edit/Makefile 25 May 2010 03:07:34 -0000
@@ -11,6 +11,7 @@
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://apache.webthing.com/mod_line_edit/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTFILES= mod_line_edit.c
MAINTAINER= apache at FreeBSD.org
Index: www/mod_log_dbd/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_log_dbd/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- www/mod_log_dbd/Makefile 18 May 2010 04:07:52 -0000 1.6
+++ www/mod_log_dbd/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTREVISION= 3
CATEGORIES= www databases
MASTER_SITES= http://bfoz.net/projects/${PORTNAME}/release/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= bfoz at bfoz.net
COMMENT= Uses APR DBD to store Apache access logs in a database
Index: www/mod_log_firstbyte/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_log_firstbyte/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- www/mod_log_firstbyte/Makefile 21 May 2009 20:45:31 -0000 1.6
+++ www/mod_log_firstbyte/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 1.01
CATEGORIES= www
MASTER_SITES= http://mod-log-firstbyte.googlecode.com/svn/trunk/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTFILES= ${PORTNAME}.c readme.txt
MAINTAINER= leeym at FreeBSD.org
Index: www/mod_log_sql/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_log_sql/Makefile,v
retrieving revision 1.16
diff -u -r1.16 Makefile
--- www/mod_log_sql/Makefile 21 May 2009 20:45:31 -0000 1.16
+++ www/mod_log_sql/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTREVISION= 3
CATEGORIES= www databases
MASTER_SITES= http://www.outoforder.cc/downloads/${PORTNAME}/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= lev at FreeBSD.org
COMMENT= Allows Apache to log to a MySQL database
Index: www/mod_log_sql2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_log_sql2/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- www/mod_log_sql2/Makefile 17 May 2009 07:24:32 -0000 1.12
+++ www/mod_log_sql2/Makefile 25 May 2010 03:07:34 -0000
@@ -8,6 +8,7 @@
PORTVERSION= 1.101
CATEGORIES= www databases
MASTER_SITES= http://www.outoforder.cc/downloads/${PORTNAME}/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Allows Apache to log to a MySQL database
Index: www/mod_log_sql2-dtc/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_log_sql2-dtc/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- www/mod_log_sql2-dtc/Makefile 18 May 2010 04:07:52 -0000 1.13
+++ www/mod_log_sql2-dtc/Makefile 25 May 2010 03:17:03 -0000
@@ -9,6 +9,7 @@
PORTREVISION= 2
CATEGORIES= www databases
MASTER_SITES= http://www.outoforder.cc/downloads/${PORTNAME}/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
PKGNAMESUFFIX= -dtc
MAINTAINER= apache at FreeBSD.org
Index: www/mod_memcache/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_memcache/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_memcache/Makefile 18 May 2010 04:07:52 -0000 1.5
+++ www/mod_memcache/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 3
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= gslin at gslin.org
COMMENT= Apache 2.2.x module to manage apr_memcache connections
Index: www/mod_mono/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_mono/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- www/mod_mono/Makefile 18 May 2010 04:07:52 -0000 1.7
+++ www/mod_mono/Makefile 25 May 2010 03:07:34 -0000
@@ -11,6 +11,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/${PORTNAME}/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= mono at FreeBSD.org
COMMENT= Apache module for serving ASP.NET applications
Index: www/mod_mp3/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_mp3/Makefile,v
retrieving revision 1.32
diff -u -r1.32 Makefile
--- www/mod_mp3/Makefile 17 May 2009 07:24:33 -0000 1.32
+++ www/mod_mp3/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www audio
MASTER_SITES= http://download.tangent.org/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache module to allow MP3 streaming
Index: www/mod_musicindex/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_musicindex/Makefile,v
retrieving revision 1.24
diff -u -r1.24 Makefile
--- www/mod_musicindex/Makefile 21 Dec 2009 08:49:59 -0000 1.24
+++ www/mod_musicindex/Makefile 25 May 2010 03:17:14 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www audio
MASTER_SITES= http://www.parisc-linux.org/~varenet/musicindex/ \
http://depot.fsck.ch/mirror/distfiles/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Apache module that allows downloading and streaming of audio
Index: www/mod_ntlm/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_ntlm/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- www/mod_ntlm/Makefile 22 Aug 2009 00:38:14 -0000 1.7
+++ www/mod_ntlm/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.4
CATEGORIES= www
MASTER_SITES= SF/modntlm/modntlm/${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= skv at FreeBSD.org
COMMENT= NTLM authentication module for the Apache webserver
Index: www/mod_ntlm2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_ntlm2/Makefile,v
retrieving revision 1.8
diff -u -r1.8 Makefile
--- www/mod_ntlm2/Makefile 22 Aug 2009 00:38:14 -0000 1.8
+++ www/mod_ntlm2/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= SF/modntlm/modntlm2/${PORTNAME}-${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
EXTRACT_SUFX= .tgz
MAINTAINER= admin at lissyara.su
Index: www/mod_perl/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_perl/Makefile,v
retrieving revision 1.44
diff -u -r1.44 Makefile
--- www/mod_perl/Makefile 29 Apr 2010 17:30:24 -0000 1.44
+++ www/mod_perl/Makefile 25 May 2010 03:17:24 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= ModPerl/GOZER
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= Embeds a Perl interpreter in the Apache server
Index: www/mod_perl2/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_perl2/Makefile,v
retrieving revision 1.71
diff -u -r1.71 Makefile
--- www/mod_perl2/Makefile 19 May 2010 19:18:35 -0000 1.71
+++ www/mod_perl2/Makefile 25 May 2010 03:17:31 -0000
@@ -12,6 +12,7 @@
CATEGORIES= www perl5
MASTER_SITES= http://perl.apache.org/dist/ \
http://perl.apache.org/dist/old/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
PKGNAMESUFFIX= 2
MAINTAINER= apache at FreeBSD.org
Index: www/mod_proctitle/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_proctitle/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_proctitle/Makefile 24 May 2010 00:19:21 -0000 1.5
+++ www/mod_proctitle/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.3
CATEGORIES= www
MASTER_SITES= ftp://ftp.springdaemons.com/soft/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= stas at FreeBSD.org
COMMENT= Set httpd process titles to reflect currently processed request
Index: www/mod_proxy_xml/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_proxy_xml/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_proxy_xml/Makefile 5 Sep 2009 04:44:21 -0000 1.5
+++ www/mod_proxy_xml/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTVERSION= 0.1
CATEGORIES= www
MASTER_SITES= http://apache.webthing.com/svn/apache/filters/xmlns/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTFILES= xmlns.h mod_proxy_xml.c
MAINTAINER= apache at FreeBSD.org
Index: www/mod_pubcookie/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_pubcookie/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- www/mod_pubcookie/Makefile 21 May 2009 20:42:56 -0000 1.4
+++ www/mod_pubcookie/Makefile 25 May 2010 03:17:50 -0000
@@ -9,7 +9,7 @@
PORTVERSION= 3.3.0
CATEGORIES= www security
MASTER_SITES= http://pubcookie.org/downloads/
-PKGNAMEPREFIX= mod_
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}mod_
DISTNAME= ${PORTNAME}-3.3.0a
MAINTAINER= brooks at FreeBSD.org
Index: www/mod_python/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_python/Makefile,v
retrieving revision 1.31
diff -u -r1.31 Makefile
--- www/mod_python/Makefile 28 Apr 2010 22:24:38 -0000 1.31
+++ www/mod_python/Makefile 25 May 2010 03:17:56 -0000
@@ -10,6 +10,7 @@
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD}
MASTER_SITE_SUBDIR= modpython
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
EXTRACT_SUFX= .tgz
DIST_SUBDIR= python
Index: www/mod_python3/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_python3/Makefile,v
retrieving revision 1.44
diff -u -r1.44 Makefile
--- www/mod_python3/Makefile 28 Apr 2010 22:24:39 -0000 1.44
+++ www/mod_python3/Makefile 25 May 2010 03:18:00 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD}
MASTER_SITE_SUBDIR= modpython
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
EXTRACT_SUFX= .tgz
MAINTAINER= apache at FreeBSD.org
Index: www/mod_ruby/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_ruby/Makefile,v
retrieving revision 1.63
diff -u -r1.63 Makefile
--- www/mod_ruby/Makefile 28 Mar 2010 07:29:46 -0000 1.63
+++ www/mod_ruby/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 1
CATEGORIES= www ruby
MASTER_SITES= http://www.modruby.net/archive/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= dinoex at FreeBSD.org
Index: www/mod_scgi/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_scgi/Makefile,v
retrieving revision 1.19
diff -u -r1.19 Makefile
--- www/mod_scgi/Makefile 21 May 2009 20:45:33 -0000 1.19
+++ www/mod_scgi/Makefile 25 May 2010 03:18:27 -0000
@@ -10,7 +10,7 @@
CATEGORIES= www
MASTER_SITES= http://quixote.python.ca/releases/ \
http://dryice.name/computer/FreeBSD/distfiles/
-PKGNAMEPREFIX= mod_
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}mod_
DISTNAME= scgi-${PORTVERSION:S/.a/a/}
MAINTAINER= dryice at dryice.name
Index: www/mod_security/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_security/Makefile,v
retrieving revision 1.39
diff -u -r1.39 Makefile
--- www/mod_security/Makefile 18 May 2010 04:07:53 -0000 1.39
+++ www/mod_security/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTREVISION= 3
CATEGORIES= www security
MASTER_SITES= SF/mod-security/modsecurity-apache/${PORTVERSION}
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:S/_//:S/2//}-apache_${PORTVERSION}
MAINTAINER= araujo at FreeBSD.org
Index: www/mod_sed/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_sed/Makefile,v
retrieving revision 1.10
diff -u -r1.10 Makefile
--- www/mod_sed/Makefile 17 May 2009 07:24:33 -0000 1.10
+++ www/mod_sed/Makefile 25 May 2010 03:07:34 -0000
@@ -10,6 +10,7 @@
PORTVERSION= 0.1
CATEGORIES= www
MASTER_SITES= http://www.happygiraffe.net/dist/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= apache at FreeBSD.org
COMMENT= An apache module that embeds a copy of the sed(1) command
Index: www/mod_transform/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_transform/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- www/mod_transform/Makefile 2 Aug 2009 19:36:01 -0000 1.7
+++ www/mod_transform/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 0.6.0
CATEGORIES= www
MASTER_SITES= http://www.outoforder.cc/downloads/mod_transform/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= stan at stormier.net
COMMENT= An XSLT and XIncludes Filter module for Apache 2.0
Index: www/mod_webapp/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_webapp/Makefile,v
retrieving revision 1.28
diff -u -r1.28 Makefile
--- www/mod_webapp/Makefile 18 May 2010 04:05:04 -0000 1.28
+++ www/mod_webapp/Makefile 25 May 2010 03:18:40 -0000
@@ -11,6 +11,7 @@
CATEGORIES= www
MASTER_SITES= http://jakarta.apache.org/%SUBDIR%/
MASTER_SITE_SUBDIR= builds/jakarta-tomcat-4.0/release/v${TOMCAT_RELEASE}/src
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTNAME= jakarta-tomcat-connectors-${CONNECTORS_RELEASE}-src
DIST_SUBDIR= mod_webapp
Index: www/mod_wsgi/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_wsgi/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- www/mod_wsgi/Makefile 19 May 2010 10:50:34 -0000 1.13
+++ www/mod_wsgi/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 2.8
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
http://apt.douglasthrift.net/files/${PORTNAME}/ \
http://code.douglasthrift.net/files/${PORTNAME}/
Index: www/mod_wsgi3/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_wsgi3/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- www/mod_wsgi3/Makefile 10 Mar 2010 13:04:10 -0000 1.14
+++ www/mod_wsgi3/Makefile 25 May 2010 03:07:34 -0000
@@ -9,6 +9,7 @@
PORTVERSION= 3.2
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
http://apt.douglasthrift.net/files/${PORTNAME}/ \
http://code.douglasthrift.net/files/${PORTNAME}/
Index: www/mod_xmlns/Makefile
===================================================================
RCS file: /home/ncvs/ports/www/mod_xmlns/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- www/mod_xmlns/Makefile 5 Sep 2009 04:44:21 -0000 1.5
+++ www/mod_xmlns/Makefile 25 May 2010 03:18:59 -0000
@@ -10,6 +10,7 @@
PORTVERSION= 0.97
CATEGORIES= www
MASTER_SITES= http://apache.webthing.com/svn/apache/filters/xmlns/
+PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
DISTFILES= xmlns.h mod_xmlns.c
MAINTAINER= apache at FreeBSD.org
--- options.diff ends here ---
More information about the freebsd-apache
mailing list