diff options
author | fjoe <fjoe@FreeBSD.org> | 2004-01-25 15:27:24 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2004-01-25 15:27:24 +0000 |
commit | e0b3d0520244e86a4352847a1b0ae2c62d7405e3 (patch) | |
tree | 665a7518112a506095e24905df4629d24ce2e1e1 /devel/cvsnt/Makefile | |
parent | a0fa29a93292c6af9383683c06c2ed6155f8818f (diff) | |
download | FreeBSD-ports-e0b3d0520244e86a4352847a1b0ae2c62d7405e3.zip FreeBSD-ports-e0b3d0520244e86a4352847a1b0ae2c62d7405e3.tar.gz |
New port: cvsnt.
CVSNT is a CVS clone. CVSNT features are:
* Merge tracking via MergePoint attribute.
* Support for :sspi: and :sserver: authentication.
* Branch ACLs can be used to restrict access.
* Directory browsing via cvs ls command.
* LockServer on a second port replaces filesystem-based locks &
provides file level locking.
* More sophisticated / extra triggers available e.g. postcommit.
* Supports Unicode files with additional keyword expansion switches.
* Atomic Checkout behaviour ensures you get the right version of every file.
* Efficient storage of binary files using binary deltas.
Diffstat (limited to 'devel/cvsnt/Makefile')
-rw-r--r-- | devel/cvsnt/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devel/cvsnt/Makefile b/devel/cvsnt/Makefile new file mode 100644 index 0000000..3b266cd --- /dev/null +++ b/devel/cvsnt/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: cvsnt +# Date created: 21 Jan 2004 +# Whom: Max Khon <fjoe@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= cvsnt +PORTVERSION= 2.0.14 +CATEGORIES= devel +MASTER_SITES= http://www.cvsnt.org/archive/ \ + http://homepages.nildram.co.uk/~tmhoyle/ + +MAINTAINER= fjoe@FreeBSD.org +COMMENT= CVS clone + +USE_LIBTOOL= yes +CONFIGURE_ARGS= --enable-fork +USE_GETOPT_LONG=yes + +.if exists(/usr/include/gssapi.h) +PLIST_SUB= GSERVER="" +.else +PLIST_SUB= GSERVER="@comment " +.endif + +.include <bsd.port.mk> |