diff options
author | miwi <miwi@FreeBSD.org> | 2009-08-14 17:21:52 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-08-14 17:21:52 +0800 |
commit | 8cbc5c76056eae0a6bd627aca81dc73380c8f58a (patch) | |
tree | d80091035c05b5778a28d33ad79194df1bcdfb26 | |
parent | d5609ceab81ec3af6ffaab2d6b7a3a5fb25ee113 (diff) | |
download | freebsd-ports-gnome-8cbc5c76056eae0a6bd627aca81dc73380c8f58a.tar.gz freebsd-ports-gnome-8cbc5c76056eae0a6bd627aca81dc73380c8f58a.tar.zst freebsd-ports-gnome-8cbc5c76056eae0a6bd627aca81dc73380c8f58a.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/Makefile | 1 | ||||
-rw-r--r-- | converters/igbinary/Makefile | 21 | ||||
-rw-r--r-- | converters/igbinary/distinfo | 3 | ||||
-rw-r--r-- | converters/igbinary/pkg-descr | 7 |
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/ |