2009-09-26 07:48:02 +02:00
|
|
|
# $NetBSD: Makefile,v 1.22 2009/09/26 05:48:02 taca Exp $
|
2003-03-22 03:31:49 +01:00
|
|
|
#
|
|
|
|
# todo: set location of [md-]whois.conf and fix in man page too
|
|
|
|
# todo: build and install the po/ files and add to PLIST
|
2005-08-02 02:23:31 +02:00
|
|
|
# todo: add choice for mk/defaults/mk.conf to define name prefix
|
2003-03-22 03:31:49 +01:00
|
|
|
# (defaults to "md-" to distinguish from other whois clients) and adjust PLIST
|
2001-02-07 17:55:01 +01:00
|
|
|
|
2003-03-22 03:31:49 +01:00
|
|
|
DISTNAME= whois_${VERSION}
|
|
|
|
PKGNAME= md-whois-${VERSION}
|
2001-02-07 17:55:01 +01:00
|
|
|
CATEGORIES= net
|
2005-11-03 14:43:15 +01:00
|
|
|
MASTER_SITES= ${MASTER_SITE_DEBIAN:=pool/main/w/whois/}
|
2001-02-07 17:55:01 +01:00
|
|
|
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
|
|
HOMEPAGE= http://www.linux.it/~md/software/
|
2001-02-17 18:52:59 +01:00
|
|
|
COMMENT= Improved whois client
|
2001-02-07 17:55:01 +01:00
|
|
|
|
Update md-whois package to from 4.7.22 to 4.7.28.
whois (4.7.28) unstable; urgency=medium
* Updated the .aero TLD server.
* Added a new ASN allocation.
* Search PGPKEY-* objects in the RIPE database.
-- Marco d'Itri <md@linux.it> Wed, 10 Sep 2008 18:49:37 +0200
whois (4.7.27) unstable; urgency=medium
* Updated the .md and .me TLD servers.
* Added a new ASN allocation.
* Added a new IPv4 allocation.
* Updated the Polish and Czech translations.
-- Marco d'Itri <md@linux.it> Thu, 17 Jul 2008 00:54:55 +0200
whois (4.7.26) unstable; urgency=medium
* Added support for passing command line options in the environment
variables WHOIS_OPTIONS and MKPASSWD_OPTIONS. (Closes: #324858)
* Updated the French translation. (Closes: #474307)
-- Marco d'Itri <md@linux.it> Sat, 05 Apr 2008 04:53:26 +0200
whois (4.7.25) unstable; urgency=low
* mkpasswd: added support for the SHA-256 and SHA-512 methods from
glibc 2.7.
* mkpasswd: added support for FreeBSD-style Blowfish and NT-Hash methods.
* mkpasswd: added support for variable-rounds methods (OpenBSD-style
Blowfish and SHA-256/SHA-512).
* mkpasswd: renamed -H/--hash to -m/--method.
* mkpasswd: finished support for libxcrypt (not enabled by default).
* Added NONE entries for the rest of .uk SLD. (Closes: #471963)
* Added the .bd, .gh, .lc, .sc, .ma, .me, .om and .rs TLD servers.
* Updated the .aero, .bb and .bz TLD servers. (Closes: #448683)
* Added another RIPE ERX ASN block. (Closes: #452328)
* Added a new ASN allocation.
* Added Basque and Czech translations.
-- Marco d'Itri <md@linux.it> Sun, 23 Mar 2008 19:18:34 +0100
whois (4.7.24) unstable; urgency=medium
* Added new ASN allocations.
* Added new IPv4 allocations.
* Added the .asia, .kp and .mq TLD servers. (Closes: #445747)
-- Marco d'Itri <md@linux.it> Tue, 30 Oct 2007 11:06:25 +0100
whois (4.7.23) unstable; urgency=medium
* Fixed myinet_aton to not reject CIDR networks.
* Added support for ASN32.
* Added the za.net and za.org pseudo-TLD servers.
-- Marco d'Itri <md@linux.it> Thu, 13 Sep 2007 03:28:21 +0200
2008-11-19 15:35:34 +01:00
|
|
|
VERSION= 4.7.28
|
2003-09-30 03:23:03 +02:00
|
|
|
|
2004-01-20 13:18:15 +01:00
|
|
|
WRKSRC= ${WRKDIR}/whois-${VERSION}
|
2005-07-16 03:19:06 +02:00
|
|
|
USE_TOOLS+= gmake perl
|
|
|
|
|
2005-12-27 22:24:26 +01:00
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
2007-08-07 23:48:39 +02:00
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
2001-02-07 17:55:01 +01:00
|
|
|
|
2009-09-26 07:48:02 +02:00
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
.if (${OPSYS} == "NetBSD" && !empty(OS_VERSION:M4.*))
|
|
|
|
MAKE_ENV+= NEED_OPTARG=YES
|
|
|
|
.endif
|
|
|
|
|
2001-02-07 17:55:01 +01:00
|
|
|
do-install:
|
2007-08-07 23:48:39 +02:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/whois ${DESTDIR}${PREFIX}/bin/md-whois
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/whois.1 \
|
|
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/md-whois.1
|
2001-02-07 17:55:01 +01:00
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|