aboutsummaryrefslogtreecommitdiffstats
path: root/net/openradius/Makefile
blob: 6dcc38d0d6b0088016a91fb68d5c0048abaf1f90 (plain) (blame)
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
# Created by: Adam Jette <jettea46@yahoo.com>
# $FreeBSD$

PORTNAME=   openradius
PORTVERSION=    0.9.12c
PORTREVISION=   1
CATEGORIES= net
MASTER_SITES=   http://evbergen.home.xs4all.nl/openradius/download/ \
        http://www.mirrors.wiretapped.net/security/authentication/radius/openradius/

MAINTAINER= crees@FreeBSD.org
COMMENT=    A RADIUS server with some actual documentation

LICENSE=    GPLv2
LICENSE_FILE=   ${WRKSRC}/COPYING

LOGFILE?=   /var/log/openradius.log

CONFLICTS=  freeradius-[0-9]* gnu-radius-[0-9]* radiusd-cistron-[0-9]* \
        freeradius-mysql-[0-9]*

CC?=        gcc
CXX?=       g++

USE_GMAKE=  yes
USE_RC_SUBR=    openradius
SUB_LIST=   LOGFILE="${LOGFILE}"

OPTIONS_DEFINE= LDAP

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MLDAP}
USE_OPENLDAP=   YES
PLIST_SUB+= LDAP=""
SCRIPTS_ENV+=   USE_LDAP=yes
.else
PLIST_SUB+= LDAP="@comment "
.endif

post-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/async-iface-notes ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/language.html ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/module-interface.html ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/note-behaviourfile ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/note-struct-ownership ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/using-openradius.html ${DOCSDIR}
.endif

.if !defined(NOPORTEXAMPLES)
    ${MKDIR} ${EXAMPLESDIR}/accounts
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-ldap ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-ldap-authbind ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-mysql ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-postgres ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-unixpass ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/behaviour.sample-usersfile ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-ldap ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-ldap-authbind ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-mysql ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-postgres ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-unixpass ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/configuration.sample-usersfile ${EXAMPLESDIR}
    ${INSTALL_MAN} ${WRKSRC}/examples/accounts/README ${EXAMPLESDIR}/accounts
    ${INSTALL_MAN} ${WRKSRC}/examples/accounts/accounts.mysql ${EXAMPLESDIR}/accounts
    ${INSTALL_MAN} ${WRKSRC}/examples/accounts/behaviour ${EXAMPLESDIR}/accounts
    ${INSTALL_MAN} ${WRKSRC}/examples/accounts/configuration ${EXAMPLESDIR}/accounts
.endif
# Configuration, copy over to sample files
    ${MKDIR} ${ETCDIR}
.for FILE in dictionary
    ${INSTALL_DATA} ${WRKSRC}/etc/${FILE} ${ETCDIR}/${FILE}.sample
.endfor
# Copy over legacy config files to sample
    ${MKDIR} ${ETCDIR}/legacy
.for FILE in clients nases realms users
    ${INSTALL} -m 0600 ${WRKSRC}/etc/legacy/${FILE} ${ETCDIR}/legacy/${FILE}.sample
.endfor

    ${MKDIR} ${ETCDIR}/modules
.for FILE in radldap.attrmap
    ${INSTALL} -m 0600 ${WRKSRC}/etc/modules/${FILE} ${ETCDIR}/modules/${FILE}.sample
.endfor

    ${MKDIR} ${ETCDIR}/subdicts
.for FILE in dict.*
    ${INSTALL} -m 0600 ${WRKSRC}/etc/subdicts/${FILE} ${ETCDIR}/subdicts/
.endfor

    @${ECHO_CMD}
    @${CAT} ${PKGMESSAGE}
    @${ECHO_CMD}

.include <bsd.port.mk>