diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2003-05-18 14:25:08 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2003-05-18 14:25:08 +0000 |
commit | 0fca07e19eb21f4919bcebef57febdd42869f031 (patch) | |
tree | 5ac53c8fbfa03f167626a8ecec0066482d8445c1 | |
parent | Add p5-File-NCopy 0.34, copy file(s) to directories/file. (diff) |
Add p5-File-Flat 0.8, implements a flat filesystem.
Notes
Notes:
svn path=/head/; revision=81248
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-File-Flat/Makefile | 30 | ||||
-rw-r--r-- | devel/p5-File-Flat/distinfo | 1 | ||||
-rw-r--r-- | devel/p5-File-Flat/pkg-descr | 12 | ||||
-rw-r--r-- | devel/p5-File-Flat/pkg-plist | 5 |
5 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index b7107a630127..f898ab6fe252 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -534,6 +534,7 @@ SUBDIR += p5-File-Cache SUBDIR += p5-File-DirSync SUBDIR += p5-File-FTS + SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock SUBDIR += p5-File-Lock SUBDIR += p5-File-MMagic diff --git a/devel/p5-File-Flat/Makefile b/devel/p5-File-Flat/Makefile new file mode 100644 index 000000000000..3c3be5cf4362 --- /dev/null +++ b/devel/p5-File-Flat/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: File-Flat +# Date created: 11 December 2002 +# Whom: Sergey Skvortsov <skv@protey.ru> +# +# $FreeBSD$ +# + +PORTNAME= File-Flat +PORTVERSION= 0.8 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= File +PKGNAMEPREFIX= p5- + +MAINTAINER= skv@FreeBSD.org +COMMENT= Implements a flat filesystem + +BUILD_DEPENDS= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp \ + ${SITE_PERL}/Class/Autouse.pm:${PORTSDIR}/devel/p5-Class-Autouse \ + ${SITE_PERL}/File/Copy.pm:${PORTSDIR}/devel/p5-File-Tools \ + ${SITE_PERL}/Class/Inspector.pm:${PORTSDIR}/devel/p5-Class-Inspector \ + ${SITE_PERL}/File/Remove.pm:${PORTSDIR}/devel/p5-File-Remove \ + ${SITE_PERL}/File/NCopy.pm:${PORTSDIR}/devel/p5-File-NCopy +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= File::Flat.3 + +.include <bsd.port.mk> diff --git a/devel/p5-File-Flat/distinfo b/devel/p5-File-Flat/distinfo new file mode 100644 index 000000000000..59a5555af18c --- /dev/null +++ b/devel/p5-File-Flat/distinfo @@ -0,0 +1 @@ +MD5 (File-Flat-0.8.tar.gz) = b36ea287f9bddf7d07be875b78203c29 diff --git a/devel/p5-File-Flat/pkg-descr b/devel/p5-File-Flat/pkg-descr new file mode 100644 index 000000000000..04a92c137905 --- /dev/null +++ b/devel/p5-File-Flat/pkg-descr @@ -0,0 +1,12 @@ +File::Flat implements a flat filesystem. A flat filesystem is a +filesystem in which directories do not exist. It provides an +abstraction over any normal filesystem which makes it appear as if +directories do not exist. In effect, it will automatically create +directories as needed. This is create for things like install scripts +and such, as you never need to worry about the existance of directories, +just write to a file, no matter where it is. + +WWW: http://search.cpan.org/dist/File-Flat/ + +-- Sergey Skvortsov +skv@FreeBSD.org diff --git a/devel/p5-File-Flat/pkg-plist b/devel/p5-File-Flat/pkg-plist new file mode 100644 index 000000000000..70a2f731a472 --- /dev/null +++ b/devel/p5-File-Flat/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Flat/.packlist +%%SITE_PERL%%/File/Flat.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Flat +@unexec rmdir %D/%%SITE_PERL%%/File 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true |