335f8cb35d
in Mk/bsd.ports.mk due to ordering in Mk/bsd.port.mk. This causes OPTIONSFILE to be incorrectly set during some make phases as a result of the recent PKGNAMEPREFIX for apache ports. 'Revert' some of the PKGNAMEPREFIX changes for apXX-. - Must be manually requested in tbe port Makefile either by a) AP_FAST_BUILD=yes b) PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} - Going forward, we will only do this for ports where WITH_APACHE is NOT optional, but required. mod_* ports are a good fit. 141 ports are mod_ ports 80 of those use AP_FAST_BUILD and thus are auto hooked by this patch [a]. 61 remaining are then patched to mirror the other $lang frameworks [b]. PR: ports/146956 Reported by: Hans F. Nordhaug <Hans.F.Nordhaug@hiMolde.no>, several Discussed with: pav, itectu on #bsdports Tested by: P6 TB run Approved by: portmgr (pav)
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
# New ports collection makefile for: mod_encoding
|
|
# Date created: Thursday 13 November 2003
|
|
# Whom: edwin@mavetju.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_encoding
|
|
PORTVERSION= 20021209
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://webdav.todo.gr.jp/download/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= Apache module for non-ascii filename interoperability
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
# This port will work with the following version of Apache and anything newer.
|
|
# Mostly because of the dependency of mod_dav.
|
|
#APACHE_VERSION= 1.3.6
|
|
|
|
USE_APACHE= 1.3+
|
|
USE_ICONV= yes
|
|
HAS_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--bindir=${PREFIX}/bin \
|
|
--sbindir=${PREFIX}/sbin \
|
|
--libexecdir=${APACHEMODDIR} \
|
|
--sysconfdir=${APACHEETCDIR} \
|
|
--includedir=${APACHEINCLUDEDIR} \
|
|
--with-apxs=${APXS}
|
|
|
|
CONFIGURE_ENV= CPPFLAGS='-I${APACHEINCLUDEDIR} -I${LOCALBASE}/include' \
|
|
LIBS='-L${LOCALBASE}/lib' \
|
|
PATH="${PREFIX}/bin:${PREFIX}/sbin:${PATH}"
|
|
|
|
PLIST_FILES= ${APACHEMODDIR}/mod_encoding.so
|
|
|
|
.if ${APACHE_VERSION} == 20
|
|
EXTRA_PATCHES= ${PATCHDIR}/apache20_patch
|
|
.elif ${APACHE_VERSION} >= 21
|
|
EXTRA_PATCHES= ${PATCHDIR}/apache22_patch
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_ICONV_FIX)
|
|
EXTRA_PATCHES+= ${PATCHDIR}/iconv_hook-20040430.patch
|
|
.endif
|
|
|
|
.if defined(WITH_QUERYSTRING_FIX)
|
|
.if ${APACHE_VERSION} <= 20
|
|
EXTRA_PATCHES+= ${PATCHDIR}/queryfix-patch13
|
|
.elif ${APACHE_VERSION} >= 21
|
|
EXTRA_PATCHES+= ${PATCHDIR}/queryfix-patch22
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|