1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/devel/cvsd/Makefile
Clement Laforet 95bff3af3c - Update to 1.0.1
Changes: This version is stable after a month of testing. Code clean-up
was done. No major bugs were found, but a minor bug was corrected. The
access mode was changed from +o to +f. Multiple or shared database files
for each channel and major updates on the documentation files. This code
is final unless some major bug is reported or huge improvements are made.
2004-02-23 10:50:52 +00:00

50 lines
1.3 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: cvsd
# Date Created: Dec 31, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= cvsd
PORTVERSION= 1.0.1
CATEGORIES= devel
MASTER_SITES= http://tiefighter.et.tudelft.nl/~arthur/cvsd/
MAINTAINER= ports@FreeBSD.org
COMMENT= CVS pserver daemon
USE_PERL5= yes
USE_GETOPT_LONG= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --with-libwrap
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
MAN5= cvsd.conf.5
MAN8= cvsd.8 cvsd-buildroot.8 cvsd-passwd.8
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cvsd ${PREFIX}/sbin/cvsd
.for file in cvsd-buildroot cvsd-passwd
${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/sbin/${file}
.endfor
${INSTALL_DATA} ${WRKSRC}/cvsd.init ${PREFIX}/etc/rc.d/cvsd.sh.sample
@${MKDIR} ${PREFIX}/etc/cvsd
${INSTALL_DATA} ${WRKSRC}/cvsd.conf-dist ${PREFIX}/etc/cvsd/cvsd.conf.sample
.for file in ${MAN5}
${INSTALL_MAN} ${WRKSRC}/${file} ${MANPREFIX}/man/man5/${file}
.endfor
.for file in ${MAN8}
${INSTALL_MAN} ${WRKSRC}/${file} ${MANPREFIX}/man/man8/${file}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>