9514c0cc3b
-- CVSps is a program for generating 'patchset' information from a CVS repository. A patchset in this case is defined as a set of changes made to a collection of files, and all committed at the same time (using a single 'cvs commit' command). This information is valuable to seeing the big picture of the evolution of a cvs project. While cvs tracks revision information, it is often difficult to see what changes were committed 'atomically' to the repository.
25 lines
534 B
Makefile
25 lines
534 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/09/22 13:21:05 avsm Exp $
|
|
|
|
COMMENT= "generate patchsets from CVS repositories"
|
|
|
|
V= 2.1
|
|
DISTNAME= cvsps-${V}
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://www.cobite.com/cvsps/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c z
|
|
MASTER_SITES= http://www.cobite.com/cvsps/
|
|
USE_GMAKE= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/cvsps ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKBUILD}/cvsps.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|