blob: 20b89f6e2d838e45e8c362c89117b15913f65c20 (
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
|
# New ports collection makefile for: radvd
# Date created: Fri Jul 6 03:17:33 EDT 2001
# Whom: Patrick Li <pat@databits.net>
#
# $FreeBSD$
#
PORTNAME= radvd
PORTVERSION= 0.9.1
CATEGORIES= net ipv6
MASTER_SITES= http://www.litech.org/radvd/dist/
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= A Linux/BSD IPv6 router advertisement daemon
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_GCC= 3.4+
USE_RC_SUBR= radvd
MAN5= radvd.conf.5
MAN8= radvd.8 radvdump.8
PORTDOCS= CHANGES COPYRIGHT INTRO.html README TODO
PLIST_FILES= etc/radvd.conf.example sbin/radvd sbin/radvdump
post-install:
@${INSTALL_DATA} ${WRKSRC}/radvd.conf.example ${PREFIX}/etc/
.ifndef NOPORTDOCS
@${INSTALL} -d ${DOCSDIR}
@${INSTALL_DATA} ${PORTDOCS:S.^.${WRKSRC}/.} ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|