blob: b24caf99a8f6403295d429f8f579da9cfa251d5f (
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: 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/ CSME
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= A Linux/BSD IPv6 router advertisement daemon
GNU_CONFIGURE= yes
USE_GMAKE= yes
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.pre.mk>
.if ${OSVERSION} < 500000
BROKEN= Does not build on 4.x
.endif
.include <bsd.port.post.mk>
|