diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-02-04 11:26:04 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-02-04 11:26:04 +0000 |
commit | 35dbd00b34d0dabcce961848cbfd466a8889e17d (patch) | |
tree | fd54e82dcecfbce62a0bef2a35adeca435e897db /devel/p5-Cache-Mmap/Makefile | |
parent | 62f59acea2f0a2e4a80437060785420eb1b85ef3 (diff) | |
download | ports-35dbd00b34d0dabcce961848cbfd466a8889e17d.tar.gz ports-35dbd00b34d0dabcce961848cbfd466a8889e17d.zip |
New port: Cache::Mmap
This module provides a shared cache, using a memory mapped
file. Very useful for mod_perl applications. If routines
are provided which interact with the underlying data, access
to the cache is completely transparent, and the module
handles all the details of refreshing cache contents, and
updating underlying data, if necessary.
PR: ports/47465
Submitted by: Erwin Lansing <erwin@lansing.dk>
Notes
Notes:
svn path=/head/; revision=74638
Diffstat (limited to 'devel/p5-Cache-Mmap/Makefile')
-rw-r--r-- | devel/p5-Cache-Mmap/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/devel/p5-Cache-Mmap/Makefile b/devel/p5-Cache-Mmap/Makefile new file mode 100644 index 000000000000..ee5fe4616bf3 --- /dev/null +++ b/devel/p5-Cache-Mmap/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: p5-Cache-Mmap +# Date created: January 25th 2003 +# Whom: Erwin Lansing <erwin@lansing.dk> +# +# $FreeBSD$ +# + +PORTNAME= Cache-Mmap +PORTVERSION= 0.05 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Cache +PKGNAMEPREFIX= p5- + +MAINTAINER= erwin@lansing.dk + +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} +MAN3= Cache::Mmap.3 + +.include <bsd.port.mk> |