8004645b51
Major changes: * tinydns automatically returns a random set of 8 addresses, in a random order, from a cluster of any size. * tinydns supports client differentiation. There's no longer any reason to use pickdns. * dnstracesort prints glue information. This reveals all sorts of interesting inconsistencies.
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2001/01/23 09:11:18 camield Exp $
|
|
|
|
DISTNAME= djbdns-1.04
|
|
HOMEPAGE= http://cr.yp.to/djbdns.html
|
|
CATEGORIES= net
|
|
MAINTAINER= Camiel Dobbelaar <cd@sentia.nl>
|
|
|
|
MASTER_SITES= http://cr.yp.to/djbdns/ \
|
|
ftp://ftp.id.wustl.edu/pub/qmail/
|
|
MASTER_SITES0= ftp://ftp.innominate.org/gpa/djb/
|
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}-man${EXTRACT_SUFX}:0
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
ALL_TARGET= default
|
|
INSTALL_TARGET= setup check
|
|
|
|
RUN_DEPENDS= supervise::sysutils/daemontools \
|
|
tcpclient::net/ucspi-tcp
|
|
|
|
MAN5LIST= qualification
|
|
MAN1LIST= dnsfilter dnsipq dnsname dnsqr dnstxt dnsip \
|
|
dnsmx dnsq dnstrace dnstracesort
|
|
MAN8LIST= axfr-get dnscache pickdns rbldns tinydns axfrdns \
|
|
pickdns-conf rbldns-conf tinydns-conf walldns-conf \
|
|
dnscache-conf pickdns-data rbldns-data tinydns-data \
|
|
walldns
|
|
|
|
pre-build:
|
|
@echo ${CC} ${CFLAGS} > ${WRKSRC}/conf-cc
|
|
@echo ${PREFIX} > ${WRKSRC}/conf-home
|
|
|
|
pre-install:
|
|
@echo ${PREFIX} > ${WRKSRC}/conf-home
|
|
|
|
post-install:
|
|
.for mtype in 1 5 8
|
|
. for file in ${MAN${mtype}LIST}
|
|
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}-man/${file}.${mtype} \
|
|
${PREFIX}/man/man${mtype}
|
|
. endfor
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|