mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: edwin@mavetju.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_encoding
|
|
PORTVERSION= 20021209
|
|
PORTREVISION= 3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://webdav.todo.gr.jp/download/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache module for non-ASCII filename interoperability
|
|
|
|
|
|
# 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= 22+
|
|
USES= iconv
|
|
HAS_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--bindir=${PREFIX}/bin \
|
|
--sbindir=${PREFIX}/sbin \
|
|
--libexecdir=${APACHEMODDIR} \
|
|
--sysconfdir=${APACHEETCDIR} \
|
|
--includedir=${APACHEINCLUDEDIR} \
|
|
--with-apxs=${APXS}
|
|
|
|
CONFIGURE_ENV= LIBS='-L${LOCALBASE}/lib' \
|
|
PATH="${PREFIX}/bin:${PREFIX}/sbin:${PATH}"
|
|
CPPFLAGS+= -I${APACHEINCLUDEDIR} -I${LOCALBASE}/include
|
|
|
|
PLIST_FILES= ${APACHEMODDIR}/mod_encoding.so
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/apache22_patch
|
|
|
|
.if !defined(WITHOUT_ICONV_FIX)
|
|
EXTRA_PATCHES+= ${PATCHDIR}/iconv_hook-20040430.patch
|
|
.endif
|
|
|
|
.if defined(WITH_QUERYSTRING_FIX)
|
|
EXTRA_PATCHES+= ${PATCHDIR}/queryfix-patch22
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.mk>
|