mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
a90c889e49
- Provide PORTDOCS - Provide additional master site
36 lines
857 B
Makefile
36 lines
857 B
Makefile
# New ports collection makefile for: cksfv
|
|
# Date created: 18 October 2000
|
|
# Whom: Johann Visagie <johann@egenetics.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cksfv
|
|
PORTVERSION= 1.3.7
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.iki.fi/shd/foss/cksfv/files/ \
|
|
http://zakalwe.virtuaalipalvelin.net/~shd/foss/cksfv/files/
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Create or manipulate Simple File Verification (SFV) checksum files
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --mandir=${PREFIX}/man --prefix=${PREFIX}
|
|
|
|
MAN1= cksfv.1
|
|
PLIST_FILES= bin/cksfv
|
|
PORTDOCS= README ChangeLog
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|