Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Feb 2016 20:37:44 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r407846 - in head/devel: . php-maxminddb
Message-ID:  <201602022037.u12KbiCI044314@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <danger@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602022037.u12KbiCI044314>