Ticket #31659: Portfile

File Portfile, 1.4 KB (added by Lars.Rasmusson@…, 13 years ago)
Line 
1# $Id: Portfile 68740 2010-06-11 22:50:09Z ryandesign@macports.org $
2
3PortSystem          1.0
4
5name                radvd
6version             1.8.3
7categories          net
8platforms           darwin
9maintainers         sics.se:lars.rasmusson
10homepage            http://www.litech.org/radvd/
11master_sites        ${homepage}dist/
12
13description         router advertisement daemon
14
15long_description    The router advertisement daemon (radvd) is run by \
16                    Linux or BSD systems acting as IPv6 routers. \
17                    It sends Router Advertisement messages, specified by RFC 2461, \
18                    to a local Ethernet LAN periodically and when requested by a node \
19                    sending a Router Solicitation message. \
20                    These messages are required for IPv6 stateless autoconfiguration.
21
22checksums           md5     73d533b7b20f5554c8d3e33643945442 \
23                    sha1    256fa6b8069583362e279bb77d8097e975f565a4
24
25configure.args      --mandir=${prefix}/share/man \
26                    --with-logfile=${prefix}/var/log/radvd.log \
27                    --with-pidfile=${prefix}/var/run/radvd.pid
28
29notes               "You must enable ipv6 forwarding to use radvd, like this:\
30                    \n\n    sudo sysctl -w net.inet6.ip6.forwarding=1\
31                    \n\nYou must also create a config file in ${prefix}/etc/radvd.conf\
32                    \nSee \"man radvd.conf\" for how to configure radvd."