Fixes from 2.46 include: * NetBSD-5 support * Better duplicate IPv6 address detection * DBus introspection * work with blank lines in /etc/ethers
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2009/02/19 11:17:19 roy Exp $
|
|
#
|
|
|
|
DISTNAME= dnsmasq-2.47
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/
|
|
|
|
MAINTAINER= roy@NetBSD.org
|
|
HOMEPAGE= http://www.thekelleys.org.uk/dnsmasq/doc.html
|
|
COMMENT= Lightweight, easy to configure DNS forwarder
|
|
|
|
RCD_SCRIPTS= dnsmasq
|
|
CONF_FILES= ${PREFIX}/share/examples/dnsmasq/dnsmasq.conf.example \
|
|
${PKG_SYSCONFDIR}/dnsmasq.conf
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "options.mk"
|
|
|
|
# Override the defaults
|
|
CFLAGS+= -DCONFFILE=\\\"${PKG_SYSCONFDIR}/dnsmasq.conf\\\"
|
|
BUILD_MAKE_FLAGS+= COPTS="${CFLAGS}"
|
|
INSTALL_MAKE_FLAGS+= PREFIX="${PREFIX}"
|
|
INSTALL_MAKE_FLAGS+= MANDIR="${PREFIX}/${PKGMANDIR}"
|
|
INSTALL_MAKE_FLAGS+= LOCALEDIR="${PREFIX}/${PKGLOCALEDIR}"
|
|
|
|
# Upstream wants to use nawk, but awk should work just fine here.
|
|
BUILD_MAKE_FLAGS+= AWK="${AWK}"
|
|
INSTALL_MAKE_FLAGS+= AWK="${AWK}"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/dnsmasq
|
|
${INSTALL} ${WRKSRC}/dnsmasq.conf.example \
|
|
${DESTDIR}${PREFIX}/share/examples/dnsmasq/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|