]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/freeradius
freeradius: Fix build on armv5tel
[ipfire-2.x.git] / lfs / freeradius
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
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
25 include Config
26
27 VER = 3.0.18
28
29 THISAPP = freeradius-server-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34 PROG = freeradius
35 PAK_VER = 5
36
37 DEPS = "samba"
38
39 ifeq "$(BUILD_ARCH)" "armv5tel"
40 LDFLAGS += -latomic
41 endif
42
43 ###############################################################################
44 # Top-level Rules
45 ###############################################################################
46
47 objects = $(DL_FILE)
48
49 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
51 $(DL_FILE)_MD5 = 05f0c8c7ac79659f808ff31751daa857
52
53 install : $(TARGET)
54
55 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57 download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59 md5 : $(subst %,%_MD5,$(objects))
60
61 dist:
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)
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
84 $(UPDATE_AUTOMAKE)
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 \
101 --without-rlm_sql_mysql
102
103 cd $(DIR_APP) && make $(MAKETUNING)
104 cd $(DIR_APP) && make install
105
106 sed -i /etc/raddb/radiusd.conf \
107 -e "s/^#user =.*$$/user = nobody/" \
108 -e "s/^#group =.*$$/group = nobody/"
109
110 rm -rvf \
111 /root/.rnd \
112 /var/run/radiusd \
113 /etc/raddb/certs/*.crt \
114 /etc/raddb/certs/*.csr \
115 /etc/raddb/certs/*.der \
116 /etc/raddb/certs/*.key \
117 /etc/raddb/certs/*.pem \
118 /etc/raddb/certs/*.p12 \
119 /etc/raddb/certs/index.* \
120 /etc/raddb/certs/serial* \
121 /etc/raddb/certs/dh \
122 /etc/raddb/certs/random \
123 /usr/sbin/rc.radiusd \
124 /usr/bin/rbmonkey \
125 /etc/raddb/mods-config/sql/main/mssql \
126 /etc/raddb/mods-config/sql/ippool/oracle \
127 /etc/raddb/mods-config/sql/ippool-dhcp/oracle \
128 /etc/raddb/mods-config/sql/main/oracle \
129 /etc/raddb/mods-available/unbound \
130 /etc/raddb/mods-config/unbound/default.conf \
131 /etc/raddb/mods-available/couchbase \
132 /etc/raddb/mods-available/abfab* \
133 /etc/raddb/policy.d/abfab* \
134 /etc/raddb/sites-available/abfab* \
135 /usr/lib/freeradius/rlm_test.so \
136 /etc/raddb/experimental.conf
137
138 install -v -m 644 $(DIR_SRC)/config/backup/includes/freeradius \
139 /var/ipfire/backup/addons/includes/freeradius
140
141 #install initscripts
142 $(call INSTALL_INITSCRIPT,freeradius)
143
144 @rm -rf $(DIR_APP)
145 @$(POSTBUILD)