blob: 82ea6f6df80386868713cb48d4876106ce989489 (
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
36
37
38
|
# 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>
|