1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/www/mod_dav_svn/Makefile
Alexey Dokuchaev 17342290d7 - Remove trailing dot in COMMENT and/or reword it accordingly
- Prefer standard option descriptions, and trim one long line
2016-10-28 16:00:45 +00:00

42 lines
915 B
Makefile

# Created by: lev@FreeBSD.org
# $FreeBSD$
PORTNAME= mod_dav_svn
DISTNAME= subversion-${PORTVERSION}
CATEGORIES= www
MAINTAINER= lev@FreeBSD.org
COMMENT= Apache module for subversion serving
.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 18
MASTERDIR= ${.CURDIR}/../../devel/subversion18
.else
MASTERDIR= ${.CURDIR}/../../devel/subversion
.endif
PKGDIR= ${.CURDIR}
SVN_BUILD_ADDONS= yes
.include "${MASTERDIR}/Makefile.common"
USE_APACHE= 22+
CONFIGURE_ARGS+= --with-apxs=${APXS} \
--with-apache-libexecdir \
--without-gnome-keyring \
--without-kwallet
SUB_FILES+= 220_subversion.conf.sample
PLIST_SUB+= SED=${SED}
ALL_TARGET= apache-mod
INSTALL_TARGET= install-mods-shared
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
${INSTALL_DATA} ${WRKDIR}/220_subversion.conf.sample \
${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
.include <bsd.port.post.mk>