mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Perl extension for recursively copying files and directories
- needed by p5-Catalyst when execute 'perl Makefile.PL' after create a standalone server. - ijliao made this port, and I will maintain it :)
This commit is contained in:
parent
4042a103a7
commit
91e2669758
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=149727
5 changed files with 39 additions and 0 deletions
|
@ -902,6 +902,7 @@
|
|||
SUBDIR += p5-File-BasicFlock
|
||||
SUBDIR += p5-File-Binary
|
||||
SUBDIR += p5-File-Cache
|
||||
SUBDIR += p5-File-Copy-Recursive
|
||||
SUBDIR += p5-File-DirSync
|
||||
SUBDIR += p5-File-FTS
|
||||
SUBDIR += p5-File-Find-Rule
|
||||
|
|
23
devel/p5-File-Copy-Recursive/Makefile
Normal file
23
devel/p5-File-Copy-Recursive/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: File::Copy::Recursive
|
||||
# Date created: Nov 26, 2005
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= File-Copy-Recursive
|
||||
PORTVERSION= 0.16
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= File
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= clsung@FreeBSD.org
|
||||
COMMENT= Perl extension for recursively copying files and directories
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= File::Copy::Recursive.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/p5-File-Copy-Recursive/distinfo
Normal file
3
devel/p5-File-Copy-Recursive/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (File-Copy-Recursive-0.16.tar.gz) = feb03e5c434651124f0f5a3c04a63eac
|
||||
SHA256 (File-Copy-Recursive-0.16.tar.gz) = 4c3063df60103c5340499493f816b81b36d9923c2e0655c9b69b9adac8b50c73
|
||||
SIZE (File-Copy-Recursive-0.16.tar.gz) = 7800
|
5
devel/p5-File-Copy-Recursive/pkg-descr
Normal file
5
devel/p5-File-Copy-Recursive/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This module copies and moves directories recursively (or single files, well...
|
||||
singley) to an optional depth and attempts to preserve each file or
|
||||
directory's mode.
|
||||
|
||||
WWW: http://search.cpan.org/dist/File-Copy-Recursive/
|
7
devel/p5-File-Copy-Recursive/pkg-plist
Normal file
7
devel/p5-File-Copy-Recursive/pkg-plist
Normal file
|
@ -0,0 +1,7 @@
|
|||
%%SITE_PERL%%/File/Copy/Recursive.pm
|
||||
@unexec rmdir %D/%%SITE_PERL%%/File/Copy 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/File 2>/dev/null || true
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Copy/Recursive/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Copy/Recursive
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Copy 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true
|
Loading…
Add table
Reference in a new issue