View | Details | Raw Unified | Return to bug 52161
Collapse All | Expand All

(-)Makefile (-3 / +2 lines)
Lines 6-23 Link Here
6
#
6
#
7
7
8
PORTNAME=	IPC-ShareLite
8
PORTNAME=	IPC-ShareLite
9
PORTVERSION=	0.08
9
PORTVERSION=	0.09
10
CATEGORIES=	devel perl5
10
CATEGORIES=	devel perl5
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
12
MASTER_SITE_SUBDIR=	IPC
12
MASTER_SITE_SUBDIR=	IPC
13
PKGNAMEPREFIX=	p5-
13
PKGNAMEPREFIX=	p5-
14
14
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	m@absolight.net
16
COMMENT=	A simple interface to access shared memory
16
COMMENT=	A simple interface to access shared memory
17
17
18
PERL_CONFIGURE=	yes
18
PERL_CONFIGURE=	yes
19
19
20
MANPREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}
21
MAN3=		IPC::ShareLite.3
20
MAN3=		IPC::ShareLite.3
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (IPC-ShareLite-0.08.tar.gz) = 2c908d8b733faa0426acb513e5319bf7
1
MD5 (IPC-ShareLite-0.09.tar.gz) = 3942a55cfc5e6d3b612a46cc1a9515b9
(-)pkg-descr (-4 / +5 lines)
Lines 1-4 Link Here
1
PC::ShareLite provides a simple interface to shared memory, allowing
1
IPC::ShareLite provides a simple interface to shared memory, allowing data to
2
data to be efficiently communicated between processes.  Your operating
2
be efficiently communicated between processes.  Your operating system must
3
system must support SysV IPC (shared memory and semaphores) in order to
3
support SysV IPC (shared memory and semaphores) in order to use this module.
4
use this module.
4
5
WWW: http://search.cpan.org/dist/IPC-ShareLite
(-)pkg-plist (-8 / +8 lines)
Lines 1-8 Link Here
1
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/IPC/ShareLite.pm
1
%%SITE_PERL%%/%%PERL_ARCH%%/IPC/ShareLite.pm
2
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/.packlist
2
%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/ShareLite/.packlist
3
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.bs
3
%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.bs
4
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.so
4
%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/ShareLite/ShareLite.so
5
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite/autosplit.ix
5
%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/ShareLite/autosplit.ix
6
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/ShareLite
6
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/ShareLite
7
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC 2>/dev/null || true
7
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC 2>/dev/null || true
8
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/IPC 2>/dev/null || true
8
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/IPC 2>/dev/null || true

Return to bug 52161