mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
File::Tempdir is a Perl5 module which provides an object interface to
tempdir() from File::Temp. This allow to destroy the temporary directory as soon you don't need it anymore using the magic DESTROY() function automatically call be perl when the object is no longer reference. Author: Olivier Thauvin <nanardon@nanardon.zarb.org> WWW: http://search.cpan.org/dist/File-Tempdir/ PR: ports/108440 Submitted by: loader <loader at freebsdmall.com>
This commit is contained in:
parent
3c4ae742a9
commit
0420e16f0a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183481
5 changed files with 44 additions and 0 deletions
|
@ -1127,6 +1127,7 @@
|
|||
SUBDIR += p5-File-Sync
|
||||
SUBDIR += p5-File-Tail
|
||||
SUBDIR += p5-File-Temp
|
||||
SUBDIR += p5-File-Tempdir
|
||||
SUBDIR += p5-File-Type
|
||||
SUBDIR += p5-File-chdir
|
||||
SUBDIR += p5-File-pushd
|
||||
|
|
28
devel/p5-File-Tempdir/Makefile
Normal file
28
devel/p5-File-Tempdir/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
|||
# New ports collection makefile for: p5-File-Tempdir
|
||||
# Date created: 2007-01-02
|
||||
# Whom: loader <loader@freebsdmall.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= File-Tempdir
|
||||
PORTVERSION= 0.02
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= File
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= loader@freebsdmall.com
|
||||
COMMENT= Perl5 module to provide an object interface for File::Temp
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= File::Tempdir.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
IGNORE= requires perl 5.6.0 or later. Install lang/perl5.8 and try again
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
devel/p5-File-Tempdir/distinfo
Normal file
3
devel/p5-File-Tempdir/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (File-Tempdir-0.02.tar.gz) = 51f609343908803bbc78774ceb81c431
|
||||
SHA256 (File-Tempdir-0.02.tar.gz) = d339d057359c8f7249ce1958ea9618b50d9f6b3ff6228199c319f5eb17e13be8
|
||||
SIZE (File-Tempdir-0.02.tar.gz) = 1768
|
7
devel/p5-File-Tempdir/pkg-descr
Normal file
7
devel/p5-File-Tempdir/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
File::Tempdir is a Perl5 module which provides an object interface to
|
||||
tempdir() from File::Temp. This allow to destroy the temporary directory
|
||||
as soon you don't need it anymore using the magic DESTROY() function
|
||||
automatically call be perl when the object is no longer reference.
|
||||
|
||||
Author: Olivier Thauvin <nanardon@nanardon.zarb.org>
|
||||
WWW: http://search.cpan.org/dist/File-Tempdir/
|
5
devel/p5-File-Tempdir/pkg-plist
Normal file
5
devel/p5-File-Tempdir/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
%%SITE_PERL%%/File/Tempdir.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Tempdir/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Tempdir
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File
|
||||
@dirrmtry %%SITE_PERL%%/File
|
Loading…
Add table
Reference in a new issue