diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2008-02-18 05:39:47 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2008-02-18 05:39:47 +0000 |
commit | 73846bb0f35301771e01f6ca26c11e544d94e398 (patch) | |
tree | de791e5713ed823aef7c9f4558a9c18c8eaeb1b3 /devel | |
parent | - update to 2.0.6 (diff) |
File::chmod is a utility that allows you to bypass system calls
or bit processing of a file's permissions. It overloads the
chmod() function with its own that gets an octal mode, a
symbolic mode, or an "ls" mode. If you wish not to overload chmod(),
you can export symchmod() and lschmod(), which take, respectively,
a symbolic mode and an "ls" mode.
PR: ports/120782
Submitted by: Shinsuke Matsui <smatsui at karashi.org>
Notes
Notes:
svn path=/head/; revision=207501
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-File-chmod/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-File-chmod/distinfo | 3 | ||||
-rw-r--r-- | devel/p5-File-chmod/pkg-descr | 8 | ||||
-rw-r--r-- | devel/p5-File-chmod/pkg-plist | 5 |
5 files changed, 39 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index a5a7f232e645..77d26378853b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1254,6 +1254,7 @@ SUBDIR += p5-File-Type SUBDIR += p5-File-Util SUBDIR += p5-File-chdir + SUBDIR += p5-File-chmod SUBDIR += p5-File-pushd SUBDIR += p5-FileHandle-Fmode SUBDIR += p5-FileHandle-Unget diff --git a/devel/p5-File-chmod/Makefile b/devel/p5-File-chmod/Makefile new file mode 100644 index 000000000000..018a4526a0e0 --- /dev/null +++ b/devel/p5-File-chmod/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: p5-File-chmod +# Date created: 2008-02-18 +# Whom: Shinsuke Matsui <smatsui@karashi.org> +# +# $FreeBSD$ +# + +PORTNAME= File-chmod +PORTVERSION= 0.32 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= File +PKGNAMEPREFIX= p5- + +MAINTAINER= smatsui@karashi.org +COMMENT= File::chmod - Implements symbolic and ls chmod modes + +PERL_CONFIGURE= yes + +MAN3= File::chmod.3 + +.include <bsd.port.mk> diff --git a/devel/p5-File-chmod/distinfo b/devel/p5-File-chmod/distinfo new file mode 100644 index 000000000000..e7f012971362 --- /dev/null +++ b/devel/p5-File-chmod/distinfo @@ -0,0 +1,3 @@ +MD5 (File-chmod-0.32.tar.gz) = 0048eb67fffad544e1cc07e04c33b0b2 +SHA256 (File-chmod-0.32.tar.gz) = ec54997c4274ca27e8e8d25585223569b15b16ed2bfdf5d0507c57787d6d05a9 +SIZE (File-chmod-0.32.tar.gz) = 7200 diff --git a/devel/p5-File-chmod/pkg-descr b/devel/p5-File-chmod/pkg-descr new file mode 100644 index 000000000000..4fe38532ecf9 --- /dev/null +++ b/devel/p5-File-chmod/pkg-descr @@ -0,0 +1,8 @@ +File::chmod is a utility that allows you to bypass system calls +or bit processing of a file's permissions. It overloads the +chmod() function with its own that gets an octal mode, a +symbolic mode, or an "ls" mode. If you wish not to overload chmod(), +you can export symchmod() and lschmod(), which take, respectively, +a symbolic mode and an "ls" mode. + +WWW: http://search.cpan.org/dist/File-chmod/ diff --git a/devel/p5-File-chmod/pkg-plist b/devel/p5-File-chmod/pkg-plist new file mode 100644 index 000000000000..f0984c9a98d5 --- /dev/null +++ b/devel/p5-File-chmod/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/chmod/.packlist +%%SITE_PERL%%/File/chmod.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/chmod +@dirrmtry %%SITE_PERL%%/File +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File |