svn commit: r428726 - in head/databases: . php70-memcache

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Dec 17 12:49:42 UTC 2016


Author: sunpoet
Date: Sat Dec 17 12:49:40 2016
New Revision: 428726
URL: https://svnweb.freebsd.org/changeset/ports/428726

Log:
  - Add php70-memcache
  
  Memcached is a caching daemon designed especially for dynamic web applications
  to decrease database load by storing objects in memory. This extension allows
  you to work with memcached through handy OO and procedural interfaces.
  
  Note that this port uses unofficial development from
  https://github.com/websupport-sk/pecl-memcache (NON_BLOCKING_IO_php7 branch).
  
  WWW: https://pecl.php.net/package/memcache

Added:
  head/databases/php70-memcache/
  head/databases/php70-memcache/Makefile   (contents, props changed)
  head/databases/php70-memcache/distinfo   (contents, props changed)
  head/databases/php70-memcache/pkg-descr   (contents, props changed)
  head/databases/php70-memcache/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sat Dec 17 12:31:49 2016	(r428725)
+++ head/databases/Makefile	Sat Dec 17 12:49:40 2016	(r428726)
@@ -611,6 +611,7 @@
     SUBDIR += php56-sybase_ct
     SUBDIR += php70-dba
     SUBDIR += php70-interbase
+    SUBDIR += php70-memcache
     SUBDIR += php70-memcached
     SUBDIR += php70-mysqli
     SUBDIR += php70-odbc

Added: head/databases/php70-memcache/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php70-memcache/Makefile	Sat Dec 17 12:49:40 2016	(r428726)
@@ -0,0 +1,34 @@
+# Created by: Gerrit Beine <tux at pinguru.net>
+# $FreeBSD$
+
+PORTNAME=	memcache
+PORTVERSION=	3.0.8
+PORTREVISION=	1
+CATEGORIES=	databases
+PKGNAMEPREFIX=	php70-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Memcached extension for PHP 7
+
+LICENSE=	PHP30
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+OPTIONS_DEFINE=	EXAMPLES
+
+CONFIGURE_ARGS=	--with-zlib-dir=/usr
+IGNORE_WITH_PHP=56
+PHP_VER=	70
+USE_CSTD=	gnu89
+USE_PHP=	session:build zlib:build
+USES=		dos2unix php:ext
+
+GH_ACCOUNT=	websupport-sk
+GH_PROJECT=	pecl-${PORTNAME}
+GH_TAGNAME=	5041d2f
+USE_GITHUB=	yes
+
+post-install-EXAMPLES-on:
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
+	${INSTALL_DATA} ${WRKSRC}/example.php ${STAGEDIR}${EXAMPLESDIR}/
+
+.include <bsd.port.mk>

Added: head/databases/php70-memcache/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php70-memcache/distinfo	Sat Dec 17 12:49:40 2016	(r428726)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1481566704
+SHA256 (websupport-sk-pecl-memcache-3.0.8-5041d2f_GH0.tar.gz) = b441255305e962cecfbb6e88501374a317aeb4dec706e3c2e7c780bb26bf5a96
+SIZE (websupport-sk-pecl-memcache-3.0.8-5041d2f_GH0.tar.gz) = 110448

Added: head/databases/php70-memcache/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php70-memcache/pkg-descr	Sat Dec 17 12:49:40 2016	(r428726)
@@ -0,0 +1,8 @@
+Memcached is a caching daemon designed especially for dynamic web applications
+to decrease database load by storing objects in memory. This extension allows
+you to work with memcached through handy OO and procedural interfaces.
+
+Note that this port uses unofficial development from
+https://github.com/websupport-sk/pecl-memcache (NON_BLOCKING_IO_php7 branch).
+
+WWW: https://pecl.php.net/package/memcache

Added: head/databases/php70-memcache/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php70-memcache/pkg-plist	Sat Dec 17 12:49:40 2016	(r428726)
@@ -0,0 +1 @@
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.php


More information about the svn-ports-head mailing list