summaryrefslogtreecommitdiff
path: root/devel/p5-IPC-ShareLite
diff options
context:
space:
mode:
authormjl <mjl@pkgsrc.org>2001-11-20 08:04:50 +0000
committermjl <mjl@pkgsrc.org>2001-11-20 08:04:50 +0000
commite06ff0adfc425c8f0d58674dcc330ec755a75d08 (patch)
tree0ccf6a93ba1832271aefe30fc43ef1fb98856557 /devel/p5-IPC-ShareLite
parent29f2e4de5aefd57efd44a1d0d53a8feac42644f0 (diff)
downloadpkgsrc-e06ff0adfc425c8f0d58674dcc330ec755a75d08.tar.gz
Initial import of p5-IPC-ShareLite
IPC::ShareLite provides a simple interface to shared memory, allowing data to be efficiently communicated between processes. It provides an abstraction of the shared memory and semaphore facilities of SysV IPC, allowing the storage of arbitrarily large data; the module automatically acquires and removes shared memory segments as needed. Storage and retrieval of data is atomic, and locking functions are provided for higher-level synchronization. In many respects, this module is similar to IPC::Shareable. However, IPC::ShareLite does not provide a tied interface, does not (automatically) allow the storage of variables, and is written in C for additional speed.
Diffstat (limited to 'devel/p5-IPC-ShareLite')
-rw-r--r--devel/p5-IPC-ShareLite/DESCR12
-rw-r--r--devel/p5-IPC-ShareLite/Makefile18
-rw-r--r--devel/p5-IPC-ShareLite/PLIST1
-rw-r--r--devel/p5-IPC-ShareLite/distinfo5
-rw-r--r--devel/p5-IPC-ShareLite/patches/patch-aa12
5 files changed, 48 insertions, 0 deletions
diff --git a/devel/p5-IPC-ShareLite/DESCR b/devel/p5-IPC-ShareLite/DESCR
new file mode 100644
index 00000000000..cf37df936f4
--- /dev/null
+++ b/devel/p5-IPC-ShareLite/DESCR
@@ -0,0 +1,12 @@
+IPC::ShareLite provides a simple interface to shared memory, allowing
+data to be efficiently communicated between processes.
+
+It provides an abstraction of the shared memory and semaphore facilities
+of SysV IPC, allowing the storage of arbitrarily large data; the module
+automatically acquires and removes shared memory segments as needed.
+Storage and retrieval of data is atomic, and locking functions are
+provided for higher-level synchronization.
+
+In many respects, this module is similar to IPC::Shareable. However,
+IPC::ShareLite does not provide a tied interface, does not (automatically)
+allow the storage of variables, and is written in C for additional speed.
diff --git a/devel/p5-IPC-ShareLite/Makefile b/devel/p5-IPC-ShareLite/Makefile
new file mode 100644
index 00000000000..4b8fefd439d
--- /dev/null
+++ b/devel/p5-IPC-ShareLite/Makefile
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/11/20 08:04:50 mjl Exp $
+#
+
+DISTNAME= IPC-ShareLite-0.08
+PKGNAME= p5-${DISTNAME}
+CATEGORIES= devel perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IPC/}
+
+MAINTAINER= packages@netbsd.org
+COMMENT= Light-weight interface to shared memory
+
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/IPC/ShareLite/.packlist
+
+do-configure:
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL </dev/null
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/p5-IPC-ShareLite/PLIST b/devel/p5-IPC-ShareLite/PLIST
new file mode 100644
index 00000000000..97327ed461e
--- /dev/null
+++ b/devel/p5-IPC-ShareLite/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2001/11/20 08:04:50 mjl Exp $
diff --git a/devel/p5-IPC-ShareLite/distinfo b/devel/p5-IPC-ShareLite/distinfo
new file mode 100644
index 00000000000..89aaf42edab
--- /dev/null
+++ b/devel/p5-IPC-ShareLite/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2001/11/20 08:04:50 mjl Exp $
+
+SHA1 (IPC-ShareLite-0.08.tar.gz) = e3387aaa3c98c28a5325d643d9e3bf1f79996ffb
+Size (IPC-ShareLite-0.08.tar.gz) = 36370 bytes
+SHA1 (patch-aa) = 50ac1322ce73b7eb41fcd27cb4f1eebcd82fa741
diff --git a/devel/p5-IPC-ShareLite/patches/patch-aa b/devel/p5-IPC-ShareLite/patches/patch-aa
new file mode 100644
index 00000000000..3f44677913f
--- /dev/null
+++ b/devel/p5-IPC-ShareLite/patches/patch-aa
@@ -0,0 +1,12 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/11/20 08:04:50 mjl Exp $
+
+--- Makefile.PL.orig Tue Nov 20 08:50:27 2001
++++ Makefile.PL Tue Nov 20 08:50:34 2001
+@@ -1,6 +1,6 @@
+ use ExtUtils::MakeMaker;
+
+-system('./Configure');
++system('./Configure -d');
+
+ # See lib/ExtUtils/MakeMaker.pm for details of how to influence
+ # the contents of the Makefile that is written.