diff options
author | will <will@FreeBSD.org> | 2000-12-19 09:48:13 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-19 09:48:13 +0000 |
commit | eb0cf6a766d4dd15c9670f19a4867949639d1d96 (patch) | |
tree | adb4b88d7f911c3ec4f2d7aa762134ae9378e915 /archivers | |
parent | d90fc35210ee10f2ebbfea8c13705cf8e63cb854 (diff) | |
download | FreeBSD-ports-eb0cf6a766d4dd15c9670f19a4867949639d1d96.zip FreeBSD-ports-eb0cf6a766d4dd15c9670f19a4867949639d1d96.tar.gz |
Add p5-Archive-Tar 0.22, a perl module for the creation and manipulation
of tar files.
PR: 22829
Submitted by: Roman Shterenzon <roman@xpert.com>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/p5-Archive-Tar/Makefile | 27 | ||||
-rw-r--r-- | archivers/p5-Archive-Tar/distinfo | 1 | ||||
-rw-r--r-- | archivers/p5-Archive-Tar/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/p5-Archive-Tar/pkg-descr | 11 | ||||
-rw-r--r-- | archivers/p5-Archive-Tar/pkg-plist | 6 |
6 files changed, 47 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 44a29d00..d5d3411 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -22,6 +22,7 @@ SUBDIR += makeself SUBDIR += mscompress SUBDIR += nulib + SUBDIR += p5-Archive-Tar SUBDIR += p5-Compress-Zlib SUBDIR += pkzip SUBDIR += ppunpack diff --git a/archivers/p5-Archive-Tar/Makefile b/archivers/p5-Archive-Tar/Makefile new file mode 100644 index 0000000..cc1681d --- /dev/null +++ b/archivers/p5-Archive-Tar/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: p5-Archive-Tar +# Date created: Nov 14 2000 +# Whom: Roman Shterenzon <roman@xpert.com> +# +# $FreeBSD$ +# + +PORTNAME= Archive-Tar +PORTVERSION= 0.22 +CATEGORIES= archivers perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Archive +PKGNAMEPREFIX= p5- + +MAINTAINER= roman@xpert.com + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib + +USE_PERL5= YES + +MAN3= Archive::Tar.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + +.include <bsd.port.mk> diff --git a/archivers/p5-Archive-Tar/distinfo b/archivers/p5-Archive-Tar/distinfo new file mode 100644 index 0000000..f463fbd --- /dev/null +++ b/archivers/p5-Archive-Tar/distinfo @@ -0,0 +1 @@ +MD5 (Archive-Tar-0.22.tar.gz) = d77f1de1241c4eb7879916a853910285 diff --git a/archivers/p5-Archive-Tar/pkg-comment b/archivers/p5-Archive-Tar/pkg-comment new file mode 100644 index 0000000..9bbbc55 --- /dev/null +++ b/archivers/p5-Archive-Tar/pkg-comment @@ -0,0 +1 @@ +Perl module for creation and manipulation of tar files diff --git a/archivers/p5-Archive-Tar/pkg-descr b/archivers/p5-Archive-Tar/pkg-descr new file mode 100644 index 0000000..4146f73 --- /dev/null +++ b/archivers/p5-Archive-Tar/pkg-descr @@ -0,0 +1,11 @@ +Perl module for creation and manipulation of tar files. + +This module uses no C-coded parts in itself, but it will try to use +the Compress::Zlib module to read and write gzipped tarfiles. +Archive::Tar will still work without Zlib, it will just complain a +little bit (and, of course, not be able to use compression). The +complaining will be removed when the module leaves the alpha stage, +and can be trivially removed by commenting out the offending print +near the top of Tar.pm. + +Roman Shterenzon <roman@xpert.com> diff --git a/archivers/p5-Archive-Tar/pkg-plist b/archivers/p5-Archive-Tar/pkg-plist new file mode 100644 index 0000000..0318c47 --- /dev/null +++ b/archivers/p5-Archive-Tar/pkg-plist @@ -0,0 +1,6 @@ +bin/ptar +lib/perl5/site_perl/%%PERL_VER%%/Archive/Tar.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Archive/Tar/.packlist +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Archive/Tar +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Archive 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Archive 2>/dev/null || true |