mirror of
https://git.freebsd.org/ports.git
synced 2025-05-06 02:47:37 -04:00
apache22 and apache25 had been removed a long time ago however the apache.mk file has never been refactored and is out of sync from the file Mk/bsd.default-versions.mk. These changes refactors the removals of the older versions. In addition: - Move some keywords like USE_APACHE, USE_APACHE_BUILD, USE_APACHE_RUN from SANITY_DEPRECATED to SANITY_UNSUPPORTED - Remove apache versions from ports Makefiles as currently there is only one available version in the tree. However the version checks are still valid and should work flawlessly whenever a new version is added. For example USES=apache:2.2+ are simply replaced with USES=apache. As currently there are no other versions available for test this could not be checked on it's own ground. - Update FOO_USE=APACHE=yes to FOO_USES=apache - Remove trailing whitespaces Approved by: portmgr Differential Revision: https://reviews.freebsd.org/D38113
30 lines
721 B
Makefile
30 lines
721 B
Makefile
PORTNAME= mod_mpm_itk
|
|
PORTVERSION= 2.4.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://mpm-itk.sesse.net/ \
|
|
http://lukasz.wasikowski.net/files/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
DISTNAME= mpm-itk-2.4.7-04
|
|
|
|
MAINTAINER= lukasz@wasikowski.net
|
|
COMMENT= Run each vhost under a separate uid and gid
|
|
WWW= http://mpm-itk.sesse.net/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= apache
|
|
GNU_CONFIGURE= yes
|
|
|
|
AP_FAST_BUILD= yes
|
|
SRC_FILE= *.c
|
|
|
|
SUB_FILES+= ${APMOD_FILE}.sample
|
|
APMOD_FILE= 200_${PORTNAME}.conf
|
|
SUB_LIST+= APMOD_FILE=${APMOD_FILE}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
|
|
${INSTALL_DATA} ${WRKDIR}/${APMOD_FILE}.sample ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
|
|
|
|
.include <bsd.port.mk>
|