mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
22 lines
539 B
Makefile
22 lines
539 B
Makefile
# Created by: Ben Smithurst <ben@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cvsmail
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= LOCAL/pgollucci
|
|
DISTNAME= mailutils-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Small program to add cvsweb links to FreeBSD commit messages
|
|
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
ALL_TARGET= cvsmail
|
|
PLIST_FILES= bin/cvsmail man/man1/cvsmail.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cvsmail ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cvsmail.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|