mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
422bce3414
my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval).
40 lines
692 B
Makefile
40 lines
692 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: cvsps
|
|
# Date Created: Feb 9, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cvsps
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.cobite.com/cvsps/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Create patchset information from CVS
|
|
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= cvsps
|
|
|
|
CONFLICTS= cvsps-devel-*
|
|
|
|
MAN1= cvsps.1
|
|
PLIST_FILES= bin/cvsps
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= README
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cvsps ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cvsps.1 ${MANPREFIX}/man/man1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|