e0c865970d
* When the -u and/or -g flags are set, cvsyncd now uses set[ug]id() instead of sete[ug]id(). Note that the pidfile is created after set[ug]id() are done. * Some performance improvements and code cleanups. Especially handling rcsfiles which contain very large number of revisions is improved.
33 lines
893 B
Makefile
33 lines
893 B
Makefile
# $OpenBSD: Makefile,v 1.34 2004/06/30 16:58:56 naddy Exp $
|
|
|
|
COMMENT= "portable CVS repository synchronization utility"
|
|
|
|
DISTNAME= cvsync-0.24.16
|
|
CATEGORIES= net
|
|
HOMEPAGE= http://www.cvsync.org/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.cvsync.org/pub/cvsync/ \
|
|
ftp://ftp.allbsd.org/pub/cvsync/
|
|
|
|
USE_GMAKE= Yes
|
|
MAKE_ENV= CVSYNC_DEFAULT_CONFIG="${SYSCONFDIR}/cvsync.conf" \
|
|
CVSYNCD_DEFAULT_CONFIG="${SYSCONFDIR}/cvsyncd.conf" \
|
|
INSTALL_MAN_OPTS="-o ${MANOWN} -g ${MANGRP} -m ${MANMODE}" \
|
|
INSTALL_BIN_OPTS="-o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${INSTALL_STRIP}"
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/cvsync
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/samples/* ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|