From 7c9c8f9558e2c13086abbdafcce2352d6f0a9480 Mon Sep 17 00:00:00 2001 From: heinz Date: Sat, 22 Oct 2005 19:58:42 +0000 Subject: Updated to version 1.3.14 (approved by Min Sik Kim). Pkgsrc changes: - Added TEST_TARGET. [Relevant] changes since version 1.3.8: ======================================= 1.3.14 2005-9-7 * Check if byte, ushort, ulong, u16, u32 are defined in configure script. Fixes compilation issue on FreeBSD systems. * Check for Big Endian byte order (needed for MD5 code in geoipupdate to work properly on Mac OS X and other Big Endian processors * Fixed GEOIP_CHECK_CACHE mode when used with GEOIP_STANDARD to only refresh upon file change * Fixed memory leak when refreshing file in GEOIP_CHECK_CACHE mode * Updated ltmain.sh to support Debian GNU/k*BSD bug #315425 (Marek Habersack) * Added lookup functions using IP numeric representation as input (Frank Mather) * Removed geoipexport * Replaced Yugoslavia with Serbia and Montenegro * Updated geoiplookup to only perform country lookup once instead of twice by using GeoIP_id_by_name 1.3.13 2005-8-1 * Fixed autoconf weirdness that resulted in libraries being installed without .so suffix 1.3.12 2005-7-19 * Removed -lGeoIP from libGeoIPUpdate_la_LIBADD - fixes compilation error if GeoIP isn't already installed (Thomas Steudten) 1.3.11 2005-7-7 * Fixed gcc warnings and bug. Use int instead of char for checking the return value of getopt in geoipupdate.c. Moved the internal functions to GeoIP_internal.h to get rid of those 'implicit declaration' warnings. (Ludwig Nussel/SUSE) * Cleaned up name space by prefixing internal functions with _GeoIP* (Ludwig Nussel/SUSE) * Memory Leak fix for GeoIP City if fread error * Added more verbose error messages for geoipupdate (Frank Mather) * Added check for zlib.h to configure.in 1.3.10 2005-4-17 * Added types.h to Makefile.am - fixes compilation error 1.3.9 2005-4-14 * fixed bug with GEOIP_INDEX_CACHE (Frank Mather) * fixed segfault issue if GeoIP.dat not found (Frank Mather) * Updated MD5 checksum code to use GnuPG code which works on 64bit machines (Frank Mather) * Fixed memory leak in test-geoip-isp.c and test-geoip-org.c * Added support for GeoIP Domain Names in geoipupdate --- net/GeoIP/Makefile | 6 ++++-- net/GeoIP/PLIST | 6 +----- net/GeoIP/distinfo | 10 +++++----- net/GeoIP/patches/patch-aa | 12 ++++++------ 4 files changed, 16 insertions(+), 18 deletions(-) (limited to 'net') diff --git a/net/GeoIP/Makefile b/net/GeoIP/Makefile index d0a0cd26815..4640a4236b8 100644 --- a/net/GeoIP/Makefile +++ b/net/GeoIP/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2005/04/11 21:46:43 tv Exp $ +# $NetBSD: Makefile,v 1.12 2005/10/22 19:58:42 heinz Exp $ # -DISTNAME= GeoIP-1.3.8 +DISTNAME= GeoIP-1.3.14 CATEGORIES= net MASTER_SITES= http://www.maxmind.com/download/geoip/api/c/ @@ -20,5 +20,7 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} EGDIR= ${PREFIX}/share/examples/GeoIP CONF_FILES= ${EGDIR}/GeoIP.conf.default ${PKG_SYSCONFDIR}/GeoIP.conf +TEST_TARGET= check + .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/net/GeoIP/PLIST b/net/GeoIP/PLIST index 5cdef4ca256..8e5fd10c7d6 100644 --- a/net/GeoIP/PLIST +++ b/net/GeoIP/PLIST @@ -1,14 +1,10 @@ -@comment $NetBSD: PLIST,v 1.4 2004/09/22 08:09:46 jlam Exp $ -bin/geoipexport -bin/geoipexportlocations +@comment $NetBSD: PLIST,v 1.5 2005/10/22 19:58:42 heinz Exp $ bin/geoiplookup bin/geoipupdate include/GeoIP.h -include/GeoIPBitReader.h include/GeoIPCity.h include/GeoIPUpdate.h lib/libGeoIP.la -lib/libGeoIPBitReader.la lib/libGeoIPUpdate.la man/man1/geoiplookup.1 man/man1/geoipupdate.1 diff --git a/net/GeoIP/distinfo b/net/GeoIP/distinfo index 73779551adb..92e7d2cc0a1 100644 --- a/net/GeoIP/distinfo +++ b/net/GeoIP/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2005/02/24 12:13:41 agc Exp $ +$NetBSD: distinfo,v 1.6 2005/10/22 19:58:42 heinz Exp $ -SHA1 (GeoIP-1.3.8.tar.gz) = 5cb2b0568e9029c91056cd0809a155754987987b -RMD160 (GeoIP-1.3.8.tar.gz) = 5b315b3933558acfb39cd297e54c9edceeca46d7 -Size (GeoIP-1.3.8.tar.gz) = 585538 bytes -SHA1 (patch-aa) = 5cf4eed4243162480e05bc472537150e783e15e4 +SHA1 (GeoIP-1.3.14.tar.gz) = dfba645d525c681c92df1bea715e70cac6045b2e +RMD160 (GeoIP-1.3.14.tar.gz) = 9ada38e4b825dc4262a97a8c308eec3d077c1071 +Size (GeoIP-1.3.14.tar.gz) = 677526 bytes +SHA1 (patch-aa) = a23fd601cfd69a39c13fb5e0605084d84ea3c64a diff --git a/net/GeoIP/patches/patch-aa b/net/GeoIP/patches/patch-aa index af7292246b6..4bf74ba5305 100644 --- a/net/GeoIP/patches/patch-aa +++ b/net/GeoIP/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/06/01 10:24:42 jmmv Exp $ +$NetBSD: patch-aa,v 1.2 2005/10/22 19:58:42 heinz Exp $ ---- conf/Makefile.in.orig 2003-03-11 02:25:32.000000000 +0100 +--- conf/Makefile.in.orig Wed Sep 7 23:07:43 2005 +++ conf/Makefile.in -@@ -23,7 +23,7 @@ bindir = @bindir@ +@@ -25,7 +25,7 @@ bindir = @bindir@ sbindir = @sbindir@ libexecdir = @libexecdir@ datadir = @datadir@ @@ -11,11 +11,11 @@ $NetBSD: patch-aa,v 1.1.1.1 2003/06/01 10:24:42 jmmv Exp $ sharedstatedir = @sharedstatedir@ localstatedir = @localstatedir@ libdir = @libdir@ -@@ -152,7 +152,6 @@ install-exec: install-exec-am +@@ -211,7 +211,6 @@ info-am: install-data-am: @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) install-data-hook - install-data: install-data-am - install-am: all-am + install-exec-am: install-sysconfDATA + -- cgit v1.2.3