CGI::Application::Plugin::Authentication adds the ability to authenticate
users in your CGI::Application modules. WWW: http://search.cpan.org/dist/CGI-Application-Plugin-Authentication/ PR: ports/129005 Submitted by: George Hartzell <hartzell at alerce.com>
This commit is contained in:
parent
41d0e55090
commit
9a88eab332
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=223940
5 changed files with 85 additions and 0 deletions
|
@ -627,6 +627,7 @@
|
|||
SUBDIR += p5-CGI-Application-Dispatch
|
||||
SUBDIR += p5-CGI-Application-Dispatch-Server
|
||||
SUBDIR += p5-CGI-Application-Plugin-AnyTemplate
|
||||
SUBDIR += p5-CGI-Application-Plugin-Authentication
|
||||
SUBDIR += p5-CGI-Application-Plugin-AutoRunmode
|
||||
SUBDIR += p5-CGI-Application-Plugin-DBH
|
||||
SUBDIR += p5-CGI-Application-Plugin-DebugScreen
|
||||
|
|
54
www/p5-CGI-Application-Plugin-Authentication/Makefile
Normal file
54
www/p5-CGI-Application-Plugin-Authentication/Makefile
Normal file
|
@ -0,0 +1,54 @@
|
|||
# New ports collection makefile for: www/p5-CGI-Application-Plugin-Authentication
|
||||
# Date created: 01 September 2008
|
||||
# Whom: George Hartzell <hartzell@alerce.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= CGI-Application-Plugin-Authentication
|
||||
PORTVERSION= 0.12
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= CGI
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= hartzell@alerce.com
|
||||
COMMENT= Support for authenticating requests in CGI::Application
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/CGI/Application.pm:${PORTSDIR}/www/p5-CGI-Application \
|
||||
${SITE_PERL}/CGI/Application/Plugin/Session.pm:${PORTSDIR}/www/p5-CGI-Application-Plugin-Session \
|
||||
${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils \
|
||||
${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \
|
||||
${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers \
|
||||
${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \
|
||||
${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \
|
||||
${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
|
||||
${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn \
|
||||
${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \
|
||||
${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_MODBUILD= yes
|
||||
|
||||
MAN3= CGI::Application::Plugin::Authentication::Driver.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::strip.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::DBI.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::sha1.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::lc.3 \
|
||||
CGI::Application::Plugin::Authentication::Store::Session.3 \
|
||||
CGI::Application::Plugin::Authentication.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::uc.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::crypt.3 \
|
||||
CGI::Application::Plugin::Authentication::Store.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Generic.3 \
|
||||
CGI::Application::Plugin::Authentication::Store::Cookie.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Authen::Simple.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Filter::md5.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::HTPasswd.3 \
|
||||
CGI::Application::Plugin::Authentication::Driver::Dummy.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.if ${PERL_LEVEL} < 500800
|
||||
IGNORE= requires Perl 5.8 or newer. Install lang/perl5.8, and try again
|
||||
.endif
|
||||
.include <bsd.port.post.mk>
|
3
www/p5-CGI-Application-Plugin-Authentication/distinfo
Normal file
3
www/p5-CGI-Application-Plugin-Authentication/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = a5f9dcf8752c4a705f3b6b40eb874666
|
||||
SHA256 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = b99c2a3cb5ecb50bacbaacc46585379e88e5023126f2babe1e20682a5f798fcf
|
||||
SIZE (CGI-Application-Plugin-Authentication-0.12.tar.gz) = 47778
|
4
www/p5-CGI-Application-Plugin-Authentication/pkg-descr
Normal file
4
www/p5-CGI-Application-Plugin-Authentication/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
CGI::Application::Plugin::Authentication adds the ability to authenticate
|
||||
users in your CGI::Application modules.
|
||||
|
||||
WWW: http://search.cpan.org/dist/CGI-Application-Plugin-Authentication/
|
23
www/p5-CGI-Application-Plugin-Authentication/pkg-plist
Normal file
23
www/p5-CGI-Application-Plugin-Authentication/pkg-plist
Normal file
|
@ -0,0 +1,23 @@
|
|||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Authen/Simple.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/DBI.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Dummy.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/crypt.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/lc.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/md5.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/sha1.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/strip.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/uc.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Generic.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/HTPasswd.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store/Cookie.pm
|
||||
%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store/Session.pm
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Authen
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin
|
||||
@dirrmtry %%SITE_PERL%%/CGI/Application
|
Loading…
Reference in a new issue