hostapd: prefer built-in crypto header files over external ones from STAGING_DIR...
[openwrt/openwrt.git] / package / hostapd / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=hostapd
11 PKG_VERSION:=0.6.9
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/
16 PKG_SOURCE_SUBDIR:=hostapd-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=$(PKG_REV)
18 PKG_MD5SUM:=83630d11fa66ade9091f1b304fccd74c
19
20 PKG_BUILD_DEPENDS:= \
21 PACKAGE_kmod-madwifi:madwifi \
22 PACKAGE_kmod-mac80211:mac80211 \
23
24 PKG_CONFIG_DEPENDS:= \
25 CONFIG_PACKAGE_kmod-ath9k \
26 CONFIG_PACKAGE_kmod-mac80211 \
27 CONFIG_PACKAGE_kmod-madwifi \
28 CONFIG_PACKAGE_hostapd \
29 CONFIG_PACKAGE_hostapd-mini \
30
31 include $(INCLUDE_DIR)/package.mk
32
33 DRIVER_MAKEOPTS= \
34 CONFIG_DRIVER_NL80211=$(CONFIG_PACKAGE_kmod-mac80211) \
35 CONFIG_DRIVER_MADWIFI=$(CONFIG_PACKAGE_kmod-madwifi) \
36 CONFIG_IEEE80211N=$(CONFIG_PACKAGE_kmod-ath9k)
37
38 define Package/hostapd/Default
39 SECTION:=net
40 CATEGORY:=Network
41 TITLE:=IEEE 802.1x Authenticator
42 URL:=http://hostap.epitest.fi/
43 DEPENDS:=@!TARGET_avr32 @!TARGET_etrax +PACKAGE_kmod-mac80211:libnl-tiny
44 endef
45
46 define Package/hostapd
47 $(call Package/hostapd/Default)
48 TITLE+= (full)
49 DEPENDS+= +PACKAGE_hostapd:libopenssl
50 endef
51
52 #define Package/hostapd/conffiles
53 #/etc/hostapd.conf
54 #endef
55
56 define Package/hostapd/description
57 This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
58 Authenticator.
59 endef
60
61 define Package/hostapd-mini
62 $(call Package/hostapd/Default)
63 TITLE+= (WPA-PSK only)
64 endef
65
66 #define Package/hostapd-mini/conffiles
67 #/etc/hostapd.conf
68 #endef
69
70 define Package/hostapd-mini/description
71 This package contains a minimal IEEE 802.1x/WPA/EAP/RADIUS Authenticator
72 (WPA-PSK only).
73 endef
74
75 define Package/hostapd-utils
76 $(call Package/hostapd/Default)
77 TITLE+= (utils)
78 DEPENDS:=@PACKAGE_hostapd||PACKAGE_hostapd-mini
79 endef
80
81 define Package/hostapd-utils/description
82 This package contains a command line utility to control the
83 IEEE 802.1x/WPA/EAP/RADIUS Authenticator.
84 endef
85
86 define Build/ConfigureTarget
87 rm -rf $(PKG_BUILD_DIR)/hostapd.$(1)
88 mkdir -p $(PKG_BUILD_DIR)/hostapd.$(1)
89 $(CP) \
90 $(PKG_BUILD_DIR)/hostapd \
91 $(PKG_BUILD_DIR)/src \
92 $(PKG_BUILD_DIR)/hostapd.$(1)/
93 $(CP) ./files/$(1).config $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config
94 endef
95
96 TARGET_CPPFLAGS := \
97 -I$(STAGING_DIR)/usr/include/libnl-tiny \
98 -I$(PKG_BUILD_DIR)/src/crypto \
99 $(TARGET_CPPFLAGS) \
100 -I$(STAGING_DIR)/usr/include/madwifi \
101 -I$(STAGING_DIR)/usr/include/mac80211 \
102 -DCONFIG_LIBNL20 \
103 -D_GNU_SOURCE
104
105 define Build/CompileTarget
106 CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
107 $(MAKE) -C $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd \
108 $(TARGET_CONFIGURE_OPTS) \
109 $(DRIVER_MAKEOPTS) \
110 LIBS="$(TARGET_LDFLAGS) \
111 $(if $(CONFIG_PACKAGE_kmod-mac80211),-lm -lnl-tiny) \
112 $(if $(findstring default,$(1)),-lssl -lcrypto)" \
113 hostapd hostapd_cli
114 $(CP) $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/hostapd_cli $(PKG_BUILD_DIR)/
115 endef
116
117 define Package/InstallTemplate
118 $(INSTALL_DIR) $$(1)/lib/wifi
119 $(INSTALL_DATA) ./files/hostapd.sh $$(1)/lib/wifi/hostapd.sh
120 $(INSTALL_DIR) $$(1)/usr/sbin
121 $(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd $$(1)/usr/sbin/
122 # config is managed through uci
123 # $(INSTALL_DIR) $$(1)/etc
124 # $(INSTALL_CONF) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd.conf $$(1)/etc/hostapd.conf
125 endef
126
127 define Package/Template
128 ifneq ($(CONFIG_PACKAGE_$(1)),)
129 define Build/Configure/$(2)
130 $(call Build/ConfigureTarget,$(2))
131 endef
132 define Build/Compile/$(2)
133 $(call Build/CompileTarget,$(2))
134 endef
135 define Package/$(1)/install
136 $(call Package/InstallTemplate,$(1),$(2))
137 endef
138 endif
139 endef
140
141 define Build/Configure
142 rm -f $(PKG_BUILD_DIR)/.configured*
143 $(call Build/Configure/default)
144 $(call Build/Configure/mini)
145 endef
146
147 define Build/Compile
148 $(call Build/Compile/default)
149 $(call Build/Compile/mini)
150 endef
151
152 define Build/Clean
153 rm -rf $(PKG_BUILD_DIR)_default
154 rm -rf $(PKG_BUILD_DIR)_mini
155 endef
156
157 define Package/hostapd-utils/install
158 $(INSTALL_DIR) $(1)/usr/sbin
159 $(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd_cli $(1)/usr/sbin/
160 endef
161
162 $(eval $(call Package/Template,hostapd,default))
163 $(eval $(call Package/Template,hostapd-mini,mini))
164
165 $(eval $(call BuildPackage,hostapd))
166 $(eval $(call BuildPackage,hostapd-mini))
167 $(eval $(call BuildPackage,hostapd-utils))