mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
3db34ff5cb
This port is based on dns/dnsmasq 2.62_1,1 and has been updated to 2.63rc2. Description (by Simon Kelley, the upstream maintainer): Dnsmasq is a lightweight, easy to configure DNS forwarder and DHCP server. It is designed to provide DNS and, optionally, DHCP, to a small network. It can serve the names of local machines which are not in the global DNS. The DHCP server integrates with the DNS server and allows machines with DHCP-allocated addresses to appear in the DNS with names configured either in each host or in a central configuration file. Dnsmasq supports static and dynamic DHCP leases and BOOTP/TFTP/PXE for network booting of diskless machines.
123 lines
3.3 KiB
Makefile
123 lines
3.3 KiB
Makefile
# New ports collection makefile for: dnsmasq
|
|
# Date created: 1 June 2003
|
|
# Whom: Steven Honson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dnsmasq
|
|
DISTVERSION= 2.62
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= dns ipv6
|
|
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/ \
|
|
${MASTER_SITE_LOCAL}/
|
|
#MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/release-candidates/
|
|
MASTER_SITE_SUBDIR= mandree
|
|
EXTRACT_SUFX= .tar.lzma
|
|
|
|
MAINTAINER= mandree@FreeBSD.org
|
|
COMMENT= Lightweight DNS forwarder, DHCP, and TFTP server
|
|
|
|
LICENSE= GPLv2
|
|
|
|
CONFLICTS_INSTALL=dnsmasq-devel-*
|
|
|
|
MAN8= dnsmasq.8
|
|
|
|
PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
USE_XZ= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
CFLAGS+= -Wall -Wno-unused-value
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX="${PREFIX}" COPTS="${CFLAGS}" LIBS="${LDFLAGS}" RPM_OPT_FLAGS="${CPPFLAGS}"
|
|
|
|
OPTIONS_DEFINE= IPV6 DBUS NLS IDN LUA
|
|
OPTIONS_DEFAULT= IPV6 NLS
|
|
OPTIONS_EXCLUDE+= EXAMPLES
|
|
NLS_DESC= National Language Support (NLS, enables IDN)
|
|
IDN_DESC= International Domain Names (IDN) WITHOUT NLS
|
|
LUA_DESC= Support lease-change scripts in LUA
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MIPV6)
|
|
CFLAGS+= -DNO_IPV6
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USE_PKGCONFIG= yes
|
|
LIB_DEPENDS+= idn:${PORTSDIR}/dns/libidn
|
|
PLIST_SUB+= NLS=""
|
|
ALL_TARGET= all-i18n
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.if ${PORT_OPTIONS:MIDN}
|
|
CFLAGS+= -DHAVE_IDN
|
|
LIB_DEPENDS+= idn:${PORTSDIR}/dns/libidn
|
|
.endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDBUS}
|
|
LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus
|
|
USE_PKGCONFIG= yes
|
|
CFLAGS+= -DHAVE_DBUS
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLUA}
|
|
CFLAGS+= -DHAVE_LUASCRIPT
|
|
USE_LUA= 5.1
|
|
.endif
|
|
|
|
USE_RC_SUBR= dnsmasq
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s/lua5\.1/lua-5.1/" ${WRKSRC}/Makefile
|
|
|
|
pre-configure:
|
|
@:
|
|
.if ${PORT_OPTIONS:MIDN}
|
|
.if empty(PORT_OPTIONS:MNLS)
|
|
@if ${OBJDUMP} -p ${LOCALBASE}/lib/libidn.so \
|
|
| ${EGREP} -q "NEEDED[[:space:]]+lib(intl|iconv)\.so" ; \
|
|
then ${ECHO} ; ${ECHO} 'WARNING: dns/libidn was compiled with NLS support!' ; \
|
|
${ECHO} 'Recompile libidn WITHOUT_NLS to get rid of NLS dependencies.' ; ${ECHO} ; \
|
|
fi
|
|
.else
|
|
@${ECHO} 'WARNING: IDN and NLS enabled, building IDN WITH NLS.'
|
|
.endif
|
|
.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 ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
.for i in de es fi fr id it no pl pt_BR ro
|
|
${MKDIR} ${PREFIX}/share/locale/${i}/LC_MESSAGES
|
|
${INSTALL_DATA} ${WRKSRC}/src/${i}.mo \
|
|
${PREFIX}/share/locale/${i}/LC_MESSAGES/${PORTNAME}.mo
|
|
.endfor
|
|
.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/
|
|
if [ ! -f ${PREFIX}/etc/dnsmasq.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/dnsmasq.conf.example ${PREFIX}/etc/dnsmasq.conf; \
|
|
fi
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|