aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-08-14 17:21:52 +0800
committerMartin Wilke <miwi@FreeBSD.org>2009-08-14 17:21:52 +0800
commitccd270420b099dabee258128f37a8f0348eb1437 (patch)
tree1b59f9ae601e2bfdba0f62df45875fcc2d889dab
parent2772be9399610de90fab074eca07c188ca26f21f (diff)
downloadfreebsd-ports-gnome-ccd270420b099dabee258128f37a8f0348eb1437.tar.gz
freebsd-ports-gnome-ccd270420b099dabee258128f37a8f0348eb1437.tar.zst
freebsd-ports-gnome-ccd270420b099dabee258128f37a8f0348eb1437.zip
Igbinary is a drop in replacement for the standard PHP serializer.
Instead of time and space consuming textual representation, igbinary stores PHP data structures in a compact binary form. Savings are significant when using memcached or similar memory based storages for serialized data. WWW: http://opensource.dynamoid.com/ PR: ports/137308 Submitted by: Gea-Suan Lin <gslin at gslin.org>
-rw-r--r--converters/Makefile1
-rw-r--r--converters/igbinary/Makefile21
-rw-r--r--converters/igbinary/distinfo3
-rw-r--r--converters/igbinary/pkg-descr7
4 files changed, 32 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile
index 7713c8f32606..5658f4be710f 100644
--- a/converters/Makefile
+++ b/converters/Makefile
@@ -28,6 +28,7 @@
SUBDIR += iconv
SUBDIR += iconv-extra
SUBDIR += iconv-rfc1345
+ SUBDIR += igbinary
SUBDIR += ish
SUBDIR += konwert
SUBDIR += ktextdecode
diff --git a/converters/igbinary/Makefile b/converters/igbinary/Makefile
new file mode 100644
index 000000000000..da354c01233a
--- /dev/null
+++ b/converters/igbinary/Makefile
@@ -0,0 +1,21 @@
+# New ports collection makefile for: igbinary
+# Date created: 2009-06-05
+# Whom: Gea-Suan Lin <gslin@gslin.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= igbinary
+PORTVERSION= 1.0.1
+CATEGORIES= converters
+MASTER_SITES= http://opensource.dynamoid.com/
+
+MAINTAINER= gslin@gslin.org
+COMMENT= Replacement for the standard PHP serializer
+
+USE_PHP= session
+USE_PHP_BUILD= yes
+USE_PHPIZE= yes
+USE_PHPEXT= yes
+
+.include <bsd.port.mk>
diff --git a/converters/igbinary/distinfo b/converters/igbinary/distinfo
new file mode 100644
index 000000000000..c1d9fd02188e
--- /dev/null
+++ b/converters/igbinary/distinfo
@@ -0,0 +1,3 @@
+MD5 (igbinary-1.0.1.tar.gz) = dafdf33406524b175bd6124d5e51682b
+SHA256 (igbinary-1.0.1.tar.gz) = 940808c3d9ea09dfe2db85b0cddd9371cdea40de1e8c1e248a3015719fd21ae0
+SIZE (igbinary-1.0.1.tar.gz) = 24706
diff --git a/converters/igbinary/pkg-descr b/converters/igbinary/pkg-descr
new file mode 100644
index 000000000000..e075eb0366ec
--- /dev/null
+++ b/converters/igbinary/pkg-descr
@@ -0,0 +1,7 @@
+Igbinary is a drop in replacement for the standard PHP serializer.
+Instead of time and space consuming textual representation, igbinary
+stores PHP data structures in a compact binary form. Savings are
+significant when using memcached or similar memory based storages for
+serialized data.
+
+WWW: http://opensource.dynamoid.com/