freebsd-ports/dns/dualserver/Makefile
Rodrigo Osorio 247f046d59 Since v7 dualserver doesn't work well with FreeBSD,
the patch must be reworked but this is a time consuming task.
In the meanwhile, I chose to revert updates and go back to the
last working version.

PR:		ports/193556
Submitted by:	rodrigo
Approved by:	bapt (mentor)
2014-09-12 08:10:10 +00:00

33 lines
766 B
Makefile

# Created by: Gabor Kovesdan
# $FreeBSD$
PORTNAME= dualserver
PORTVERSION= 6.94
PORTEPOCH= 1
CATEGORIES= dns net
MASTER_SITES= http://rodrigo.osorio.free.fr/freebsd/distfiles/
DISTNAME= ${PORTNAME}V${PORTVERSION}
MAINTAINER= rodrigo@FreeBSD.org
COMMENT= Combined DHCP/DNS server for small LANs
LICENSE= GPLv2
USES= dos2unix
USE_RC_SUBR= dualserver
PLIST_FILES= sbin/dualserver etc/dualserver.conf.sample
post-extract:
@${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC}
do-build:
${CXX} ${CXXFLAGS} -o ${WRKSRC}/dualserver \
${WRKSRC}/dualserverd.cpp ${PTHREAD_LIBS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.ini \
${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
.include <bsd.port.mk>