blob: 08dc5bd04646ba68d5f9627a0f00f34b68761411 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: spiped secure pipe daemon
# Date created: 2011-08-18
# Whom: Colin Percival
#
# $FreeBSD$
#
PORTNAME= spiped
PORTVERSION= 1.2.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
PLIST_FILES= bin/spiped bin/spipe
PORTDOCS= BUILDING CHANGELOG COPYRIGHT README STYLE
READMES= spiped spipe
USE_RC_SUBR= spiped
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR})
.for README in ${READMES}
${INSTALL_MAN} ${WRKSRC}/${README}/README ${DOCSDIR}/README-${README}
.endfor
.endif
.include <bsd.port.mk>
|