c55dec9048
if the module is installed but not activated. From Mikolaj Kucharski with help from halex@, looks good to halex.
35 lines
732 B
Makefile
35 lines
732 B
Makefile
# $OpenBSD: Makefile,v 1.12 2011/09/17 10:29:44 sthen Exp $
|
|
|
|
COMMENT= Apache module that provides randomized services
|
|
|
|
REVISION= 7
|
|
DISTNAME= mod_random-1.4
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://tangent.org/
|
|
MASTER_SITES= http://download.tangent.org/
|
|
MODULES+= apache-module
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODAPACHE_NAME= random
|
|
|
|
NO_REGRESS= Yes
|
|
APXS= /usr/sbin/apxs
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${APXS} -c -o mod_random.so mod_random.c
|
|
@${MODAPACHE_CREATE_ENABLE_SCRIPT}
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mod_random
|
|
${INSTALL_DATA} ${WRKSRC}/faq.html ${PREFIX}/share/doc/mod_random
|
|
${MODAPACHE_INSTALL}
|
|
|
|
.include <bsd.port.mk>
|