* Clarify timeout and reboot timeout, make it more sane * A server should not NAK an INFORM * The noalias directive will now remove any IPv4 addresses existing on the interface when we want to add our own * For BSD systems stop polling for IPv6 router reachability Instead, expect for cached neighour route additions/changes/removals to be announced by the kernel. Currently only NetBSD-7.99.3 does this. * Store acquired time for each IPv6 address so we can correctly offset pltime and vltime if we need to re-add them * test mode no longer turns off kernel rtadv handling
28 lines
779 B
Makefile
28 lines
779 B
Makefile
# $NetBSD: Makefile,v 1.46 2015/01/07 09:01:01 roy Exp $
|
|
#
|
|
|
|
DISTNAME= dhcpcd-6.6.7
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://roy.marples.name/pub/dhcpcd/
|
|
MASTER_SITES+= http://roy.aydogan.net/dhcpcd/
|
|
MASTER_SITES+= http://cflags.cc/roy/dhcpcd/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= roy@NetBSD.org
|
|
HOMEPAGE= http://roy.marples.name/projects/dhcpcd/
|
|
COMMENT= RFC2131 compliant DHCP client
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c99
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --with-hooks=ntp
|
|
|
|
EGDIR= ${PREFIX}/share/examples
|
|
INSTALL_MAKE_FLAGS+= SYSCONFDIR=${EGDIR}
|
|
CONF_FILES+= ${EGDIR}/dhcpcd.conf ${PKG_SYSCONFDIR}/dhcpcd.conf
|
|
|
|
RCD_SCRIPTS+= dhcpcd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|