- Update to 0.9.9

Still broken on 5.x

PR:		ports/73215
Submitted by:	Adam Jette <jettea46@yahoo.com> (maintainer)
This commit is contained in:
Pav Lucistnik 2004-10-28 00:17:34 +00:00
parent f3a0d1bb65
commit bad3a69afe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120361
4 changed files with 28 additions and 15 deletions

View file

@ -6,8 +6,7 @@
# #
PORTNAME= openradius PORTNAME= openradius
PORTVERSION= 0.9.7 PORTVERSION= 0.9.9
PORTREVISION= 1
CATEGORIES= net CATEGORIES= net
MASTER_SITES= http://www.xs4all.nl/~evbergen/openradius/download/ \ MASTER_SITES= http://www.xs4all.nl/~evbergen/openradius/download/ \
http://www.mirrors.wiretapped.net/security/authentication/radius/openradius/ http://www.mirrors.wiretapped.net/security/authentication/radius/openradius/
@ -16,7 +15,6 @@ MAINTAINER= jettea46@yahoo.com
COMMENT= A RADIUS server with some actual documentation COMMENT= A RADIUS server with some actual documentation
CONFLICTS= freeradius-0.* gnu-radius-1.* radiusd-cistron-1.* CONFLICTS= freeradius-0.* gnu-radius-1.* radiusd-cistron-1.*
CONFIGURE_ARGS= --prefix={$PREFIX}
CC?= gcc CC?= gcc
CXX?= g++ CXX?= g++

View file

@ -1,2 +1,2 @@
MD5 (openradius-0.9.7.tar.gz) = a9c74fe3b572ac8ec512c7b1f630a19f MD5 (openradius-0.9.9.tar.gz) = ab7fbbf7a9f1d95306d3f5a58859ca22
SIZE (openradius-0.9.7.tar.gz) = 186022 SIZE (openradius-0.9.9.tar.gz) = 218559

View file

@ -3,17 +3,20 @@ etc/openradius/configuration
etc/openradius/behaviour.sample-ldap etc/openradius/behaviour.sample-ldap
etc/openradius/behaviour.sample-ldap-authbind etc/openradius/behaviour.sample-ldap-authbind
etc/openradius/behaviour.sample-mysql etc/openradius/behaviour.sample-mysql
etc/openradius/behaviour.sample-postgres
etc/openradius/behaviour.sample-unixpass etc/openradius/behaviour.sample-unixpass
etc/openradius/behaviour.sample-usersfile etc/openradius/behaviour.sample-usersfile
etc/openradius/configuration.sample-ldap etc/openradius/configuration.sample-ldap
etc/openradius/configuration.sample-ldap-authbind etc/openradius/configuration.sample-ldap-authbind
etc/openradius/configuration.sample-mysql etc/openradius/configuration.sample-mysql
etc/openradius/configuration.sample-postgres
etc/openradius/configuration.sample-unixpass etc/openradius/configuration.sample-unixpass
etc/openradius/configuration.sample-usersfile etc/openradius/configuration.sample-usersfile
etc/openradius/dictionary etc/openradius/dictionary
etc/openradius/legacy/clients etc/openradius/legacy/clients
etc/openradius/legacy/users etc/openradius/legacy/users
etc/openradius/legacy/realms
@dirrm etc/openradius/legacy @dirrm etc/openradius/legacy
etc/openradius/modules/radldap.attrmap etc/openradius/modules/radldap.attrmap
@ -29,17 +32,20 @@ etc/openradius/subdicts/dict.str-ldap
etc/openradius/subdicts/dict.tunnel etc/openradius/subdicts/dict.tunnel
etc/openradius/subdicts/dict.usr etc/openradius/subdicts/dict.usr
etc/openradius/subdicts/dict.vendors etc/openradius/subdicts/dict.vendors
etc/openradius/subdicts/dict.ascend
@dirrm etc/openradius/subdicts @dirrm etc/openradius/subdicts
@dirrm etc/openradius @dirrm etc/openradius
lib/openradius/ascfile lib/openradius/ascfile
lib/openradius/delay lib/openradius/delay
lib/openradius/radclient
lib/openradius/radlogger lib/openradius/radlogger
lib/openradius/radsql lib/openradius/radsql
lib/openradius/unixpasswd lib/openradius/unixpasswd
@dirrm lib/openradius @dirrm lib/openradius
bin/ascenddatafilter
bin/genmd5hexpasswd bin/genmd5hexpasswd
bin/radaccttest bin/radaccttest
bin/radclient bin/radclient

View file

@ -19,6 +19,16 @@ TGT_LIB += modules/unixpasswd/unixpasswd
TGT_LIB += modules/radlogger/radlogger TGT_LIB += modules/radlogger/radlogger
TGT_LIB += modules/delay/delay TGT_LIB += modules/delay/delay
TGT_LIB += modules/radsql/radsql TGT_LIB += modules/radsql/radsql
END
if [ -f $LDAPINCLUDE/usr/local/include/ldap.h ]; then
cat >> Makefile << END
TGT_LIB += modules/radldap/radldap
CF_RADLDAP = -I$LDAPINCLUDE/usr/local/include
END
fi
cat >> Makefile << END
### System compatibility flags, used in some targets' CF_TGT, LF_TGT or LL_TGT ### System compatibility flags, used in some targets' CF_TGT, LF_TGT or LL_TGT
# #
@ -36,7 +46,6 @@ LL_ALL =
### Module-specific build flags ### Module-specific build flags
# #
CF_RADLDAP = -I$LDAPINCLUDE/openldap
LF_RADLDAP = -L$LDAPLIB/usr/local/lib LF_RADLDAP = -L$LDAPLIB/usr/local/lib
LL_RADLDAP = -lldap -llber LL_RADLDAP = -lldap -llber