diff options
author | brian <brian@FreeBSD.org> | 2002-05-10 18:59:23 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2002-05-10 18:59:23 +0000 |
commit | db0f97dae8057cb99f4574ff5378e6688e268922 (patch) | |
tree | 5c2c608a4db4d9261a3dcb8e7288e29735e7ef4e /net/freeradius2/Makefile | |
parent | 6a3fde5e2059b5a8ae6594dab65881cc7ddd5bbe (diff) | |
download | FreeBSD-ports-db0f97dae8057cb99f4574ff5378e6688e268922.zip FreeBSD-ports-db0f97dae8057cb99f4574ff5378e6688e268922.tar.gz |
Add freeradius, a RADIUS daemon implementation compatible with
livingston radiusd-2.01.
This RADIUS implementation implements MS-CHAP authentication whereas
most or all of the others don't.
Forced into it by: wollman (after removing freeradius-devel)
Diffstat (limited to 'net/freeradius2/Makefile')
-rw-r--r-- | net/freeradius2/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/net/freeradius2/Makefile b/net/freeradius2/Makefile new file mode 100644 index 0000000..2f79ca6 --- /dev/null +++ b/net/freeradius2/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: freeradius +# Date created: May 9 2002 +# Whom: Brian Somers <brian@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= freeradius +PORTVERSION= 0.5 +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 + +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: +.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> |