* Fix geoipupdate's my_printf function * Fix typo in apps/geoipupdate-pureperl.pl replace PerlIO::Gzip with PerlIO::gzip * Update region codes in libGeoIP/regionName.c * Fix regioncode/generate_regionName.pl to handle regioncodes with ',' correct * Update fips codes 20090201 * Fix unicode builds on WIN32 and eliminate some warnings * Fix sign error in _iso_8859_1__utf8 for PPC64 * Change WIN32 to _WIN32, since _WIN32 is defined by default * Remove the WSAStartup call from GeoIP_open * Silence various warnings * Add more timezone region's for Australia * Fix possible segfault in apps/geoiplookup with null pointers in non gnu printf implementations for example solaris * Add README.OSX to build fat binaries easy * Silence vasprintf warning via AC_GNU_SOURCE * Add several Makefiles to build a static GeoIP.lib for w32 * Silence signedness warnings * Remove --with-city configure option * Remove configure's --with-dbdir option. Use the similar --datadir instead * Various autotools improvements and cleanups. Including parallel build fix. * Fix libGeoIP/timeZone.c * Fix timezone/generate_timeZone.pl * Sync FIPS codes again Jan 14th, 2009 * Fix CA,NL regioncode * Change logic in generate_regionName.pl and GeoIP_region_name_by_code * Sync regionName.c with http://www.maxmind.com/app/fips10_4 from Dec 17th, 2008 * Fix _GeoIP_lookupaddress for 64bit big endian systems like ppc64 * Add proper WIN32/64 support * Escape - in all manpages * Add manpage for geoiplookup6 * Fix -d command line option * GeoIPUpdate.c use vasprintf if avail, otherwise try vsnprintf and sprintf * avoid pre/postincrement and assignment on the same variable
27 lines
742 B
Makefile
27 lines
742 B
Makefile
# $NetBSD: Makefile,v 1.20 2009/04/24 10:17:22 adam Exp $
|
|
|
|
DISTNAME= GeoIP-1.4.6
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.maxmind.com/download/geoip/api/c/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.maxmind.com/download/geoip/api/c/
|
|
COMMENT= Find the country from any IP address
|
|
|
|
#LICENSE= gnu-lgpl-v2.1
|
|
#LICENSE+= gnu-gpl-v2 # md5.c and types.h, from GNUPG
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
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"
|