blob: 9c462450b3cc73f75bbc16c933c426e271b1ee68 (
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
|
# $NetBSD: Makefile,v 1.3 2003/03/12 05:56:49 jmc Exp $
DISTNAME= freeradius-0.7
CATEGORIES= net
PKGREVISION= 1
MASTER_SITES= ftp://ftp.freeradius.org/pub/radius/ \
ftp://ftp.Awfulhak.org/pub/radius/
MAINTAINER= david@netbsd-fr.org
HOMEPAGE= http://www.freeradius.org/
COMMENT= Free RADIUS server implementation
CONFLICTS+= radiusd-cistron*
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --quiet --with-logdir=/var/log --disable-ltdl-install --with-ltdl-lib=${PREFIX}/lib --with-ltdl-include=${PREFIX}/include
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
.include "../../mk/bsd.prefs.mk"
# Needs semaphore functions as well as thread libs.
.if ${OPSYS} == "NetBSD"
. if ${OS_VERSION:M1.[0-5]*} || ${OS_VERSION} == "1.6" || ${OS_VERSION:M1.6[A-M]*} || ${OS_VERSION:M1.6.1*}
CONFIGURE_ARGS+= --with-threads=no
. endif
.endif
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:
@${INSTALL_DATA_DIR} ${PREFIX}/etc/raddb
.for db in ${RADDB}
${INSTALL_DATA} ${WRKSRC}/raddb/${db} ${PREFIX}/etc/raddb/${db}.sample
.endfor
@${SED} -e "s=!!PREFIX!!=${PREFIX}=g" ${FILESDIR}/radiusd \
> ${PREFIX}/etc/rc.d/radiusd
.include "../../databases/gdbm/buildlink2.mk"
.include "../../mk/pthread.buildlink2.mk"
.include "../../devel/libtool/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|