Index: head/net/dhcpcd/Makefile =================================================================== --- head/net/dhcpcd/Makefile (revision 453874) +++ head/net/dhcpcd/Makefile (revision 453875) @@ -1,29 +1,30 @@ # Created by: Roy Marples # $FreeBSD$ PORTNAME= dhcpcd PORTVERSION= 6.11.5 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://roy.marples.name/downloads/dhcpcd/ \ ftp://roy.marples.name/pub/dhcpcd/\ http://roy.aydogan.net/dhcpcd/ \ http://cflags.cc/roy/dhcpcd/ \ LOCAL/delphij MAINTAINER= roy@marples.name COMMENT= DHCP/IPv4LL/IPv6RS/DHCPv6 client LICENSE= BSD2CLAUSE USES= cpe tar:xz CPE_VENDOR= dhcpcd_project GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples USE_RC_SUBR= dhcpcd post-install: ${MV} ${STAGEDIR}${PREFIX}/etc/dhcpcd.conf \ ${STAGEDIR}${PREFIX}/etc/dhcpcd.conf.sample @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/dhcpcd .include Index: head/net/dhcpcd/files/dhcpcd.in =================================================================== --- head/net/dhcpcd/files/dhcpcd.in (revision 453874) +++ head/net/dhcpcd/files/dhcpcd.in (revision 453875) @@ -1,40 +1,40 @@ #!/bin/sh # PROVIDE: dhclient -# KEYWORD: nojail nostart +# KEYWORD: nojail # . /etc/rc.subr . /etc/network.subr name="dhcpcd" ifn="$2" command="%%PREFIX%%/sbin/dhcpcd" command_args="$ifn" if [ -n "$ifn" ]; then specific="$(get_if_var $ifn dhcpcd_flags_IF)" if [ -z "$flags" -a -n "$specific" ]; then rc_flags="$specific" fi pidfile="/var/run/dhcpcd-$ifn.pid" else pidfile="$($command -P $rc_flags)" fi start_precmd="dhcpcd_precmd" dhcpcd_precmd() { # dhcpcd may need local binaries export PATH=${PATH}:/usr/local/sbin } load_rc_config $name load_rc_config network if [ -n "$ifn" ]; then if ! dhcpif $ifn; then err 1 "$ifn is not enabled for DHCP" fi fi run_rc_command "$1"