aboutsummaryrefslogtreecommitdiffstats
path: root/net/freeradius2/Makefile
blob: 1af4956f041d3cf8b18748592342a847f19de007 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
# Created by: Brian Somers <brian@FreeBSD.org>
# $FreeBSD$

PORTNAME=   freeradius
DISTVERSION=    2.2.4
PORTREVISION=   1
CATEGORIES= net
MASTER_SITES=   ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \
        ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \
        http://ftp.cc.uoc.gr/mirrors/ftp.freeradius.org/%SUBDIR%/ \
        http://mirrors.rit.edu/zi/
MASTER_SITE_SUBDIR= . old
DISTNAME=   freeradius-server-${DISTVERSION}

MAINTAINER= zi@FreeBSD.org
COMMENT=    Free RADIUS server implementation

LICENSE=    GPLv2

LIB_DEPENDS=    libgdbm.so:${PORTSDIR}/databases/gdbm

LOGDIR?=    /var/log
KRB5_CONFIG?=   /usr/bin/krb5-config --libs

CONFLICTS=  gnu-radius-[0-9].* openradius-[0-9].* radiusd-cistron-[0-9].* \
        freeradius-mysql-[0-9].* freeradius-[013-9].* freeradius3-3.*

USE_RC_SUBR=    radiusd

USES=       gmake
USE_AUTOTOOLS=  libltdl libtool autoconf
USE_BZIP2=  yes
USE_OPENSSL=    yes
MAKE_ARGS+= LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CFLAGS+=    -I${LOCALBASE}/include -L${LOCALBASE}/lib
MAKE_JOBS_UNSAFE=   yes

PLIST_SUB=  PORTVERSION=${DISTVERSION} LIBVER=0${PORTVERSION:C/\./0/g}

OPTIONS_DEFINE= USER KERBEROS HEIMDAL HEIMDAL_PORT LDAP MYSQL \
        PGSQL UNIXODBC FIREBIRD PERL PYTHON OCI8 RUBY DHCP \
        EXPERIMENTAL UDPFROMTO DEVELOPER EDIR SSL_PORT
OPTIONS_DEFAULT=USER PERL PYTHON

DHCP_DESC=      With DHCP support (EXPERIMENTAL)
USER_DESC=      Run as user freeradius, group freeradius
HEIMDAL_DESC=       With Heimdal Kerberos support
HEIMDAL_PORT_DESC=  With Heimdal Kerberos from ports
UNIXODBC_DESC=      With unixODBC database support
FIREBIRD_DESC=      With Firebird database support (EXPERIMENTAL)
OCI8_DESC=      With Oracle support (currently experimental)
EXPERIMENTAL_DESC=  Build experimental modules
UDPFROMTO_DESC=     Compile in UDPFROMTO support
DEVELOPER_DESC=     Enable developer options
EDIR_DESC=      Enable eDirectory support (implies LDAP)
SSL_PORT_DESC=      Use OpenSSL from the ports collection

NO_STAGE=   yes
.include <bsd.port.options.mk>

# Default requirements for rc script
_REQUIRE=   NETWORKING SERVERS

.if ${PORT_OPTIONS:MUSER}
SUB_LIST+=  RUN_AS_USER="yes"
.else
SUB_LIST+=  RUN_AS_USER="no"
.endif

# User and group to use if USER option is chosen
RADIUS_USER=    freeradius
RADIUS_GROUP=   freeradius

USERS=      ${RADIUS_USER}
GROUPS=     ${RADIUS_GROUP}

CONFIGURE_ARGS+=--with-system-libtool --with-system-libltdl \
        --disable-ltdl-install

.if ${PORT_OPTIONS:MHEIMDAL} && empty(PORT_OPTIONS:MKERBEROS)
${UNIQUENAME}_SET+= KERBEROS
.endif

