mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
54c631b2bb
updates, so I therefore feel the best thing to do is resign as maintainer and hope that another FreeBSD user who uses dnsmasq actively will take over as maintainer. [1] OPTIONify [2] PR: 98584 [1] Submitted by: Steven Honson (former maintainer) [1] itetcu (me) [2] Approved by: lawrance (mentor, implicit)
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# New ports collection makefile for: dnsmasq
|
|
# Date created: 1 June 2003
|
|
# Whom: Steven Honson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dnsmasq
|
|
PORTVERSION= 2.26
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns ipv6
|
|
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Lightweight, easy to configure DNS forwarder and DHCP server
|
|
|
|
MAN8= dnsmasq.8
|
|
|
|
docs= FAQ DBus-interface UPGRADING_to_2.0 doc.html setup.html
|
|
PORTDOCS= ${docs:T}
|
|
|
|
RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}
|
|
|
|
USE_GETOPT_LONG=yes
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= LIBS="${LDFLAGS}" RPM_OPT_FLAGS="${CPPFLAGS}"
|
|
|
|
OPTIONS= IPV6 "IPv6 support" on
|
|
OPTIONS+= DBUS "D_BUS support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_IPV6)
|
|
CFLAGS+= -DNO_IPV6
|
|
.endif
|
|
|
|
.if defined(WITH_DBUS)
|
|
LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus
|
|
CFLAGS+= -DWITH_DBUS
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 500037
|
|
USE_RC_SUBR= dnsmasq.sh
|
|
.else
|
|
USE_RCORDER= dnsmasq.sh
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/dnsmasq ${PREFIX}/sbin
|
|
${INSTALL_DATA} ${WRKSRC}/dnsmasq.conf.example ${PREFIX}/etc
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.8 ${PREFIX}/man/man8
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${docs} ${DOCSDIR}
|
|
.endif
|
|
${MKDIR} ${EXAMPLESDIR}/dynamic-dnsmasq ${EXAMPLESDIR}/dnslist
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/dynamic-dnsmasq/dynamic-dnsmasq.pl ${EXAMPLESDIR}/dynamic-dnsmasq/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/dnslist/dnslist.pl ${EXAMPLESDIR}/dnslist/
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/dnslist/dhcp.css ${EXAMPLESDIR}/dnslist/
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/dnslist/dnslist.tt2 ${EXAMPLESDIR}/dnslist/
|
|
|
|
.include <bsd.port.post.mk>
|