freebsd-ports/www/mod_cvs2/Makefile
Clement Laforet 0de24ae133 Add mod_cvs-0.5.91 (known as mod_cvs2), apache2 version of mod_cvs.
mod_cvs recognizes if the files in your webtree are checked out
from a CVS repository. If so, it checks if the file is up-to-date
and, if not, updates it.
Another neat feature of mod_cvs is the date-checkout feature. You
can specify a date in the URI that gets passed to CVS, which checks
out an older revision of the requested file and sends it to the
user.

WWW: http://resare.com/noa/mod_cvs/

Approved by:    erwin (mentor) (implicitly)
2004-01-07 00:44:11 +00:00

36 lines
793 B
Makefile

# New ports collection makefile for: mod_cvs2
# Date created: 6 January 2003
# Whom: Clement Laforet <clement@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_cvs
PORTVERSION= 0.5.91
CATEGORIES= www
MASTER_SITES= http://resare.com/noa/mod_cvs/dist/
MAINTAINER= clement@FreeBSD.org
COMMENT= A module that makes Apache 2 CVS aware
USE_APACHE= yes
WITH_APACHE2= yes
LATEST_LINK= mod_cvs2
PORTDOCS= reference.html guide.html README
do-build:
@(cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c)
do-install:
@(cd ${WRKSRC} && ${APXS} -i -A -n ${PORTNAME:S/mod_//} ${PORTNAME}.la)
.if !defined (NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
. for f in ${PORTDOCS:NREADME}
@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>