diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-11 18:38:41 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-11 18:38:41 +0000 |
commit | 3221adb21b385c7a2bf877d37afa24516a154221 (patch) | |
tree | a7a475b51c49dc667146ce852afa2c67fb611b87 /net/cvsupchk | |
parent | 754a2d44860aef3cffdb95c80128d788b0bbb8a5 (diff) |
Notes
Diffstat (limited to 'net/cvsupchk')
-rw-r--r-- | net/cvsupchk/Makefile | 39 | ||||
-rw-r--r-- | net/cvsupchk/pkg-descr | 4 |
2 files changed, 43 insertions, 0 deletions
diff --git a/net/cvsupchk/Makefile b/net/cvsupchk/Makefile new file mode 100644 index 000000000000..c9035870de13 --- /dev/null +++ b/net/cvsupchk/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: cvsupchk +# Date created: 07 Nov 2005 +# Whom: matthias.andree@gmx.de +# +# $FreeBSD$ +# + +PORTNAME= cvsupchk +PORTVERSION= 19990209 +CATEGORIES= net +DISTFILES= + +MAINTAINER= matthias.andree@gmx.de +COMMENT= Check a CVSup directory hierarchy against the checkouts file + +BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/net/cvsup:extract + +PLIST_FILES= bin/cvsupchk +PORTDOCS= * + +USE_PYTHON= yes + +.include <bsd.port.pre.mk> + +src!= cd ${PORTSDIR}/net/cvsup && make -V WRKSRC + +do-build: + ${MKDIR} ${WRKSRC} + ${SED} 's:^#!/usr/local/bin/python:#!${PYTHON_CMD}:' <${src}/contrib/cvsupchk/cvsupchk >${WRKSRC}/cvsupchk + +do-install: + ${MKDIR} ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/cvsupchk ${PREFIX}/bin/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${src}/contrib/cvsupchk/README ${DOCSDIR}/ +.endif + +.include <bsd.port.post.mk> diff --git a/net/cvsupchk/pkg-descr b/net/cvsupchk/pkg-descr new file mode 100644 index 000000000000..bae2f56f769d --- /dev/null +++ b/net/cvsupchk/pkg-descr @@ -0,0 +1,4 @@ +cvsupchk is a python script that checks a CVSup maintained directory hierarchy +against the corresponding CVSup checkouts file. It looks for a number of +anomalies: missing checked out files, deleted files being present, extra RCS +files, 'dead' directories being present and so on. |