diff options
author | jfitz <jfitz@FreeBSD.org> | 1997-09-14 01:48:51 +0800 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1997-09-14 01:48:51 +0800 |
commit | 271268ebb374d0ae04b906443056820113259ff2 (patch) | |
tree | f869933e41fee06c2f861fd07f75d90b32ba6794 /security | |
parent | 8655a90c440f977f8e3df4753d4cecdf26d4f682 (diff) | |
download | freebsd-ports-gnome-271268ebb374d0ae04b906443056820113259ff2.tar.gz freebsd-ports-gnome-271268ebb374d0ae04b906443056820113259ff2.tar.zst freebsd-ports-gnome-271268ebb374d0ae04b906443056820113259ff2.zip |
Import of a module to authenticate/account against RADIUS (v1) servers
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Authen-Radius/Makefile | 29 | ||||
-rw-r--r-- | security/p5-Authen-Radius/distinfo | 1 | ||||
-rw-r--r-- | security/p5-Authen-Radius/files/patch-aa | 11 | ||||
-rw-r--r-- | security/p5-Authen-Radius/files/patch-ab | 9 | ||||
-rw-r--r-- | security/p5-Authen-Radius/files/patch-ac | 13 | ||||
-rw-r--r-- | security/p5-Authen-Radius/pkg-comment | 1 | ||||
-rw-r--r-- | security/p5-Authen-Radius/pkg-descr | 4 | ||||
-rw-r--r-- | security/p5-Authen-Radius/pkg-plist | 3 |
8 files changed, 71 insertions, 0 deletions
diff --git a/security/p5-Authen-Radius/Makefile b/security/p5-Authen-Radius/Makefile new file mode 100644 index 000000000000..761b1c2bc63a --- /dev/null +++ b/security/p5-Authen-Radius/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: p5-Authen-Radius +# Version required: 0.05 +# Date created: September 11th 1997 +# Whom: James FitzGibbon <jfitz@FreeBSD.org> +# +# $Id$ +# + +DISTNAME= RadiusPerl-0.05 +PKGNAME= p5-Authen-Radius-0.05 +CATEGORIES= security net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Authen + +MAINTAINER= jfitz@FreeBSD.ORG + +BUILD_DEPENDS= ${PREFIX}/lib/perl5/site_perl/MD5.pm:${PORTSDIR}/security/p5-MD5/ +USE_PERL5= YES + +MAN3= Authen::Radius.3 +MAN3PREFIX= ${PREFIX}/lib/perl5 + +pre-configure: + @${CP} ${WRKSRC}/Authen/Radius.pm ${WRKSRC} + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PREFIX}/bin/perl Makefile.PL + +.include <bsd.port.mk> diff --git a/security/p5-Authen-Radius/distinfo b/security/p5-Authen-Radius/distinfo new file mode 100644 index 000000000000..c649d148e0c7 --- /dev/null +++ b/security/p5-Authen-Radius/distinfo @@ -0,0 +1 @@ +MD5 (RadiusPerl-0.05.tar.gz) = b455bd968d3076f749f1d9ba79d176f6 diff --git a/security/p5-Authen-Radius/files/patch-aa b/security/p5-Authen-Radius/files/patch-aa new file mode 100644 index 000000000000..c6072caca183 --- /dev/null +++ b/security/p5-Authen-Radius/files/patch-aa @@ -0,0 +1,11 @@ +--- Makefile.PL.orig Thu Sep 11 13:37:04 1997 ++++ Makefile.PL Thu Sep 11 13:37:13 1997 +@@ -4,7 +4,7 @@ + WriteMakefile( + 'NAME' => 'Authen::Radius', + 'DISTNAME' => 'RadiusPerl', +- 'VERSION_FROM' => 'Authen/Radius.pm', # finds $VERSION ++ 'VERSION_FROM' => 'Radius.pm', # finds $VERSION + 'PREREQ_PM' => { MD5 => 1.7, IO => 1.12 }, + 'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz' }, + ); diff --git a/security/p5-Authen-Radius/files/patch-ab b/security/p5-Authen-Radius/files/patch-ab new file mode 100644 index 000000000000..ae0c4009c01a --- /dev/null +++ b/security/p5-Authen-Radius/files/patch-ab @@ -0,0 +1,9 @@ +--- MANIFEST.orig Thu Sep 11 13:36:37 1997 ++++ MANIFEST Thu Sep 11 13:36:48 1997 +@@ -3,5 +3,5 @@ + README + INSTALL + Makefile.PL +-Authen/Radius.pm ++Radius.pm + test.pl diff --git a/security/p5-Authen-Radius/files/patch-ac b/security/p5-Authen-Radius/files/patch-ac new file mode 100644 index 000000000000..88fd3ede7574 --- /dev/null +++ b/security/p5-Authen-Radius/files/patch-ac @@ -0,0 +1,13 @@ +--- Authen/Radius.pm.orig Thu Sep 11 13:36:16 1997 ++++ Authen/Radius.pm Thu Sep 11 13:36:29 1997 +@@ -20,9 +20,8 @@ + use vars qw($VERSION @ISA @EXPORT); + + require Exporter; +-require AutoLoader; + +-@ISA = qw(Exporter AutoLoader); ++@ISA = qw(Exporter); + @EXPORT = qw(ACCESS_REQUEST ACCESS_ACCEPT ACCESS_REJECT); + $VERSION = '0.05'; + diff --git a/security/p5-Authen-Radius/pkg-comment b/security/p5-Authen-Radius/pkg-comment new file mode 100644 index 000000000000..8b953e01a2f1 --- /dev/null +++ b/security/p5-Authen-Radius/pkg-comment @@ -0,0 +1 @@ +a perl5 module to provide simple Radius client facilities diff --git a/security/p5-Authen-Radius/pkg-descr b/security/p5-Authen-Radius/pkg-descr new file mode 100644 index 000000000000..72e2e3c8ea6d --- /dev/null +++ b/security/p5-Authen-Radius/pkg-descr @@ -0,0 +1,4 @@ + The Authen::Radius module provides a simple class that + allows you to send/receive Radius requests/responses + to/from a Radius server. + diff --git a/security/p5-Authen-Radius/pkg-plist b/security/p5-Authen-Radius/pkg-plist new file mode 100644 index 000000000000..f932d11964c3 --- /dev/null +++ b/security/p5-Authen-Radius/pkg-plist @@ -0,0 +1,3 @@ +lib/perl5/man/man3/Authen::Radius.3.gz +lib/perl5/site_perl/Authen/Radius.pm +lib/perl5/site_perl/i386-freebsd/auto/Authen/Radius/.packlist |