1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/www/mod_authn_sasl/Makefile
Olli Hauer 63f3e3b0d4 - remove www/apache20 and devel/apr0
- s/USE_APACHE= 20+/USE_APACHE= 22+/
- unify s/YES/yes/
- cleanup APACHE_VERSION <= 22 usage
- add entry to MOVED

with hat apache@
2012-08-18 14:29:08 +00:00

52 lines
1.1 KiB
Makefile

# New ports collection makefile for: mod_authn_sasl
# Date created: February 16, 2009
# Whom: Joerg Pulz <Joerg.Pulz@frm2.tum.de>
#
# $FreeBSD$
#
PORTNAME= mod_authn_sasl
PORTVERSION= 1.2
CATEGORIES= www
MASTER_SITES= SF
MASTER_SITE_SUBDIR=mod-authn-sasl/mod-authn-sasl/${PORTVERSION}
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows user authentication based on libsasl2 mechanisms on apache 2.2
LICENSE= AL2
LIB_DEPENDS= sasl2:${PORTSDIR}/security/cyrus-sasl2
MAKE_JOBS_SAFE= yes
OPTIONS_DEFINE= SASLAUTHD
SASLAUTHD_DESC= cyrus-sasl2-saslauthd support
.include <bsd.port.options.mk>
USE_BZIP2= yes
USE_APACHE= 22
AP_FAST_BUILD= yes
AP_GENPLIST= yes
AP_LIB= ${LOCALBASE}/lib -lsasl2
PORTDOCS1= AUTHORS LICENSE
PORTDOCS= *
.if ${PORT_OPTIONS:MSASLAUTHD}
RUN_DEPENDS+= saslauthd:${PORTSDIR}/security/cyrus-sasl2-saslauthd
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}/
@${FIND} ${WRKSRC}/doc \( -name "*.in" -o -name "*.am" \) -delete
. for f in ${PORTDOCS1}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
. endfor
@(cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${DOCSDIR})
.endif
.include <bsd.port.mk>