38 lines
851 B
Makefile
38 lines
851 B
Makefile
# New ports collection makefile for: spiped secure pipe daemon
|
|
# Date created: 2011-08-18
|
|
# Whom: Colin Percival
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spiped
|
|
PORTVERSION= 1.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils security
|
|
MASTER_SITES= http://www.tarsnap.com/spiped/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= cperciva@tarsnap.com
|
|
COMMENT= Daemon for creating secure symmetric pipes
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
DOCFILES= BUILDING CHANGELOG COPYRIGHT README STYLE
|
|
READMES= spiped spipe
|
|
|
|
PLIST_FILES= bin/spiped bin/spipe
|
|
PORTDOCS= ${DOCFILES} ${READMES:S/^/README-/}
|
|
|
|
USE_RC_SUBR= spiped
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_MAN} ${DOCFILES} ${DOCSDIR})
|
|
.for README in ${READMES}
|
|
${INSTALL_MAN} ${WRKSRC}/${README}/README ${DOCSDIR}/README-${README}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|