blob: 49f6ce6c1342a1b8b6f3bbb61c05918a13cd7ca1 (
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
|
# $FreeBSD$
PORTNAME= u6rd
PORTVERSION= 1.6
#PORTREVISION= 0
CATEGORIES= net ipv6
MASTER_SITES= http://ftp.scythe.jp/pub/u6rd/release/
MAINTAINER= ume@FreeBSD.org
COMMENT= User-space 6rd (RFC 5569) implementation
LICENSE= BSD
GNU_CONFIGURE= yes
USE_RC_SUBR= u6rd
PLIST_FILES= sbin/u6rd man/man8/u6rd.8.gz
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
PORTDOCS= NEWS README
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|