.if ${PORT_OPTIONS:MKERBEROS}
.if ${PORT_OPTIONS:MHEIMDAL}
.if ${PORT_OPTIONS:MHEIMDAL_PORT}
LIB_DEPENDS+=   libkrb5.so:${PORTSDIR}/security/heimdal
.endif
CONFIGURE_ARGS+=--enable-heimdal-krb5
.else
LIB_DEPENDS+=   libkrb5.so:${PORTSDIR}/security/krb5
.endif
CONFIGURE_ARGS+=--with-rlm_krb5
.if ${PORT_OPTIONS:MHEIMDAL} && empty(PORT_OPTIONS:MHEIMDAL_PORT)
CONFIGURE_ARGS+=--with-rlm-krb5-lib-dir=/usr/lib
CONFIGURE_ARGS+=--with-rlm-krb5-include-dir=/usr/include
CONFIGURE_ENV+= KRB5LIBS="$$(${KRB5_CONFIG})"
.else
CONFIGURE_ARGS+=--with-rlm-krb5-lib-dir=${LOCALBASE}/lib
CONFIGURE_ARGS+=--with-rlm-krb5-include-dir=${LOCALBASE}/include
.endif
PLIST_SUB+= KRB5=""
.else
CONFIGURE_ARGS+=--without-rlm_krb5
PLIST_SUB+= KRB5="@comment "
.endif

.if ${PORT_OPTIONS:MEDIR}
CONFIGURE_ARGS+=--with-edir
.if empty(PORT_OPTIONS:MLDAP)
PORT_OPTIONS+=  LDAP
.endif
.endif

.if ${PORT_OPTIONS:MLDAP}
USE_OPENLDAP=   YES
CONFIGURE_ARGS+=--with-rlm_ldap
PLIST_SUB+= LDAP=""
_REQUIRE+=  slapd
.else
CONFIGURE_ARGS+=--without-rlm_ldap
PLIST_SUB+= LDAP="@comment "
.endif

.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL=  YES
CONFIGURE_ARGS+=--with-rlm_sql_mysql
PLIST_SUB+= MYSQL=""
_REQUIRE+=  mysql
.else
CONFIGURE_ARGS+=--without-rlm_sql_mysql
PLIST_SUB+= MYSQL="@comment "
.endif

.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL=  YES
CONFIGURE_ARGS+=--with-rlm_sql_postgresql
PLIST_SUB+= PGSQL=""
_REQUIRE+=  postgresql
.else
CONFIGURE_ARGS+=--without-rlm_sql_postgresql
PLIST_SUB+= PGSQL="@comment "
.endif

.if ${PORT_OPTIONS:MUNIXODBC}
CONFIGURE_ARGS+=--with-rlm_sql_unixodbc
PLIST_SUB+= UNIXODBC=""
LIB_DEPENDS+=   libodbc.so:${PORTSDIR}/databases/unixODBC
.else
CONFIGURE_ARGS+=--without-rlm_sql_unixodbc
PLIST_SUB+= UNIXODBC="@comment "
.endif

.if ${PORT_OPTIONS:MFIREBIRD}
USE_FIREBIRD=   YES
CONFIGURE_ARGS+=--with-rlm_sql_firebird
PLIST_SUB+= FIREBIRD=""
.else
CONFIGURE_ARGS+=--without-rlm_sql_firebird
PLIST_SUB+= FIREBIRD="@comment "
.endif

# Firebird module is still experimental
.if ${PORT_OPTIONS:MFIREBIRD} && empty(PORT_OPTIONS:MEXPERIMENTAL)
EXPM=       yes
.endif

.if ${PORT_OPTIONS:MPERL}
USES+=      perl5
CONFIGURE_ARGS+=--with-rlm_perl
PLIST_SUB+= RLMPERL=""
.else
CONFIGURE_ARGS+=--without-perl --without-rlm_perl
PLIST_SUB+= RLMPERL="@comment "
.endif

.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON= yes
CONFIGURE_ARGS+=--with-rlm_python \
        --with-rlm-python-lib-dir=${PYTHON_LIBDIR} \
        --with-rlm-python-include-dir=${PYTHON_INCLUDEDIR}
CONFIGURE_ENV+= PYTHONBIN=${PYTHON_CMD}
PLIST_SUB+= RLMPYTHON=""
.else
CONFIGURE_ARGS+=--without-rlm_python
PLIST_SUB+= RLMPYTHON="@comment "
.endif

