]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/freeradius
core132: Ship updated apache configuration
[ipfire-2.x.git] / lfs / freeradius
CommitLineData
71f578bb
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
9f52e350 4# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
71f578bb
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
9f52e350 27VER = 3.0.18
71f578bb
MT
28
29THISAPP = freeradius-server-$(VER)
9f52e350 30DL_FILE = $(THISAPP).tar.bz2
71f578bb
MT
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34PROG = freeradius
9f52e350 35PAK_VER = 5
71f578bb
MT
36
37DEPS = "samba"
38
4038d70b
MT
39ifeq "$(BUILD_ARCH)" "armv5tel"
40 LDFLAGS += -latomic
41endif
42
71f578bb
MT
43###############################################################################
44# Top-level Rules
45###############################################################################
46
47objects = $(DL_FILE)
48
49$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
9f52e350 51$(DL_FILE)_MD5 = 05f0c8c7ac79659f808ff31751daa857
71f578bb
MT
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59md5 : $(subst %,%_MD5,$(objects))
60
61dist:
62 @$(PAK)
63
64###############################################################################
65# Downloading, checking, md5sum
66###############################################################################
67
68$(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71$(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74$(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77###############################################################################
78# Installation Details
79###############################################################################
80
81$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
9f52e350 83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
3850e662 84 $(UPDATE_AUTOMAKE)
71f578bb
MT
85 cd $(DIR_APP) && \
86 ./configure \
87 --prefix=/usr \
88 --sysconfdir=/etc \
89 --libdir=/usr/lib/freeradius \
90 --localstatedir=/var \
91 --with-system-libtool \
92 --with-threads \
93 --with-thread-pool \
94 --disable-ltdl-install \
95 --without-rlm_eap_ikev2 \
96 --without-rlm_sql_iodbc \
97 --without-rlm_sql_firebird \
98 --without-rlm_sql_db2 \
99 --without-rlm_sql_oracle \
100 --without-rlm_sql_sqlite \
94f89b82
MT
101 --without-rlm_sql_mysql \
102 LDFLAGS="$(LDFLAGS)"
103
71f578bb
MT
104 cd $(DIR_APP) && make $(MAKETUNING)
105 cd $(DIR_APP) && make install
106
107 sed -i /etc/raddb/radiusd.conf \
108 -e "s/^#user =.*$$/user = nobody/" \
109 -e "s/^#group =.*$$/group = nobody/"
110
111 rm -rvf \
112 /root/.rnd \
113 /var/run/radiusd \
114 /etc/raddb/certs/*.crt \
115 /etc/raddb/certs/*.csr \
116 /etc/raddb/certs/*.der \
117 /etc/raddb/certs/*.key \
118 /etc/raddb/certs/*.pem \
119 /etc/raddb/certs/*.p12 \
120 /etc/raddb/certs/index.* \
121 /etc/raddb/certs/serial* \
122 /etc/raddb/certs/dh \
123 /etc/raddb/certs/random \
124 /usr/sbin/rc.radiusd \
125 /usr/bin/rbmonkey \
126 /etc/raddb/mods-config/sql/main/mssql \
127 /etc/raddb/mods-config/sql/ippool/oracle \
128 /etc/raddb/mods-config/sql/ippool-dhcp/oracle \
129 /etc/raddb/mods-config/sql/main/oracle \
130 /etc/raddb/mods-available/unbound \
131 /etc/raddb/mods-config/unbound/default.conf \
132 /etc/raddb/mods-available/couchbase \
133 /etc/raddb/mods-available/abfab* \
134 /etc/raddb/policy.d/abfab* \
135 /etc/raddb/sites-available/abfab* \
136 /usr/lib/freeradius/rlm_test.so \
137 /etc/raddb/experimental.conf
138
139 install -v -m 644 $(DIR_SRC)/config/backup/includes/freeradius \
140 /var/ipfire/backup/addons/includes/freeradius
141
dbb35fa6
JS
142 #install initscripts
143 $(call INSTALL_INITSCRIPT,freeradius)
144
71f578bb
MT
145 @rm -rf $(DIR_APP)
146 @$(POSTBUILD)