From owner-svn-ports-head@FreeBSD.ORG Sat Dec 13 18:20:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5390B487; Sat, 13 Dec 2014 18:20:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F53C670; Sat, 13 Dec 2014 18:20:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDIKN2R011019; Sat, 13 Dec 2014 18:20:23 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBDIKMbm011015; Sat, 13 Dec 2014 18:20:22 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412131820.sBDIKMbm011015@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 13 Dec 2014 18:20:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374669 - in head/net: . pecl-ip2location X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Dec 2014 18:20:23 -0000 Author: pawel Date: Sat Dec 13 18:20:21 2014 New Revision: 374669 URL: https://svnweb.freebsd.org/changeset/ports/374669 QAT: https://qat.redports.org/buildarchive/r374669/ Log: This PECL extension enables you to get the geo location information of an IP address, such as country, region or state, city, latitude and longitude, US ZIP code, time zone, Internet Service Provider (ISP) or company name, domain name, net speed, area code, weather station code, weather station name, mobile country code (MCC), mobile network code (MNC) and carrier brand, elevation, and usage type. WWW: http://pecl.php.net/package/ip2location PR: 195421 Submitted by: Gasol Wu Added: head/net/pecl-ip2location/ head/net/pecl-ip2location/Makefile (contents, props changed) head/net/pecl-ip2location/distinfo (contents, props changed) head/net/pecl-ip2location/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Dec 13 18:10:31 2014 (r374668) +++ head/net/Makefile Sat Dec 13 18:20:21 2014 (r374669) @@ -820,6 +820,7 @@ SUBDIR += pecl-cvsclient SUBDIR += pecl-geoip SUBDIR += pecl-gupnp + SUBDIR += pecl-ip2location SUBDIR += pecl-mosquitto SUBDIR += pecl-oauth SUBDIR += pecl-radius Added: head/net/pecl-ip2location/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/pecl-ip2location/Makefile Sat Dec 13 18:20:21 2014 (r374669) @@ -0,0 +1,23 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= ip2location +PORTVERSION= 6.0.3 +CATEGORIES= net pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= Get geo location information of an IP address + +LICENSE= PHP301 + +LIB_DEPENDS= libIP2Location.so:${PORTSDIR}/net/ip2location + +USES= tar:tgz +USE_PHP= yes +USE_PHPIZE= yes +USE_PHPEXT= yes + +.include Added: head/net/pecl-ip2location/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/pecl-ip2location/distinfo Sat Dec 13 18:20:21 2014 (r374669) @@ -0,0 +1,2 @@ +SHA256 (PECL/ip2location-6.0.3.tgz) = b36064446032d32e0cb4bfb86615a58ef5403ea9bfef31f695fb67c59ffb0434 +SIZE (PECL/ip2location-6.0.3.tgz) = 321386 Added: head/net/pecl-ip2location/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/pecl-ip2location/pkg-descr Sat Dec 13 18:20:21 2014 (r374669) @@ -0,0 +1,8 @@ +This PECL extension enables you to get the geo location information of an IP +address, such as country, region or state, city, latitude and longitude, US +ZIP code, time zone, Internet Service Provider (ISP) or company name, domain +name, net speed, area code, weather station code, weather station name, +mobile country code (MCC), mobile network code (MNC) and carrier brand, +elevation, and usage type. + +WWW: http://pecl.php.net/package/ip2location