diff options
author | cube <cube@pkgsrc.org> | 2009-02-24 00:58:10 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2009-02-24 00:58:10 +0000 |
commit | 2d9da00440984772ea50a60ccaa26dcce4ed4a29 (patch) | |
tree | e78a228701a6a4b600604926b72bbe0d63c94579 /net | |
parent | 1ea3a9791487f0fcbc82820ba57c257c4738cf56 (diff) | |
download | pkgsrc-2d9da00440984772ea50a60ccaa26dcce4ed4a29.tar.gz |
- Update to 0.996b
- Add USE_DESTDIR support
- Silence a pkglint warning
- Drop maintainership
Changes:
* cleanup: #ifdefed dump_a_txt() properly so it will not be compiled
if --disable-master-dump was specified.
* implement "base template" ($=) feature.
* portability and readability fixes from Victor Duchovni
* added configure test for inline and __inline keywords, and only
use #warning keyword if __GNUC__ is defined (more portability fixes
from Victor Duchovni)
* misc type conversions here and there, and change alignment in
mempool.c to be sizeof(void*) instead of sizeof(int), to help
64bit platforms. Thanks to Mike Quintero for an excellent
bugreport.
* bugfix: combined dataset - improper return of query() routine in some
cases
* internal code reorg:
- move firstword[_lc]() to _util.c
- use two structs instead of a set of 2-element arrays in dnset
* bugfix: lowercase base zone names given on command line and in `combined'
dataset, or else they wont be recognized in queries
Diffstat (limited to 'net')
-rw-r--r-- | net/rbldnsd/Makefile | 22 | ||||
-rw-r--r-- | net/rbldnsd/distinfo | 8 |
2 files changed, 17 insertions, 13 deletions
diff --git a/net/rbldnsd/Makefile b/net/rbldnsd/Makefile index 5c00df2edb2..6c30c9458de 100644 --- a/net/rbldnsd/Makefile +++ b/net/rbldnsd/Makefile @@ -1,18 +1,20 @@ -# $NetBSD: Makefile,v 1.3 2007/07/04 20:54:52 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2009/02/24 00:58:10 cube Exp $ # -DISTNAME= rbldnsd_0.996a +DISTNAME= rbldnsd_0.996b PKGNAME= ${DISTNAME:S/_/-/} CATEGORIES= net MASTER_SITES= http://www.corpit.ru/mjt/rbldnsd/ -MAINTAINER= cube@NetBSD.org +MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.corpit.ru/mjt/rbldnsd/ COMMENT= Efficient DNS daemon to serve DNSBL zones -WRKSRC= ${WRKDIR}/rbldnsd-0.996a +WRKSRC= ${WRKDIR}/rbldnsd-0.996b HAS_CONFIGURE= yes +PKG_DESTDIR_SUPPORT= user-destdir + .include "../../mk/bsd.prefs.mk" BUILD_DEFS+= RBLDNSD_DIR VARBASE @@ -25,8 +27,8 @@ PKG_GROUPS= ${RBLDNSD_GROUP} PKG_USERS= ${RBLDNSD_USER}:${RBLDNSD_GROUP} PKG_HOME.${RBLDNSD_USER}= ${RBLDNSD_DIR} -PKG_GROUPS_VARS+= RBLDNSD_GROUP -PKG_USERS_VARS+= RBLDNSD_USER +PKG_GROUPS_VARS= RBLDNSD_GROUP +PKG_USERS_VARS= RBLDNSD_USER FILES_SUBST+= RBLDNSD_USER=${RBLDNSD_USER} RBLDNSD_GROUP=${RBLDNSD_GROUP} RCD_SCRIPTS= rbldnsd @@ -38,10 +40,12 @@ RBLDNSD_DOCS= NEWS README.user INSTALLATION_DIRS= ${PKGMANDIR}/man8 sbin share/doc/rbldnsd do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/rbldnsd ${PREFIX}/sbin/ - ${INSTALL_MAN} ${WRKSRC}/rbldnsd.8 ${PREFIX}/${PKGMANDIR}/man8/ + ${INSTALL_PROGRAM} ${WRKSRC}/rbldnsd ${DESTDIR}${PREFIX}/sbin/ + ${INSTALL_MAN} ${WRKSRC}/rbldnsd.8 \ + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/ set -e; for doc in ${RBLDNSD_DOCS}; do \ - ${INSTALL_DATA} ${WRKSRC}/"$$doc" ${PREFIX}/share/doc/rbldnsd/; \ + ${INSTALL_DATA} ${WRKSRC}/"$$doc" \ + ${DESTDIR}/${PREFIX}/share/doc/rbldnsd/; \ done .include "../../mk/bsd.pkg.mk" diff --git a/net/rbldnsd/distinfo b/net/rbldnsd/distinfo index cbc35ecfcc7..9898a1d6c26 100644 --- a/net/rbldnsd/distinfo +++ b/net/rbldnsd/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2006/12/08 22:14:12 cube Exp $ +$NetBSD: distinfo,v 1.2 2009/02/24 00:58:10 cube Exp $ -SHA1 (rbldnsd_0.996a.tar.gz) = 7630069156aeff4432a066bc9e292fa4fab6dd92 -RMD160 (rbldnsd_0.996a.tar.gz) = b44a61ba9df55ff43df4283ac0632c8c61f930e4 -Size (rbldnsd_0.996a.tar.gz) = 112339 bytes +SHA1 (rbldnsd_0.996b.tar.gz) = 9cfe6cf01c54088cecc3a02902c721ee714f1c28 +RMD160 (rbldnsd_0.996b.tar.gz) = 15be588fb4051f0526084425b586ea7986b6493a +Size (rbldnsd_0.996b.tar.gz) = 113128 bytes |