6c92aef956
cvschk is a Perl program which allows you to see the status of your own CVS directories, without access to the CVS repository. It shows which files you changed, made locally, and which ones were deleted. PR: ports/80279 Submitted by: Matthias Andree <matthias.andree@gmx.de>
32 lines
716 B
Makefile
32 lines
716 B
Makefile
# New ports collection makefile for: cvschk
|
|
# Date created: 2005-04-23
|
|
# Whom: Matthias Andree <matthias.andree@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cvschk
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://cvs.sslug.dk/cvs2html/utils/
|
|
DISTNAME= cvschk
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
|
COMMENT= Quick offline checker for CVS modifications
|
|
|
|
USE_PERL5_RUN= yes
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
MAN1= cvschk.1
|
|
|
|
do-configure:
|
|
${SED} -e "s,^#!/usr/bin/perl -w,#! ${PERL} -w," \
|
|
<${DISTDIR}/${DISTNAME} >${WRKSRC}/${DISTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/cvschk.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|