aboutsummaryrefslogtreecommitdiff
path: root/net/freeradius2
diff options
context:
space:
mode:
Diffstat (limited to 'net/freeradius2')
-rw-r--r--net/freeradius2/Makefile45
-rw-r--r--net/freeradius2/distinfo1
-rw-r--r--net/freeradius2/files/patch-aa36
-rw-r--r--net/freeradius2/files/patch-ab20
-rw-r--r--net/freeradius2/files/radiusd.sh39
-rw-r--r--net/freeradius2/pkg-comment1
-rw-r--r--net/freeradius2/pkg-descr25
-rw-r--r--net/freeradius2/pkg-plist178
8 files changed, 0 insertions, 345 deletions
diff --git a/net/freeradius2/Makefile b/net/freeradius2/Makefile
deleted file mode 100644
index d169215e1c79..000000000000
--- a/net/freeradius2/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# New ports collection makefile for: freeradius
-# Date created: May 9 2002
-# Whom: Brian Somers <brian@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= freeradius
-PORTVERSION= 0.7
-CATEGORIES= net
-MASTER_SITES= ftp://ftp.freeradius.org/pub/radius/ \
- ftp://ftp.Awfulhak.org/pub/radius/
-
-MAINTAINER= brian@FreeBSD.org
-
-LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm
-
-USE_GMAKE= yes
-HAS_CONFIGURE= yes
-CONFIGURE_ARGS= --quiet --with-logdir=/var/log
-
-MAN1= radclient.1 radlast.1 radtest.1 raduse.1 radwho.1 radzap.1
-MAN5= acct_users.5 clients.5 dictionary.5 naslist.5 radiusd.conf.5 \
- users.5
-MAN8= builddbm.8 radiusd.8 radwatch.8
-
-RADDB= acct_users attrs clients clients.conf dictionary \
- dictionary.acc dictionary.aptis dictionary.ascend \
- dictionary.bay dictionary.cisco dictionary.compat \
- dictionary.erx dictionary.foundry dictionary.freeradius \
- dictionary.livingston dictionary.microsoft dictionary.nomadix \
- dictionary.quintum dictionary.redback dictionary.shasta \
- dictionary.shiva dictionary.tunnel dictionary.usr \
- dictionary.versanet hints huntgroups ldap.attrmap naslist \
- naspasswd postgresql.conf proxy.conf radiusd.conf realms \
- snmp.conf sql.conf users x99.conf
-
-post-install:
- @${MKDIR} ${PREFIX}/etc/raddb
-.for db in ${RADDB}
- ${INSTALL_DATA} ${WRKSRC}/raddb/${db} ${PREFIX}/etc/raddb/${db}.sample
-.endfor
- ${INSTALL_SCRIPT} ${FILESDIR}/radiusd.sh ${PREFIX}/etc/rc.d/radiusd.sh
-
-.include <bsd.port.mk>
diff --git a/net/freeradius2/distinfo b/net/freeradius2/distinfo
deleted file mode 100644
index 5723bc5c63e6..000000000000
--- a/net/freeradius2/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (freeradius-0.7.tar.gz) = 04e4026a1f4bb08e8db20a16d9834b71
diff --git a/net/freeradius2/files/patch-aa b/net/freeradius2/files/patch-aa
deleted file mode 100644
index 6228127c020b..000000000000
--- a/net/freeradius2/files/patch-aa
+++ /dev/null
@@ -1,36 +0,0 @@
---- Makefile.orig Fri Jul 12 20:44:01 2002
-+++ Makefile Sat Aug 31 17:54:01 2002
-@@ -31,33 +31,6 @@
- $(INSTALL) -m 644 $$p $(R)$(mandir)/man$$i; \
- done \
- done
-- @echo "Creating/updating files in $(R)$(raddbdir)"; \
-- $(INSTALL) -d -m 755 $(R)$(raddbdir); \
-- cd raddb; \
-- for i in [a-c]* [e-z]*; do \
-- [ $$i != radiusd.conf.in -a ! -f $(R)$(raddbdir)/$$i ] && \
-- $(INSTALL) -m 644 $$i $(R)$(raddbdir); \
-- done; \
-- for i in dictionary*; do \
-- [ ! -f $(R)$(raddbdir)/$$i ] && $(INSTALL) -m 644 $$i $(R)$(raddbdir); \
-- if [ "`find $$i -newer $(R)$(raddbdir)/$$i`" ]; then \
-- echo "** $(R)$(raddbdir)/$$i"; \
-- nt=1; \
-- fi; \
-- done; \
-- if [ "$$nt" ]; then \
-- echo "**";\
-- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\
-- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\
-- echo "**";\
-- echo "** The sample configuration files in `pwd`";\
-- echo "** are newer than those in $(R)$(raddbdir)";\
-- echo "**";\
-- echo "** Please investigate and manually copy (if appropriate) the files listed above.";\
-- echo "**";\
-- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\
-- echo "** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING ** WARNING **";\
-- fi
-
- common:
- @for dir in $(SUBDIRS); do \
diff --git a/net/freeradius2/files/patch-ab b/net/freeradius2/files/patch-ab
deleted file mode 100644
index cd74cc9ab4a4..000000000000
--- a/net/freeradius2/files/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/modules/rlm_mschap/rlm_mschap.c.orig Mon Jan 21 11:20:42 2002
-+++ src/modules/rlm_mschap/rlm_mschap.c Fri Jul 5 00:44:19 2002
-@@ -258,11 +258,15 @@
- {
- SHA1_CTX Context;
- char hash[20];
--
-+ const char *name;
-+
-+ name = strchr(user_name, '\\');
-+ name = name == NULL ? user_name : name + 1;
-+
- SHA1Init(&Context);
- SHA1Update(&Context, peer_challenge, 16);
- SHA1Update(&Context, auth_challenge, 16);
-- SHA1Update(&Context, user_name, strlen(user_name));
-+ SHA1Update(&Context, name, strlen(name));
- SHA1Final(hash, &Context);
- memcpy(challenge, hash, 8);
- }
diff --git a/net/freeradius2/files/radiusd.sh b/net/freeradius2/files/radiusd.sh
deleted file mode 100644
index fd077412dafa..000000000000
--- a/net/freeradius2/files/radiusd.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-
-# RADIUSD_FLAGS='-xxyzsf -l stdout'
-RADIUSD_FLAGS=
-
-if [ -r /etc/defaults/rc.conf ]; then
- . /etc/defaults/rc.conf
- source_rc_confs
-elif [ -r /etc/rc.conf ]; then
- . /etc/rc.conf
-fi
-
-prog=$(realpath $0) || exit 1
-dir=${prog%/*}
-PREFIX=${dir%/etc/rc.d}
-
-if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ]
-then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case $1 in
-start)
- touch /var/run/radiusd.pid
- chown nobody:nobody /var/run/radiusd.pid
-
- "$PREFIX"/sbin/radiusd $RADIUSD_FLAGS && echo -n " radiusd"
- ;;
-stop)
- killall radiusd && echo -n ' radiusd'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0
diff --git a/net/freeradius2/pkg-comment b/net/freeradius2/pkg-comment
deleted file mode 100644
index 1ce3a58caae8..000000000000
--- a/net/freeradius2/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A free RADIUS server implementation
diff --git a/net/freeradius2/pkg-descr b/net/freeradius2/pkg-descr
deleted file mode 100644
index c1892705c95e..000000000000
--- a/net/freeradius2/pkg-descr
+++ /dev/null
@@ -1,25 +0,0 @@
- All code in this server was written from scratch.
-
- The server is mostly compatible with livingston radiusd-2.01
- (no menus or s/key support though) but with more feautures, such as:
-
- o Can limit max. number of simultaneous logins on a per-user basis!
- o Multiple DEFAULT entries, that can optionally fall-through.
- o In fact, every entry can fall-through
- o Deny/permit access based on huntgroup users dials into
- o Set certain parameters (such as static IP address) based on huntgroup
- o Extra "hints" file that can select SLIP/PPP/rlogin based on
- username pattern (Puser or user.ppp is PPP, plain "user" is rlogin etc).
- o Can execute an external program when user has authenticated (for example
- to run a sendmail queue).
- o Can use `$INCLUDE filename' in radiusd.conf, users, and dictionary files
- o Can act as a proxy server, relaying requests to a remote server
- o Supports Vendor-Specific attributes
- o No good documentation at all, just like the original radiusd 1.16!
-
- Then of course for general RADIUS questions, especially if you are using
- Livingston / Lucent RABU equipment, there is the portmaster-radius mailing
- list. Send mail to portmaster-radius-request@livingston.com to find
- out how to subscribe.
-
-WWW: http://www.freeradius.org/
diff --git a/net/freeradius2/pkg-plist b/net/freeradius2/pkg-plist
deleted file mode 100644
index 54f6159bc341..000000000000
--- a/net/freeradius2/pkg-plist
+++ /dev/null
@@ -1,178 +0,0 @@
-bin/radwho
-bin/raduse
-bin/radzap
-bin/radlast
-bin/radclient
-bin/radtest
-etc/raddb/acct_users.sample
-etc/raddb/attrs.sample
-etc/raddb/clients.sample
-etc/raddb/clients.conf.sample
-etc/raddb/dictionary.sample
-etc/raddb/dictionary.acc.sample
-etc/raddb/dictionary.aptis.sample
-etc/raddb/dictionary.ascend.sample
-etc/raddb/dictionary.bay.sample
-etc/raddb/dictionary.cisco.sample
-etc/raddb/dictionary.compat.sample
-etc/raddb/dictionary.erx.sample
-etc/raddb/dictionary.foundry.sample
-etc/raddb/dictionary.freeradius.sample
-etc/raddb/dictionary.livingston.sample
-etc/raddb/dictionary.microsoft.sample
-etc/raddb/dictionary.nomadix.sample
-etc/raddb/dictionary.quintum.sample
-etc/raddb/dictionary.redback.sample
-etc/raddb/dictionary.shasta.sample
-etc/raddb/dictionary.shiva.sample
-etc/raddb/dictionary.tunnel.sample
-etc/raddb/dictionary.usr.sample
-etc/raddb/dictionary.versanet.sample
-etc/raddb/hints.sample
-etc/raddb/huntgroups.sample
-etc/raddb/ldap.attrmap.sample
-etc/raddb/naslist.sample
-etc/raddb/naspasswd.sample
-etc/raddb/postgresql.conf.sample
-etc/raddb/proxy.conf.sample
-etc/raddb/radiusd.conf.sample
-etc/raddb/realms.sample
-etc/raddb/snmp.conf.sample
-etc/raddb/sql.conf.sample
-etc/raddb/users.sample
-etc/raddb/x99.conf.sample
-etc/rc.d/radiusd.sh
-lib/libltdl.a
-lib/libltdl.so
-lib/libltdl.so.4
-lib/libradius-0.7.so
-lib/libradius.la
-lib/libradius.a
-lib/libradius-0.7.la
-lib/libradius.so
-lib/rlm_acct_unique-0.7.so
-lib/rlm_acct_unique-0.7.la
-lib/rlm_acct_unique.a
-lib/rlm_acct_unique.so
-lib/rlm_acct_unique.la
-lib/rlm_always.so
-lib/rlm_always.la
-lib/rlm_always-0.7.so
-lib/rlm_attr_filter.so
-lib/rlm_always.a
-lib/rlm_always-0.7.la
-lib/rlm_attr_filter-0.7.so
-lib/rlm_attr_filter.a
-lib/rlm_attr_filter.la
-lib/rlm_attr_filter-0.7.la
-lib/rlm_attr_rewrite-0.7.so
-lib/rlm_attr_rewrite.so
-lib/rlm_attr_rewrite.la
-lib/rlm_attr_rewrite.a
-lib/rlm_attr_rewrite-0.7.la
-lib/rlm_chap.a
-lib/rlm_chap.la
-lib/rlm_chap-0.7.la
-lib/rlm_chap-0.7.so
-lib/rlm_chap.so
-lib/rlm_dbm-0.7.so
-lib/rlm_dbm-0.7.la
-lib/rlm_dbm.la
-lib/rlm_counter.so
-lib/rlm_dbm.so
-lib/rlm_counter.la
-lib/rlm_counter.a
-lib/rlm_counter-0.7.la
-lib/rlm_dbm.a
-lib/rlm_counter-0.7.so
-lib/rlm_detail-0.7.la
-lib/rlm_detail.a
-lib/rlm_detail.so
-lib/rlm_detail-0.7.so
-lib/rlm_detail.la
-lib/rlm_eap.la
-lib/rlm_eap-0.7.so
-lib/rlm_eap-0.7.la
-lib/rlm_eap.a
-lib/rlm_eap.so
-lib/rlm_eap_md5.a
-lib/rlm_eap_md5.so
-lib/rlm_eap_md5-0.7.so
-lib/rlm_eap_md5.la
-lib/rlm_eap_md5-0.7.la
-lib/rlm_eap_tls.a
-lib/rlm_eap_tls-0.7.la
-lib/rlm_eap_tls.la
-lib/rlm_eap_tls-0.7.so
-lib/rlm_eap_tls.so
-lib/rlm_fastusers.a
-lib/rlm_fastusers.la
-lib/rlm_files-0.7.so
-lib/rlm_files.a
-lib/rlm_fastusers-0.7.la
-lib/rlm_fastusers-0.7.so
-lib/rlm_files.so
-lib/rlm_files.la
-lib/rlm_files-0.7.la
-lib/rlm_fastusers.so
-lib/rlm_ldap.so
-lib/rlm_ldap-0.7.la
-lib/rlm_ldap.la
-lib/rlm_ldap.a
-lib/rlm_ldap-0.6.la
-lib/rlm_ldap-0.7.so
-lib/rlm_mschap.a
-lib/rlm_mschap.la
-lib/rlm_mschap-0.7.la
-lib/rlm_mschap-0.7.so
-lib/rlm_mschap.so
-lib/rlm_ns_mta_md5.so
-lib/rlm_ns_mta_md5.la
-lib/rlm_pam.a
-lib/rlm_pam-0.7.so
-lib/rlm_pam-0.7.la
-lib/rlm_ns_mta_md5-0.7.so
-lib/rlm_ns_mta_md5-0.7.la
-lib/rlm_pam.la
-lib/rlm_ns_mta_md5.a
-lib/rlm_pam.so
-lib/rlm_pap.la
-lib/rlm_pap-0.7.so
-lib/rlm_pap.so
-lib/rlm_pap.a
-lib/rlm_pap-0.7.la
-lib/rlm_radutmp-0.7.la
-lib/rlm_radutmp.so
-lib/rlm_preprocess-0.7.so
-lib/rlm_preprocess.so
-lib/rlm_preprocess-0.7.la
-lib/rlm_radutmp-0.7.so
-lib/rlm_preprocess.la
-lib/rlm_preprocess.a
-lib/rlm_radutmp.la
-lib/rlm_radutmp.a
-lib/rlm_realm.so
-lib/rlm_realm.a
-lib/rlm_realm.la
-lib/rlm_realm-0.7.so
-lib/rlm_realm-0.7.la
-lib/rlm_sql.a
-lib/rlm_sql.so
-lib/rlm_sql-0.7.la
-lib/rlm_sql.la
-lib/rlm_sql-0.7.so
-lib/rlm_unix-0.7.la
-lib/rlm_unix.la
-lib/rlm_unix.a
-lib/rlm_unix-0.7.so
-lib/rlm_unix.so
-lib/rlm_x99_token.a
-lib/rlm_x99_token.la
-lib/rlm_x99_token-0.7.la
-lib/rlm_x99_token.so
-lib/rlm_x99_token-0.7.so
-sbin/checkrad
-sbin/radiusd
-sbin/rc.radiusd
-sbin/radwatch
-sbin/check-radiusd-config