blob: ad76bbfdf01c40e631f91c021cc991aaecc00986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/freeradius-1.0.1.ebuild,v 1.1 2004/09/20 12:22:16 lanius Exp $
inherit eutils
IUSE="frascend frnothreads frxp kerberos ldap mysql pam postgres snmp ssl"
DESCRIPTION="highly configurable free RADIUS server"
SRC_URI="ftp://ftp.freeradius.org/pub/radius/${P}.tar.gz"
HOMEPAGE="http://www.freeradius.org/"
KEYWORDS="~x86 ~amd64"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/libc
>=sys-libs/db-3.2
sys-libs/gdbm
snmp? ( virtual/snmp )
mysql? ( dev-db/mysql )
postgres? ( dev-db/postgresql )
pam? ( sys-libs/pam )
ssl? ( dev-libs/openssl )
ldap? ( net-nds/openldap )
kerberos? ( virtual/krb5 )
frxp? ( dev-lang/python
dev-lang/perl )"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
export WANT_AUTOCONF=2.1
autoconf
}
src_compile() {
local myconf=""
if ! use snmp; then
myconf="--without-snmp"
fi
if use frascend; then
myconf="${myconf} --with-ascend-binary"
fi
if use frnothreads; then
myconf="${myconf} --without-threads"
fi
if use frxp; then
myconf="${myconf} --with-experimental-modules"
fi
# kill modules we don't use
if ! use ssl; then
einfo "removing rlm_eap_tls and rlm_x99_token (no use ssl)"
rm -rf src/modules/rlm_eap/types/rlm_eap_tls src/modules/rlm_x99_token
fi
if ! use ldap; then
einfo "removing rlm_ldap (no use ldap)"
rm -rf src/modules/rlm_ldap
fi
if ! use kerberos; then
einfo "removing rlm_krb5 (no use kerberos)"
rm -rf src/modules/rlm_krb5
fi
if ! use pam; then
einfo "removing rlm_pam (no use pam)"
rm -rf src/modules/rlm_pam
fi
# experimental modules are
# rlm_cram rlm_example rlm_perl
# rlm_python rlm_sim_files rlm_smb rlm_sqlcounter
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--mandir=/usr/share/man \
--with-large-files --disable-ltdl-install --disable-static \
${myconf} || die
make || die
}
pkg_preinst() {
enewgroup radiusd
enewuser radiusd -1 /bin/false /var/log/radius radiusd
}
src_install() {
dodir /etc
dodir /var/log
dodir /var/run
pkg_preinst
diropts -m0750 -o root -g radiusd
dodir /etc/raddb
diropts -m0750 -o radiusd -g radiusd
dodir /var/log/radius
dodir /var/log/radius/radacct
dodir /var/run/radiusd
diropts
make R=${D} install || die
dosed 's:^#user *= *nobody:user = radiusd:;s:^#group *= *nobody:group = radiusd:' \
/etc/raddb/radiusd.conf
dodoc COPYRIGHT CREDITS INSTALL LICENSE README
rm ${D}/usr/sbin/rc.radiusd
exeinto /etc/init.d
newexe ${FILESDIR}/0.9/radius.init radiusd
dodir /etc/conf.d
cp ${FILESDIR}/0.9/radius.conf ${D}/etc/conf.d/radiusd
}
|