Date: Sat, 13 Dec 2014 18:00:11 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374667 - in head/net: . ip2location Message-ID: <201412131800.sBDI0BXS000940@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Sat Dec 13 18:00:10 2014 New Revision: 374667 URL: https://svnweb.freebsd.org/changeset/ports/374667 QAT: https://qat.redports.org/buildarchive/r374667/ Log: IP2Location is a C library that enables the user to find the country, region, city, latitude, longitude, zip code, time zone, ISP, domain name, connection type, area code, weather, mobile network, elevation, usage type by IP address or hostname originates from. It contains a demo IP2Location IP-COUNTRY BIN database which consists of real data for IP address range 0.0.0.0 to 99.255. 255.255. This database contains IP address blocks as key and countries as values. WWW: http://www.ip2location.com/c.aspx PR: 195420 Submitted by: Gasol Wu <gasol.wu@gmail.com> Added: head/net/ip2location/ head/net/ip2location/Makefile (contents, props changed) head/net/ip2location/distinfo (contents, props changed) head/net/ip2location/pkg-descr (contents, props changed) head/net/ip2location/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Dec 13 17:58:48 2014 (r374666) +++ head/net/Makefile Sat Dec 13 18:00:10 2014 (r374667) @@ -225,6 +225,7 @@ SUBDIR += ilbc SUBDIR += imapproxy SUBDIR += iodine + SUBDIR += ip2location SUBDIR += ip6_int SUBDIR += ipgrab SUBDIR += iplog Added: head/net/ip2location/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ip2location/Makefile Sat Dec 13 18:00:10 2014 (r374667) @@ -0,0 +1,23 @@ +# Created by: Gasol Wu <gasol.wu@gmail.com> +# $FreeBSD$ + +PORTNAME= ip2location +PORTVERSION= 6.0.3 +CATEGORIES= net +MASTER_SITES= http://www.ip2location.com/downloads/ +DISTNAME= ${PORTNAME}-c-${PORTVERSION} + +MAINTAINER= gasol.wu@gmail.com +COMMENT= C library to find user\'s location + +LICENSE= LGPL3 + +USES= libtool:keepla perl5 +HAS_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +post-configure: + (cd ${WRKSRC}/data && ${MAKE} convert) + +.include <bsd.port.mk> Added: head/net/ip2location/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ip2location/distinfo Sat Dec 13 18:00:10 2014 (r374667) @@ -0,0 +1,2 @@ +SHA256 (ip2location-c-6.0.3.tar.gz) = 3bd2a46544c7a433c55f96b602bc35a9f7782e2b0addfdbe9eb8ecaa717f7f10 +SIZE (ip2location-c-6.0.3.tar.gz) = 3145564 Added: head/net/ip2location/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ip2location/pkg-descr Sat Dec 13 18:00:10 2014 (r374667) @@ -0,0 +1,9 @@ +IP2Location is a C library that enables the user to find the country, region, +city, latitude, longitude, zip code, time zone, ISP, domain name, connection +type, area code, weather, mobile network, elevation, usage type by IP address +or hostname originates from. It contains a demo IP2Location IP-COUNTRY BIN +database which consists of real data for IP address range 0.0.0.0 to 99.255. +255.255. This database contains IP address blocks as key and countries as +values. + +WWW: http://www.ip2location.com/c.aspx Added: head/net/ip2location/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ip2location/pkg-plist Sat Dec 13 18:00:10 2014 (r374667) @@ -0,0 +1,9 @@ +include/IP2Loc_DBInterface.h +include/IP2Location.h +lib/libIP2Location.a +lib/libIP2Location.la +lib/libIP2Location.so +lib/libIP2Location.so.1 +lib/libIP2Location.so.1.0.0 +share/IP2Loc/IP-COUNTRY.BIN +share/IP2Loc/IPV6-COUNTRY.BIN
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412131800.sBDI0BXS000940>