freebsd-ports/www/mod_dav_svn/Makefile
Tobias Kortkamp 5223f58a48 Mk/bsd.sanity.mk: Flag non-integer PORTREVISION/PORTEPOCH
Currently they are not checked and something like PORTREVISION=foo
or just PORTREVISION= is accepted.  Some ports use indirection via
custom variables for them so it is worthwhile to check that they
are set to sane values.

While here fix ports that currently have non-integer PORTREVISION
or PORTEPOCH.

Approved by:	portmgr (mat)
Differential Revision:	https://reviews.freebsd.org/D21225
2019-08-13 14:46:28 +00:00

32 lines
725 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
USES= apache:2.2+
.include "${.CURDIR}/../../devel/subversion/Makefile.addons"
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>