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

(-)Makefile (-2 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	File-CounterFile
8
PORTNAME=	File-CounterFile
9
PORTVERSION=	0.12
9
PORTVERSION=	1.00
10
CATEGORIES=	misc perl5
10
CATEGORIES=	misc perl5
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
12
MASTER_SITE_SUBDIR=	File
12
MASTER_SITE_SUBDIR=	File
Lines 17-23 Link Here
17
17
18
PERL_CONFIGURE=	yes
18
PERL_CONFIGURE=	yes
19
19
20
MANPREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}
21
MAN3=		File::CounterFile.3
20
MAN3=		File::CounterFile.3
22
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (File-CounterFile-0.12.tar.gz) = 3102c3a464278b42ccd5a2eca250cabc
1
MD5 (File-CounterFile-1.00.tar.gz) = 101bff08b3d307f8e9018cd9fcff45fc
(-)pkg-descr (-1 / +1 lines)
Lines 3-6 Link Here
3
so multiple processes might try to access the same counters at the same
3
so multiple processes might try to access the same counters at the same
4
time without risk fo counter destruction.
4
time without risk fo counter destruction.
5
5
6
WWW: http://www.cpan.org/
6
WWW: http://search.cpan.org/dist/File-CounterFile/
(-)pkg-plist (-5 / +5 lines)
Lines 1-5 Link Here
1
lib/perl5/site_perl/%%PERL_VER%%/File/CounterFile.pm
1
%%SITE_PERL%%/File/CounterFile.pm
2
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/CounterFile/.packlist
2
%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/CounterFile/.packlist
3
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/CounterFile
3
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/CounterFile
4
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true
4
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true
5
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/File 2>/dev/null || true
5
@unexec rmdir %D/%%SITE_PERL%%/File 2>/dev/null || true
(-)files/patch-aa (-12 / +12 lines)
Lines 1-15 Link Here
1
--- CounterFile.pm.orig	Sat May 16 21:47:34 1998
1
--- CounterFile.pm.orig	Tue Jul 30 16:45:06 2002
2
+++ CounterFile.pm	Mon Apr  8 11:48:26 2002
2
+++ CounterFile.pm	Fri May 16 15:23:52 2003
3
@@ -31,7 +31,7 @@
3
@@ -19,7 +19,7 @@
4
 If the file name does not start with "/" or ".", then it is
5
 interpreted as a file relative to C<$File::CounterFile::DEFAULT_DIR>.
6
 The default value for this variable is initialized from the
7
-environment variable C<TMPDIR>, or F</usr/tmp> is no environment
8
+environment variable C<TMPDIR>, or F</var/tmp> is no environment
9
 variable is defined.  You may want to assign a different value to this
10
 variable before creating counters.
11
 
12
@@ -88,7 +88,7 @@
13
 $DEFAULT_INITIAL = 0;                  # default initial counter value
4
 $DEFAULT_INITIAL = 0;                  # default initial counter value
14
 
5
 
15
  # default location for counter files
6
  # default location for counter files
Lines 18-20 Link Here
18
 
9
 
19
 # Experimental overloading.
10
 # Experimental overloading.
20
 use overload ('++'     => \&inc,
11
 use overload ('++'     => \&inc,
12
@@ -205,7 +205,7 @@
13
 If the file name does not start with "/" or ".", then it is
14
 interpreted as a file relative to C<$File::CounterFile::DEFAULT_DIR>.
15
 The default value for this variable is initialized from the
16
-environment variable C<TMPDIR>, or F</usr/tmp> is no environment
17
+environment variable C<TMPDIR>, or F</var/tmp> is no environment
18
 variable is defined.  You may want to assign a different value to this
19
 variable before creating counters.
20
 

Return to bug 52327