1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

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
This commit is contained in:
Akinori MUSHA 2000-06-06 13:55:28 +00:00
parent b72ff83eee
commit 945ea77833
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29264
5 changed files with 61 additions and 0 deletions

32
devel/cvsutils/Makefile Normal file
View File

@ -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>

1
devel/cvsutils/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (cvsutils-2000.06.06.tar.gz) = b877f0592c0f76eff6bbb76636fdb53f

View File

@ -0,0 +1 @@
CVS utilities which facilitate working with local working directories

20
devel/cvsutils/pkg-descr Normal file
View File

@ -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

7
devel/cvsutils/pkg-plist Normal file
View File

@ -0,0 +1,7 @@
bin/cvschroot
bin/cvsco
bin/cvsdiff
bin/cvsdiscard
bin/cvspurge
bin/cvsrmadm
bin/cvsu