From owner-svn-ports-all@freebsd.org Tue Feb 2 20:37:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3013AA988BF; Tue, 2 Feb 2016 20:37:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 E1E276E8; Tue, 2 Feb 2016 20:37:45 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u12Kbi7w044318; Tue, 2 Feb 2016 20:37:44 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u12KbiCI044314; Tue, 2 Feb 2016 20:37:44 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201602022037.u12KbiCI044314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 2 Feb 2016 20:37:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407846 - in head/devel: . php-maxminddb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 20:37:46 -0000 Author: pi Date: Tue Feb 2 20:37:44 2016 New Revision: 407846 URL: https://svnweb.freebsd.org/changeset/ports/407846 Log: New port: devel/php-maxminddb This is the PHP API for reading MaxMind DB files. MaxMind DB is a binary file format that stores data indexed by IP address subnets (IPv4 or IPv6). WWW: https://github.com/maxmind/MaxMind-DB-Reader-php PR: 202334 Submitted by: danger Added: head/devel/php-maxminddb/ head/devel/php-maxminddb/Makefile (contents, props changed) head/devel/php-maxminddb/distinfo (contents, props changed) head/devel/php-maxminddb/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 2 20:34:41 2016 (r407845) +++ head/devel/Makefile Tue Feb 2 20:37:44 2016 (r407846) @@ -3732,6 +3732,7 @@ SUBDIR += php-composer SUBDIR += php-jq SUBDIR += php-libawl + SUBDIR += php-maxminddb SUBDIR += php-memoize SUBDIR += php-scalar_objects SUBDIR += php-uprofiler Added: head/devel/php-maxminddb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/php-maxminddb/Makefile Tue Feb 2 20:37:44 2016 (r407846) @@ -0,0 +1,32 @@ +# Created by: Daniel Gerzo +# $FreeBSD$ + +PORTNAME= maxminddb +PORTVERSION= 1.1.0 +CATEGORIES= devel net +PKGNAMEPREFIX= php- + +MAINTAINER= danger@FreeBSD.org +COMMENT= MaxMind DB Reader extension for PHP + +LICENSE= APACHE20 + +LIB_DEPENDS= libmaxminddb.so:${PORTSDIR}/net/libmaxminddb + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +USE_GITHUB= yes +GH_ACCOUNT= maxmind +GH_PROJECT= MaxMind-DB-Reader-php +GH_TAGNAME= 1383655 + +WRKSRC_SUBDIR= ext + +USE_PHP= yes +IGNORE_WITH_PHP=4 +USE_PHPIZE= yes +USE_PHPEXT= yes +USES= tar:tgz + +.include Added: head/devel/php-maxminddb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/php-maxminddb/distinfo Tue Feb 2 20:37:44 2016 (r407846) @@ -0,0 +1,2 @@ +SHA256 (maxmind-MaxMind-DB-Reader-php-1.1.0-1383655_GH0.tgz) = a4870204292d89b0701aea62a33d439ff3038133f5247f0a6c5cf47fba5115e4 +SIZE (maxmind-MaxMind-DB-Reader-php-1.1.0-1383655_GH0.tgz) = 24797 Added: head/devel/php-maxminddb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/php-maxminddb/pkg-descr Tue Feb 2 20:37:44 2016 (r407846) @@ -0,0 +1,5 @@ +This is the PHP API for reading MaxMind DB files. MaxMind DB is a binary +file format that stores data indexed by IP address subnets (IPv4 or +IPv6). + +WWW: https://github.com/maxmind/MaxMind-DB-Reader-php