mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -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
22 lines
489 B
Makefile
22 lines
489 B
Makefile
PORTNAME= mod_memcache_block
|
|
PORTVERSION= 1.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www
|
|
DIST_SUBDIR= apache2
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Apache 2.2 module to block IPs from lists stored in memcache
|
|
WWW= https://github.com/netik/mod_memcache_block
|
|
|
|
LIB_DEPENDS+= libmemcached.so:databases/libmemcached
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gaod
|
|
|
|
USES= apache
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
AP_INC= ${LOCALBASE}/include/libmemcached
|
|
AP_LIB= ${LOCALBASE}/lib -lmemcached
|
|
|
|
.include <bsd.port.mk>
|