1d4216996a
* cvsup2cvsync, which is a utility to convert a CVSup(R) scanfile into a cvsync counterpart, has been added. When the upstream server is using CVSup and you want to redistribute the contents using CVSync, this tool is your friend. * Support poll() instead of select() if available (server/client). * cvsync(1) now supports "refuse" file. Using the refuse file, you can prevent files/directories in a collection from adding/updating/removing on the client side.
33 lines
892 B
Makefile
33 lines
892 B
Makefile
# $OpenBSD: Makefile,v 1.29 2003/10/29 14:32:47 naddy Exp $
|
|
|
|
COMMENT= "portable CVS repository synchronization utility"
|
|
|
|
DISTNAME= cvsync-0.24.9
|
|
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>
|