summaryrefslogtreecommitdiff
path: root/devel/p5-IPC-ShareLite/Makefile
diff options
context:
space:
mode:
authormjl <mjl>2001-11-20 08:04:50 +0000
committermjl <mjl>2001-11-20 08:04:50 +0000
commit8148f1ae92158cbe9faf5b518b2e1249872477dc (patch)
tree0ccf6a93ba1832271aefe30fc43ef1fb98856557 /devel/p5-IPC-ShareLite/Makefile
parentb1e2554d09ceb91aec72039b9bd1018c26d6aad6 (diff)
downloadpkgsrc-8148f1ae92158cbe9faf5b518b2e1249872477dc.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/Makefile')
-rw-r--r--devel/p5-IPC-ShareLite/Makefile18
1 files changed, 18 insertions, 0 deletions
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"