mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
add p5-Filter-CBC
Source filter for Cipher Block Chaining PR: 32770 Submitted by: Sergey Skvortsov <skv@protey.ru>
This commit is contained in:
parent
3662cec740
commit
9f37bc9188
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=51468
@ -366,6 +366,7 @@
|
||||
SUBDIR += p5-File-Temp
|
||||
SUBDIR += p5-File-Tools
|
||||
SUBDIR += p5-Filter
|
||||
SUBDIR += p5-Filter-CBC
|
||||
SUBDIR += p5-FreezeThaw
|
||||
SUBDIR += p5-Getopt-Declare
|
||||
SUBDIR += p5-Getopt-Long
|
||||
|
33
devel/p5-Filter-CBC/Makefile
Normal file
33
devel/p5-Filter-CBC/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# New ports collection makefile for: Filter-CBC
|
||||
# Date created: 11 Dec 2001
|
||||
# Whom: Sergey Skvortsov <skv@protey.ru>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Filter-CBC
|
||||
PORTVERSION= 0.07
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Filter
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= skv@protey.ru
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter \
|
||||
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Crypt/Rijndael.pm:${PORTSDIR}/security/p5-Crypt-Rijndael \
|
||||
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Crypt/CBC.pm:${PORTSDIR}/security/p5-Crypt-CBC
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= Filter::CBC.3
|
||||
|
||||
post-install:
|
||||
.ifndef(NOPORTDOCS)
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/p5-Filter-CBC/distinfo
Normal file
1
devel/p5-Filter-CBC/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Filter-CBC-0.07.tar.gz) = 04a1ed91b967bff89d96580473eddcec
|
1
devel/p5-Filter-CBC/pkg-comment
Normal file
1
devel/p5-Filter-CBC/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Source filter for Cipher Block Chaining
|
9
devel/p5-Filter-CBC/pkg-descr
Normal file
9
devel/p5-Filter-CBC/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
Filter::CBC is a Source filter that uses Cipher Block Chaining (CBC) to
|
||||
encrypt your code. The tricky part is that most CBC Algorithms have binary
|
||||
output. The textmode bypasses this obstacle, by converting the data to less
|
||||
scary data.
|
||||
|
||||
WWW: http://search.cpan.org/search?dist=Filter-CBC
|
||||
|
||||
-- Sergey Skvortsov
|
||||
skv@protey.ru
|
19
devel/p5-Filter-CBC/pkg-plist
Normal file
19
devel/p5-Filter-CBC/pkg-plist
Normal file
@ -0,0 +1,19 @@
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC/.packlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Filter/CBC.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Filter/cbc2code.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/autofilter.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/blowfish.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/defaults.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/des.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/des_ede3.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/gost.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/idea.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/null.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/rc6.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/rijndael.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/tea.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/twofish.pl
|
||||
%%PORTDOCS%%@dirrm share/examples/Filter-CBC
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Filter 2>/dev/null || true
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter 2>/dev/null || true
|
33
security/p5-Filter-CBC/Makefile
Normal file
33
security/p5-Filter-CBC/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# New ports collection makefile for: Filter-CBC
|
||||
# Date created: 11 Dec 2001
|
||||
# Whom: Sergey Skvortsov <skv@protey.ru>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Filter-CBC
|
||||
PORTVERSION= 0.07
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Filter
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= skv@protey.ru
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter \
|
||||
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Crypt/Rijndael.pm:${PORTSDIR}/security/p5-Crypt-Rijndael \
|
||||
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Crypt/CBC.pm:${PORTSDIR}/security/p5-Crypt-CBC
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= Filter::CBC.3
|
||||
|
||||
post-install:
|
||||
.ifndef(NOPORTDOCS)
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
security/p5-Filter-CBC/distinfo
Normal file
1
security/p5-Filter-CBC/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Filter-CBC-0.07.tar.gz) = 04a1ed91b967bff89d96580473eddcec
|
1
security/p5-Filter-CBC/pkg-comment
Normal file
1
security/p5-Filter-CBC/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Source filter for Cipher Block Chaining
|
9
security/p5-Filter-CBC/pkg-descr
Normal file
9
security/p5-Filter-CBC/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
Filter::CBC is a Source filter that uses Cipher Block Chaining (CBC) to
|
||||
encrypt your code. The tricky part is that most CBC Algorithms have binary
|
||||
output. The textmode bypasses this obstacle, by converting the data to less
|
||||
scary data.
|
||||
|
||||
WWW: http://search.cpan.org/search?dist=Filter-CBC
|
||||
|
||||
-- Sergey Skvortsov
|
||||
skv@protey.ru
|
19
security/p5-Filter-CBC/pkg-plist
Normal file
19
security/p5-Filter-CBC/pkg-plist
Normal file
@ -0,0 +1,19 @@
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC/.packlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Filter/CBC.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Filter/cbc2code.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/autofilter.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/blowfish.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/defaults.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/des.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/des_ede3.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/gost.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/idea.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/null.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/rc6.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/rijndael.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/tea.pl
|
||||
%%PORTDOCS%%share/examples/Filter-CBC/twofish.pl
|
||||
%%PORTDOCS%%@dirrm share/examples/Filter-CBC
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/CBC
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Filter 2>/dev/null || true
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter 2>/dev/null || true
|
Loading…
Reference in New Issue
Block a user