mirror of
https://git.freebsd.org/ports.git
synced 2025-05-06 02:47:37 -04:00
Move manpages to ${PREFIX}/share/man Sponsored by: Rubicon Communications, LLC ("Netgate")
35 lines
731 B
Makefile
35 lines
731 B
Makefile
PORTNAME= cvsps
|
|
DISTVERSION= 2.2b1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
PKGNAMESUFFIX?= -devel
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Create patchset information from CVS
|
|
WWW= https://cvsps.sourceforge.net/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CONFLICTS= cvsps
|
|
|
|
USES= gmake
|
|
ALL_TARGET= cvsps
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/man/man1/${PORTNAME}.1.gz
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 \
|
|
${STAGEDIR}${PREFIX}/share/man/man1/
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|