diff options
author | mjl <mjl> | 2001-11-20 08:04:50 +0000 |
---|---|---|
committer | mjl <mjl> | 2001-11-20 08:04:50 +0000 |
commit | 92b1f8524bd089546d85e2951c15bb1824297d0c (patch) | |
tree | 0ccf6a93ba1832271aefe30fc43ef1fb98856557 /devel/p5-IPC-ShareLite | |
parent | 12394f0665be8e5433d4d46317c3832985dc458d (diff) | |
download | pkgsrc-92b1f8524bd089546d85e2951c15bb1824297d0c.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/DESCR | 12 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/Makefile | 18 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/PLIST | 1 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/distinfo | 5 | ||||
-rw-r--r-- | devel/p5-IPC-ShareLite/patches/patch-aa | 12 |
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. |