2012-05-19 00:12:42 +00:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
2012-05-28 05:18:29 +00:00
|
|
|
PortGroup php 1.1
|
2012-05-19 00:12:42 +00:00
|
|
|
|
2012-05-28 05:18:29 +00:00
|
|
|
name php-igbinary
|
2012-05-19 00:12:42 +00:00
|
|
|
categories-append net devel
|
2013-01-30 07:27:45 +00:00
|
|
|
license BSD PHP-3.01
|
2012-05-19 00:12:42 +00:00
|
|
|
platforms darwin freebsd openbsd
|
2026-04-01 20:40:32 +02:00
|
|
|
maintainers {ryandesign @ryandesign} {mathiesen.info:macintosh @BjarneDMat} openmaintainer
|
2012-05-19 00:12:42 +00:00
|
|
|
|
2026-03-22 15:56:44 +01:00
|
|
|
php.branches 5.3 5.4 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 8.5
|
2012-05-28 05:18:29 +00:00
|
|
|
php.pecl yes
|
|
|
|
|
|
2024-01-10 00:19:47 -06:00
|
|
|
if {[vercmp ${php.branch} >= 7.0]} {
|
2024-08-13 17:55:04 -05:00
|
|
|
version 3.2.16
|
2020-01-18 23:24:16 -06:00
|
|
|
revision 0
|
2024-08-13 17:55:04 -05:00
|
|
|
checksums rmd160 26d4b5ffddb6c2692b6bca70f1c1279a605d75bb \
|
|
|
|
|
sha256 8bf25d465abc7973d9e2c9a3039a5f8eea635b23bc1477017ff3999ff95836da \
|
|
|
|
|
size 103279
|
2026-03-22 15:56:44 +01:00
|
|
|
patch.pre_args-replace -p0 -p1
|
|
|
|
|
patchfiles-append \
|
|
|
|
|
patch-src_php7_php_igbinary.h.diff
|
2024-01-10 00:19:47 -06:00
|
|
|
} elseif {[vercmp ${php.branch} >= 5.2]} {
|
2018-12-10 10:23:42 -06:00
|
|
|
version 2.0.8
|
|
|
|
|
revision 0
|
|
|
|
|
checksums rmd160 ea29b28150104df01f26557c0465af4bf2819ece \
|
|
|
|
|
sha256 bacbab1172e073b1857dc07a486bfdaca6d60fbed678ce0f4b37cd018ef5b680 \
|
|
|
|
|
size 76708
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-19 00:12:42 +00:00
|
|
|
description PHP serializer.
|
|
|
|
|
|
|
|
|
|
long_description 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.
|
|
|
|
|
|
|
|
|
|
test.run yes
|