.if ${PORT_OPTIONS:MRUBY}
USE_RUBY=   yes
CONFIGURE_ARGS+=--with-rlm_ruby
PLIST_SUB+= RLMRUBY=""
.else
CONFIGURE_ARGS+=--without-rlm_ruby
PLIST_SUB+= RLMRUBY="@comment "
.endif

# rlm_ruby module is still experimental
.if ${PORT_OPTIONS:MRUBY} && empty(PORT_OPTIONS:MEXPERIMENTAL)
EXPM=       yes
.endif

.if ${PORT_OPTIONS:MDHCP}
CONFIGURE_ARGS+=--with-dhcp
.else
CONFIGURE_ARGS+=--without-dhcp
.endif

# DHCP is still experimental
.if ${PORT_OPTIONS:MDHCP} && empty(PORT_OPTIONS:MEXPERIMENTAL)
EXPM=       yes
.endif

# No SMB option yet; rlm_smb is still unbuildable
.if ${PORT_OPTIONS:MSMB}
LIB_DEPENDS=    libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient
CONFIGURE_ARGS+=--with-rlm_smb
CONFIGURE_ARGS+=--with-rlm-smb-lib-dir=${LOCALBASE}/lib
CONFIGURE_ARGS+=--with-rlm-smb-include-dir=${LOCALBASE}/include
PLIST_SUB+= SMB=""
.else
CONFIGURE_ARGS+=--without-rlm_smb
PLIST_SUB+= SMB="@comment "
.endif

# SMB module is still experimental
.if ${PORT_OPTIONS:MSMB} && empty(PORT_OPTIONS:MSMB)
EXPM=       yes
.endif

# Oracle support is experimental under FreeBSD
.if ${PORT_OPTIONS:MOCI8}
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-exec.c
CONFIGURE_ENV+= ORACLE_HOME="${ORACLE_HOME}"
ORACLE_HOME?=   ${LOCALBASE}/oracle8-client
BUILD_DEPENDS+= ${ORACLE_HOME}/lib/libclntst8.a:${PORTSDIR}/databases/oracle8-client
CONFIGURE_ARGS+=--with-oracle-home-dir=${ORACLE_HOME}/rdbms/demo
PLIST_SUB+= OCI8=""
.else
CONFIGURE_ARGS+=--without-rlm_sql_oracle
PLIST_SUB+= OCI8="@comment "
.endif

.if ${PORT_OPTIONS:MEXPERIMENTAL} || defined(EXPM)
CONFIGURE_ARGS+=--with-experimental-modules
PLIST_SUB+= EXPM=""
.else
PLIST_SUB+= EXPM="@comment "
.endif

.if ${PORT_OPTIONS:MDEVELOPER}
CONFIGURE_ARGS+=--enable-developer
# Turn off compiler optimisations
CFLAGS!=    ${ECHO} ${CFLAGS} | ${SED} -Ee 's:-O[0-9]?[[:space:]]*::g'
.endif

# Compile in UDPFROMTO support
.if ${PORT_OPTIONS:MUDPFROMTO}
CONFIGURE_ARGS+=--with-udpfromto
.endif

.if ${PORT_OPTIONS:MSSL_PORT}
WITH_OPENSSL_PORT=yes
.endif

.include <bsd.port.pre.mk>

.if ${ARCH} == "sparc64" && ${OSVERSION} < 700000
BROKEN=     Does not build on sparc64-6
.endif

FREERADIUS_LIBDIR=  lib/freeradius-${PORTVERSION}
PLIST_SUB+= LIBDIR="${FREERADIUS_LIBDIR}"
USE_LDCONFIG=   ${PREFIX}/${FREERADIUS_LIBDIR}

CONFIGURE_ARGS+=--quiet \
        --prefix=${PREFIX} \
        --libdir=${PREFIX}/${FREERADIUS_LIBDIR} \
        --localstatedir=/var \
        --with-system-libtool

