diff options
author | knu <knu@FreeBSD.org> | 2000-06-06 21:55:28 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-06-06 21:55:28 +0800 |
commit | 48f01cace14c4ef8d8b8feec963a21ef5c29ed50 (patch) | |
tree | 56093467b5044111f2436bbddfa2fc7ecb9018df | |
parent | 3020b8a386fbf7aba435531e9113e373d83134f3 (diff) | |
download | freebsd-ports-gnome-48f01cace14c4ef8d8b8feec963a21ef5c29ed50.tar.gz freebsd-ports-gnome-48f01cace14c4ef8d8b8feec963a21ef5c29ed50.tar.zst freebsd-ports-gnome-48f01cace14c4ef8d8b8feec963a21ef5c29ed50.zip |
This is a new port of cvsutils.
--
CVSU: CVS Utilites
The idea of CVS Utilities is to facilitate working with the files in
the working directory of a developer using CVS.
cvsu: cvs update offline
cvsco: cruel checkout
cvsdiscard: discard local changes
cvspurge: make maintainer-clean
cvsdiff: cvs diff offline
cvschroot: change CVS/Root recursively
cvsrmadm: remove all CVS directories recursively
-rw-r--r-- | devel/cvsutils/Makefile | 32 | ||||
-rw-r--r-- | devel/cvsutils/distinfo | 1 | ||||
-rw-r--r-- | devel/cvsutils/pkg-comment | 1 | ||||
-rw-r--r-- | devel/cvsutils/pkg-descr | 20 | ||||
-rw-r--r-- | devel/cvsutils/pkg-plist | 7 |
5 files changed, 61 insertions, 0 deletions
diff --git a/devel/cvsutils/Makefile b/devel/cvsutils/Makefile new file mode 100644 index 000000000000..1fa532960675 --- /dev/null +++ b/devel/cvsutils/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: cvsutils +# Date created: 6 June 2000 +# Whom: knu@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= cvsutils +PORTVERSION= 2000.06.06 +CATEGORIES= devel +MASTER_SITES= http://people.FreeBSD.org/~knu/ports/distfiles/ + +MAINTAINER= knu@FreeBSD.org + +USE_PERL5= YES +NO_BUILD= YES +WRKSRC= ${WRKDIR}/${PORTNAME} + +PROGS= cvschroot \ + cvsco \ + cvsdiff \ + cvsdiscard \ + cvspurge \ + cvsrmadm \ + cvsu + +do-install: +.for f in ${PROGS} + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${PREFIX}/bin/ +.endfor + +.include <bsd.port.mk> diff --git a/devel/cvsutils/distinfo b/devel/cvsutils/distinfo new file mode 100644 index 000000000000..37fe82e64223 --- /dev/null +++ b/devel/cvsutils/distinfo @@ -0,0 +1 @@ +MD5 (cvsutils-2000.06.06.tar.gz) = b877f0592c0f76eff6bbb76636fdb53f diff --git a/devel/cvsutils/pkg-comment b/devel/cvsutils/pkg-comment new file mode 100644 index 000000000000..85ffd871dd5d --- /dev/null +++ b/devel/cvsutils/pkg-comment @@ -0,0 +1 @@ +CVS utilities which facilitate working with local working directories diff --git a/devel/cvsutils/pkg-descr b/devel/cvsutils/pkg-descr new file mode 100644 index 000000000000..01285fde3dd7 --- /dev/null +++ b/devel/cvsutils/pkg-descr @@ -0,0 +1,20 @@ +CVSU: CVS Utilites + +The idea of CVS Utilities is to facilitate working with the files in +the working directory of a developer using CVS. + +cvsu: cvs update offline +cvsco: cruel checkout +cvsdiscard: discard local changes +cvspurge: make maintainer-clean +cvsdiff: cvs diff offline +cvschroot: change CVS/Root recursively +cvsrmadm: remove all CVS directories recursively + +The original author of CVSU is: + Tom Tromey <tromey@cygnus.com> + +Currently CVSU is maintained by: + Pavel Roskin <pavel_roskin@geocities.com> + +WWW: http://www.red-bean.com/~kfogel/cvs2cl.shtml diff --git a/devel/cvsutils/pkg-plist b/devel/cvsutils/pkg-plist new file mode 100644 index 000000000000..9c5e8ec96eac --- /dev/null +++ b/devel/cvsutils/pkg-plist @@ -0,0 +1,7 @@ +bin/cvschroot +bin/cvsco +bin/cvsdiff +bin/cvsdiscard +bin/cvspurge +bin/cvsrmadm +bin/cvsu |