pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/php4-shmop Add php4 module shmop, simplified int...
details: https://anonhg.NetBSD.org/pkgsrc/rev/d4780f2cfbb1
branches: trunk
changeset: 481347:d4780f2cfbb1
user: jdolecek <jdolecek%pkgsrc.org@localhost>
date: Sat Oct 02 10:10:59 2004 +0000
description:
Add php4 module shmop, simplified interface to SysV shared memory for PHP
diffstat:
devel/php4-shmop/DESCR | 14 ++++++++++++++
devel/php4-shmop/Makefile | 14 ++++++++++++++
2 files changed, 28 insertions(+), 0 deletions(-)
diffs (36 lines):
diff -r 54cac54f171d -r d4780f2cfbb1 devel/php4-shmop/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php4-shmop/DESCR Sat Oct 02 10:10:59 2004 +0000
@@ -0,0 +1,14 @@
+PHP is a programming language designed to be embedded into web pages.
+
+Shmop is an easy to use set of functions that allows PHP to read,
+write, create and delete Unix SysV-style shared memory segments.
+
+While developing a search deamon we needed a php based front end
+to communicate the deamon via SHM. PHP already had a shared memory
+extention (sysvshm) written by Christian Cartus <cartus%atrior.de@localhost>,
+unfortunatly this extention was designed with PHP only in mind and
+offers high level features which are extremly bothersome for basic
+SHM we had in mind. After spending a day trying to reverse engineer
+and figure out the format of sysvshm we decided that it would be
+much easier to add our own extention to php for simple SHM operations,
+we were right :)).
diff -r 54cac54f171d -r d4780f2cfbb1 devel/php4-shmop/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php4-shmop/Makefile Sat Oct 02 10:10:59 2004 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/10/02 10:10:59 jdolecek Exp $
+
+MODNAME= shmop
+CATEGORIES+= devel
+PKGREVISION= # empty
+COMMENT= PHP4 extension for simple SysV shared memory operations
+
+USE_BUILDLINK3= YES
+
+.include "../../www/php4/Makefile.module"
+
+CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR}
+
+.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index