.if empty(PORT_OPTIONS:MDOCS)
CONFIGURE_ARGS+=--without-docdir
PLIST_SUB+= PORTDOCS="@comment "
SUB_LIST+=  PORTDOCS="@comment "
.else
CONFIGURE_ARGS+=--with-docdir=${DOCSDIR}
PLIST_SUB+= PORTDOCS=""
SUB_LIST+=  PORTDOCS=""
.endif
CONFIGURE_ARGS+=--with-logdir=${LOGDIR} \
        --with-openssl-includes=${OPENSSLINC}
# This conditionality avoids -L/usr/lib in the radiusd build step when
# building with base system OpenSSL
.if ${OPENSSLLIB} != "/usr/lib"
CONFIGURE_ARGS+=--with-openssl-libraries=${OPENSSLLIB}
.endif
CONFIGURE_ARGS+=--without-rlm_eap_ikev2 \
        --without-rlm_eap_tnc \
        --without-rlm_eap2 \
        --without-rlm_opendirectory \
        --without-rlm_sql_db2 \
        --without-rlm_sql_iodbc \
        --without-rlm_sql_sqlite \
        --without-rlm_sql_sybase \
        --with-vmps

.if ${ARCH} == amd64
CONFIGURE_ARGS+=    --with-pic
.endif

SUB_LIST+=  RADIUS_USER="${RADIUS_USER}" \
        RADIUS_GROUP="${RADIUS_GROUP}" \
        RADDB_WORK="${WRKSRC}/raddb" \
        RADDB="${PREFIX}/etc/raddb" \
        LOGDIR="${LOGDIR}" \
        LIBDIR="${PREFIX}/${FREERADIUS_LIBDIR}"
SUB_FILES+= pkg-install pkg-message

MAN1=       radclient.1 radeapclient.1 radlast.1 radtest.1 radwho.1 \
        radzap.1 smbencrypt.1
MAN5=       acct_users.5 clients.conf.5 dictionary.5 radiusd.conf.5 \
        radrelay.conf.5 rlm_acct_unique.5 rlm_always.5 \
        rlm_attr_filter.5 rlm_attr_rewrite.5 rlm_chap.5 rlm_counter.5 \
        rlm_detail.5 rlm_digest.5 rlm_expr.5 rlm_files.5 rlm_mschap.5 \
        rlm_pap.5 rlm_passwd.5 rlm_policy.5 rlm_realm.5 rlm_sql.5 \
        rlm_sql_log.5 rlm_unix.5 unlang.5 users.5 checkrad.5
MAN8=       radiusd.8 radmin.8 raddebug.8 radrelay.8 radsqlrelay.8 \
        radwatch.8 rlm_ippool_tool.8 radconf2xml.8 radcrypt.8 \
        radsniff.8 rlm_dbm_cat.8 rlm_dbm_parser.8

SUB_LIST+=  REQUIRE="${_REQUIRE}"

post-patch:
# never try to find execinfo.h (needed until we can enable/disable backtrace
    @${REINPLACE_CMD} -e '/execinfo.h/d' ${WRKSRC}/configure \
        ${WRKSRC}/configure.in
# Patch Makefile / Makefile.in throughout the source tree to install raddb
# contents in ${EXAMPLESDIR}/raddb rather than the raddbdir from configure
    @${FIND} -E ${WRKSRC} -regex '.*/Makefile(\.in)?$$' -exec \
        ${REINPLACE_CMD} -e "s:\$$(R)\$$(raddbdir):${EXAMPLESDIR}/raddb:g" {} \;
# Clean up after the last operation (so as not to get unwanted files when installing doc/)
    @${FIND} -E ${WRKSRC} -regex '.*/Makefile(\.in)?\.(orig|bak)$$' -delete
# Patch raddb/certs/bootstrap to use gmake instead of make
    @${REINPLACE_CMD} -Ee "s:^make:${GMAKE}:" \
        ${WRKSRC}/raddb/certs/bootstrap
