Fri Feb 8 23:52:37 2013 UTC ()
Remove PKGREVISION for this new version


(pettai)
diff -r1.61 -r1.62 pkgsrc/net/nsd/Makefile

cvs diff -r1.61 -r1.62 pkgsrc/net/nsd/Makefile (switch to unified diff)

--- pkgsrc/net/nsd/Makefile 2013/02/08 23:51:08 1.61
+++ pkgsrc/net/nsd/Makefile 2013/02/08 23:52:37 1.62
@@ -1,63 +1,62 @@ @@ -1,63 +1,62 @@
1# $NetBSD: Makefile,v 1.61 2013/02/08 23:51:08 pettai Exp $ 1# $NetBSD: Makefile,v 1.62 2013/02/08 23:52:37 pettai Exp $
2 2
3DISTNAME= nsd-3.2.15 3DISTNAME= nsd-3.2.15
4PKGREVISION= 1 
5CATEGORIES= net 4CATEGORIES= net
6MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ 5MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
7 6
8MAINTAINER= joerg@NetBSD.org 7MAINTAINER= joerg@NetBSD.org
9HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.html 8HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.html
10COMMENT= Authoritative-only DNS server 9COMMENT= Authoritative-only DNS server
11LICENSE= modified-bsd 10LICENSE= modified-bsd
12 11
13BUILD_DEFS+= VARBASE 12BUILD_DEFS+= VARBASE
14 13
15BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7 14BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7
16 15
17PKG_OPTIONS_VAR= PKG_OPTIONS.nsd 16PKG_OPTIONS_VAR= PKG_OPTIONS.nsd
18PKG_SUPPORTED_OPTIONS= inet6 rrl 17PKG_SUPPORTED_OPTIONS= inet6 rrl
19PKG_SUGGESTED_OPTIONS= inet6 18PKG_SUGGESTED_OPTIONS= inet6
20 19
21.include "../../mk/bsd.options.mk" 20.include "../../mk/bsd.options.mk"
22 21
23GNU_CONFIGURE= yes 22GNU_CONFIGURE= yes
24 23
25PKG_SYSCONFSUBDIR= nsd 24PKG_SYSCONFSUBDIR= nsd
26 25
27CONFIGURE_ARGS+=--with-configdir=${PKG_SYSCONFDIR:Q} 26CONFIGURE_ARGS+=--with-configdir=${PKG_SYSCONFDIR:Q}
28CONFIGURE_ARGS+=--enable-bind8-stats 27CONFIGURE_ARGS+=--enable-bind8-stats
29.if !empty(PKG_OPTIONS:Minet6) 28.if !empty(PKG_OPTIONS:Minet6)
30CONFIGURE_ARGS+=--enable-ipv6 29CONFIGURE_ARGS+=--enable-ipv6
31.else 30.else
32CONFIGURE_ARGS+=--disable-ipv6 31CONFIGURE_ARGS+=--disable-ipv6
33.endif 32.endif
34.if !empty(PKG_OPTIONS:Mrrl) 33.if !empty(PKG_OPTIONS:Mrrl)
35CONFIGURE_ARGS+=--enable-ratelimit 34CONFIGURE_ARGS+=--enable-ratelimit
36.else 35.else
37CONFIGURE_ARGS+=--disable-ratelimit 36CONFIGURE_ARGS+=--disable-ratelimit
38.endif 37.endif
39 38
40CONFIGURE_ARGS+=--with-pidfile=${VARBASE}/run/nsd.pid 39CONFIGURE_ARGS+=--with-pidfile=${VARBASE}/run/nsd.pid
41CONFIGURE_ARGS+=--with-user=${NSD_USER} 40CONFIGURE_ARGS+=--with-user=${NSD_USER}
42CONFIGURE_ARGS+=--with-dbfile=${VARBASE}/db/nsd.db 41CONFIGURE_ARGS+=--with-dbfile=${VARBASE}/db/nsd.db
43CONFIGURE_ARGS+=--with-difffile=${VARBASE}/db/nsd-ixfr.db 42CONFIGURE_ARGS+=--with-difffile=${VARBASE}/db/nsd-ixfr.db
44CONFIGURE_ARGS+=--with-xfrdfile=${VARBASE}/db/nsd-xfrd.state 43CONFIGURE_ARGS+=--with-xfrdfile=${VARBASE}/db/nsd-xfrd.state
45CONFIGURE_ARGS+=--with-ssl=${BUILDLINK_PREFIX.openssl} 44CONFIGURE_ARGS+=--with-ssl=${BUILDLINK_PREFIX.openssl}
46 45
47RCD_SCRIPTS= nsd 46RCD_SCRIPTS= nsd
48 47
49NSD_USER?= nsd 48NSD_USER?= nsd
50NSD_GROUP?= nsd 49NSD_GROUP?= nsd
51 50
52PKG_GROUPS= ${NSD_GROUP} 51PKG_GROUPS= ${NSD_GROUP}
53PKG_USERS= ${NSD_USER}:${NSD_GROUP} 52PKG_USERS= ${NSD_USER}:${NSD_GROUP}
54 53
55CONF_FILES+= share/examples/nsd/nsd.conf ${PKG_SYSCONFDIR}/nsd.conf 54CONF_FILES+= share/examples/nsd/nsd.conf ${PKG_SYSCONFDIR}/nsd.conf
56 55
57INSTALLATION_DIRS= share/examples/nsd 56INSTALLATION_DIRS= share/examples/nsd
58 57
59post-install: 58post-install:
60 ${INSTALL_DATA} ${WRKSRC}/contrib/nsd.zones2nsd.conf ${DESTDIR}${PREFIX}/share/examples/nsd 59 ${INSTALL_DATA} ${WRKSRC}/contrib/nsd.zones2nsd.conf ${DESTDIR}${PREFIX}/share/examples/nsd
61 60
62.include "../../security/openssl/buildlink3.mk" 61.include "../../security/openssl/buildlink3.mk"
63.include "../../mk/bsd.pkg.mk" 62.include "../../mk/bsd.pkg.mk"