]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/hostapd
Bump PAK_VER for all packages that use SERVICES
[ipfire-2.x.git] / lfs / hostapd
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2022 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 SUMMARY = Daemon for running a WPA capable Access Point
28 VER = 2_10
29
30 THISAPP = hostap_$(VER)
31 DL_FILE = $(THISAPP).tar.bz2
32 DL_FROM = $(URL_IPFIRE)
33 DIR_APP = $(DIR_SRC)/$(THISAPP)
34 TARGET = $(DIR_INFO)/$(THISAPP)
35 PROG = hostapd
36 PAK_VER = 60
37
38 DEPS =
39
40 SERVICES = hostapd
41
42 ###############################################################################
43 # Top-level Rules
44 ###############################################################################
45
46 objects = $(DL_FILE)
47
48 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
49
50 $(DL_FILE)_BLAKE2 = de474630835a1208ce456d3151759cd3411dc63b2470de7144117634d4985aba1c878fd2cc2388cf6226bc0674eb2bf48cc4b4491f85f3461966b0278f75ea1e
51
52 install : $(TARGET)
53
54 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56 download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
58 b2 : $(subst %,%_BLAKE2,$(objects))
59
60 dist:
61 @$(PAK)
62
63 ###############################################################################
64 # Downloading, checking, b2sum
65 ###############################################################################
66
67 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 @$(CHECK)
69
70 $(patsubst %,$(DIR_DL)/%,$(objects)) :
71 @$(LOAD)
72
73 $(subst %,%_BLAKE2,$(objects)) :
74 @$(B2SUM)
75
76 ###############################################################################
77 # Installation Details
78 ###############################################################################
79
80 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
82 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
83
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-noscan.patch
86
87 cd $(DIR_APP)/hostapd && cp $(DIR_SRC)/config/hostapd/config ./.config
88 cd $(DIR_APP)/hostapd && sed -e "s@/usr/local@/usr@g" -i Makefile
89 cd $(DIR_APP)/hostapd && make $(MAKETUNING) $(EXTRA_MAKE)
90 cd $(DIR_APP)/hostapd && make install
91 install -v -m 644 $(DIR_SRC)/config/backup/includes/hostapd /var/ipfire/backup/addons/includes/hostapd
92 # install initscript
93 $(call INSTALL_INITSCRIPTS,$(SERVICES))
94 mkdir -p /var/ipfire/wlanap
95 touch /var/ipfire/wlanap/settings
96 cp -vrf $(DIR_SRC)/config/hostapd/hostapd.conf /var/ipfire/wlanap/hostapd.conf
97 touch /var/ipfire/wlanap/hostapd.accept
98 touch /var/ipfire/wlanap/hostapd.deny
99 cp -vrf /var/ipfire/wlanap/hostapd.* /etc/
100 chown nobody:nobody /var/ipfire/wlanap/*
101 chmod 644 /var/ipfire/wlanap/*
102 @rm -rf $(DIR_APP)
103 @$(POSTBUILD)