# Patch raddb/certs/Makefile for the full path to the openssl binary (using
# ports OpenSSL if installed)
    @${REINPLACE_CMD} -E \
        -e "s:^([[:space:]])+openssl:\1${OPENSSLBASE}/bin/openssl:g" \
        ${WRKSRC}/raddb/certs/Makefile
# Clean up after the last two operations (so as not to get unwanted files in
# raddb)
    @${FIND} -E ${WRKSRC}/raddb/certs \
        -regex '.*/(bootstrap|Makefile)\.(orig|bak)$$' \
        -delete
# If we're using Heimdal from base, alter the LIBS variable
.if ${PORT_OPTIONS:MHEIMDAL} && empty(PORT_OPTIONS:MHEIMDAL_PORT)
    @${REINPLACE_CMD} -e 's|LIBS|KRB5LIBS|g' ${WRKSRC}/src/modules/rlm_krb5/configure
    @${REINPLACE_CMD} -e 's|-lkrb5|$$(${KRB5_CONFIG})|g' \
        ${WRKSRC}/src/modules/rlm_krb5/configure
.endif
# If DHCP is enabled, enable the DHCP dictionary
.if ${PORT_OPTIONS:MDHCP}
    @${REINPLACE_CMD} -Ee 's:^#(.+ dictionary\.dhcp)$$:\1:g' \
        ${WRKSRC}/share/dictionary
# Clean up (so as not to get an unwanted file in share)
    @${FIND} -E ${WRKSRC}/share \
        -regex '.*/dictionary\.(orig|bak)$$' \
        -delete
.endif
# Fix PgSQL statement
    @${REINPLACE_CMD} -i '' -e 's|ius.rad||' \
        ${WRKSRC}/raddb/sql/postgresql/admin.sql
# Patch scripts/Makefile not to install (unnecessary) rc.radiusd
    @${REINPLACE_CMD} -Ee 's:^(.+rc\.radiusd.+)$$:#\1:g' \
        ${WRKSRC}/scripts/Makefile

pre-configure:
# Replace -pthread with ${PTHREAD_LIBS} in configure(.in) files
    @${FIND} -E ${WRKSRC} -regex '.*/configure(\.in)?$$' -exec \
        ${REINPLACE_CMD} -e "s:-pthread:${PTHREAD_LIBS}:g" {} \;
# Force the rebuild of some configures from configure.in, as we're patching
# the configure.in
# NOTE: ${WRKSRC}/configure is rebuilt automatically once autoconf is
# added to USE_AUTOTOOLS
    @cd ${WRKSRC}/src/modules/rlm_ldap && ${AUTOCONF} -I ${WRKSRC}
    @cd ${WRKSRC}/src/modules/rlm_sql/drivers/rlm_sql_mysql \
        && ${AUTOCONF} -I ${WRKSRC}
    @cd ${WRKSRC}/src/modules/rlm_perl && ${AUTOCONF} -I ${WRKSRC}
    @cd ${WRKSRC}/src/modules/rlm_python && ${AUTOCONF} -I ${WRKSRC}

pre-install:
# Run pkg-install PRE-INSTALL
    @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} \
        PRE-INSTALL

post-install:
# If ${PREFIX}/etc/raddb isn't a directory (or a symlink), make a copy
# of ${EXAMPLESDIR}/raddb as ${PREFIX}/etc/raddb, then bootstrap the
# certificates
    @if ! [ -d ${PREFIX}/etc/raddb -o -L ${PREFIX}/etc/raddb ]; then \
        ${CP} -RP ${EXAMPLESDIR}/raddb ${PREFIX}/etc/raddb; \
        ${ECHO_MSG} '===> Bootstrapping default certificates, please wait...'; \
        ${PREFIX}/etc/raddb/certs/bootstrap >/dev/null 2>&1; \
    fi
# Set ${PREFIX}/etc/raddb and all the files and folders in it to g-w,o-rwx
# (FreeRADIUS will probably complain if this is not done)
    @${CHMOD} -R g-w,o-rwx ${PREFIX}/etc/raddb
# Run pkg-install POST-INSTALL
    @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} \
        POST-INSTALL
# Display the contents of pkg-message
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>