diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-09-01 05:58:49 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-09-01 05:58:49 +0000 |
commit | 7f523f32021d9a46020b7d353915fa9631f48a88 (patch) | |
tree | 91e4b638f63229bb7b2e5c2bd909a2c19b4ec4a3 /devel/c4 | |
parent | 6aae7b0c0542ce6ed659fc467c3213aeb69ba603 (diff) | |
download | pkgsrc-7f523f32021d9a46020b7d353915fa9631f48a88.tar.gz |
Initial import of c4-1.6.
C4 provides a CVS like feel to Perforce's SCM system p4. C4 is
not a substitute for CVS, in that it does not try to mimic CVS's
command set. Rather, it provides a workspace (client) where every
file is writable, and can be modified on an adhoc basis.
Diffstat (limited to 'devel/c4')
-rw-r--r-- | devel/c4/DESCR | 4 | ||||
-rw-r--r-- | devel/c4/Makefile | 22 | ||||
-rw-r--r-- | devel/c4/PLIST | 3 | ||||
-rw-r--r-- | devel/c4/distinfo | 5 | ||||
-rw-r--r-- | devel/c4/patches/patch-aa | 13 |
5 files changed, 47 insertions, 0 deletions
diff --git a/devel/c4/DESCR b/devel/c4/DESCR new file mode 100644 index 00000000000..65eedef5875 --- /dev/null +++ b/devel/c4/DESCR @@ -0,0 +1,4 @@ +C4 provides a CVS like feel to Perforce's SCM system p4. C4 is +not a substitute for CVS, in that it does not try to mimic CVS's +command set. Rather, it provides a workspace (client) where every +file is writable, and can be modified on an adhoc basis. diff --git a/devel/c4/Makefile b/devel/c4/Makefile new file mode 100644 index 00000000000..b6b2c4b7b94 --- /dev/null +++ b/devel/c4/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/09/01 05:58:49 schmonz Exp $ +# + +DISTNAME= c4 +PKGNAME= ${DISTNAME}-1.6 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.perforce.com/perforce/utils/c4/ + +MAINTAINER= schmonz@netbsd.org +COMMENT= CVS-like frontend to Perforce + +DEPENDS+= p4-[0-9]*:../../devel/p4 + +WRKSRC= ${WRKDIR}/${PKGNAME} + +ALL_TARGET= c4 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/c4 ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/c4.1 ${PREFIX}/man/man1 + +.include "../../mk/bsd.pkg.mk" diff --git a/devel/c4/PLIST b/devel/c4/PLIST new file mode 100644 index 00000000000..9b9c71f76dd --- /dev/null +++ b/devel/c4/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/09/01 05:58:49 schmonz Exp $ +bin/c4 +man/man1/c4.1 diff --git a/devel/c4/distinfo b/devel/c4/distinfo new file mode 100644 index 00000000000..59ad1a68f7d --- /dev/null +++ b/devel/c4/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/09/01 05:58:49 schmonz Exp $ + +SHA1 (c4.tar.gz) = 3fba3364520ed28db8d1507cecde1ec0923f04b2 +Size (c4.tar.gz) = 46038 bytes +SHA1 (patch-aa) = 1401168ee1d37cfcd243c82400bf924d8b4747f9 diff --git a/devel/c4/patches/patch-aa b/devel/c4/patches/patch-aa new file mode 100644 index 00000000000..1d267f27638 --- /dev/null +++ b/devel/c4/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/09/01 05:58:49 schmonz Exp $ + +--- Makefile.orig Fri Feb 11 03:11:52 2000 ++++ Makefile +@@ -2,7 +2,7 @@ + # c4 - CVS like front end for p4 + # + +-CC = gcc ++# CC = gcc + CFLAGS = -O + # CFLAGS = -g + OBJS = command.o findroot.o fstat.o ignore.o glob.o \ |