X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=package%2Fhostapd%2FMakefile;h=eccb158abf1a67474a7b2db07844e6a5fc515373;hb=53b8d2f434088c1a43a9c335a0b3843c582e0a4e;hp=5c4ba22458f28cc417de2d0706416fb8e19afee4;hpb=f5ce6bce09e70145832f53e0a8358a373f4c0f82;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index 5c4ba22458..eccb158abf 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,85 +9,98 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hostapd -PKG_VERSION:=0.5.5 +PKG_VERSION:=0.6.6 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ -PKG_MD5SUM:=92288aeb2b90c0c81ae3f50beff9b890 -PKG_CAT:=zcat - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) - -PKG_BUILDDEP:=madwifi +PKG_SOURCE_SUBDIR:=hostapd-$(PKG_VERSION) +PKG_SOURCE_VERSION:=$(PKG_REV) +PKG_MD5SUM:=cba36847d38c753731afefe1460f5f90 +PKG_BUILD_DEPENDS:=PACKAGE_kmod-madwifi:madwifi PACKAGE_kmod-mac80211:mac80211 PACKAGE_kmod-mac80211:libnl include $(INCLUDE_DIR)/package.mk +STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar,CONFIG_PACKAGE_kmod-mac80211 CONFIG_PACKAGE_kmod-madwifi CONFIG_PACKAGE_hostapd CONFIG_PACKAGE_hostapd-mini) define Package/hostapd/Default SECTION:=net CATEGORY:=Network TITLE:=IEEE 802.1x Authenticator URL:=http://hostap.epitest.fi/ + DEPENDS:=@!TARGET_avr32 @!TARGET_etrax endef define Package/hostapd - $(call Package/hostapd/Default) - DEPENDS:=+libopenssl +$(call Package/hostapd/Default) TITLE+= (full) - DESCRIPTION:=\ - This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS \\\ - Authenticator. + DEPENDS+= +PACKAGE_hostapd:libopenssl endef -define Package/hostapd/conffiles -/etc/hostapd.conf +#define Package/hostapd/conffiles +#/etc/hostapd.conf +#endef + +define Package/hostapd/description + This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS + Authenticator. endef define Package/hostapd-mini - $(call Package/hostapd/Default) +$(call Package/hostapd/Default) TITLE+= (WPA-PSK only) - DESCRIPTION:=\ - This package contains a minimal IEEE 802.1x/WPA/EAP/RADIUS Authenticator \\\ - (WPA-PSK only). endef -define Package/hostapd-mini/conffiles -/etc/hostapd.conf +#define Package/hostapd-mini/conffiles +#/etc/hostapd.conf +#endef + +define Package/hostapd-mini/description + This package contains a minimal IEEE 802.1x/WPA/EAP/RADIUS Authenticator + (WPA-PSK only). endef define Package/hostapd-utils $(call Package/hostapd/Default) - DEPENDS:=@PACKAGE_hostapd||PACKAGE_hostapd-mini TITLE+= (utils) - DESCRIPTION:=\ - This package contains a command line utility to control the \\\ - IEEE 802.1x/WPA/EAP/RADIUS Authenticator. + DEPENDS:=@PACKAGE_hostapd||PACKAGE_hostapd-mini +endef + +define Package/hostapd-utils/description + This package contains a command line utility to control the + IEEE 802.1x/WPA/EAP/RADIUS Authenticator. endef define Build/ConfigureTarget - $(CP) $(PKG_BUILD_DIR) $(PKG_BUILD_DIR)_$(1) - $(CP) ./files/$(1).config $(PKG_BUILD_DIR)_$(1)/.config + rm -rf $(PKG_BUILD_DIR)/hostapd.$(1) + mkdir -p $(PKG_BUILD_DIR)/hostapd.$(1) + $(CP) \ + $(PKG_BUILD_DIR)/hostapd \ + $(PKG_BUILD_DIR)/src \ + $(PKG_BUILD_DIR)/hostapd.$(1)/ + $(CP) ./files/$(1).config $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config + $(if $(CONFIG_PACKAGE_kmod-mac80211),,$(SED) 's,^CONFIG_DRIVER_NL80211,#CONFIG_DRIVER_NL80211,g' $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config) + $(if $(CONFIG_PACKAGE_kmod-madwifi),,$(SED) 's,^CONFIG_DRIVER_MADWIFI,#CONFIG_DRIVER_MADWIFI,g' $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config) endef define Build/CompileTarget - $(MAKE) -C $(PKG_BUILD_DIR)_$(1) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/madwifi -I$(STAGING_DIR)/usr/include/mac80211 -I$(STAGING_DIR)/usr/include/libnl -I$(STAGING_DIR)/usr/include" \ + $(MAKE) -C $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd \ $(TARGET_CONFIGURE_OPTS) \ - OPTFLAGS="$(TARGET_CFLAGS)" \ - CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include/madwifi" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + LIBS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib \ + $(if $(CONFIG_PACKAGE_kmod-mac80211),-lm $(STAGING_DIR)/usr/lib/libnl.a) \ + $(if $(findstring default,$(1)),-lssl -lcrypto)" \ hostapd hostapd_cli - $(CP) $(PKG_BUILD_DIR)_$(1)/hostapd_cli $(PKG_BUILD_DIR)/ + $(CP) $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/hostapd_cli $(PKG_BUILD_DIR)/ endef define Package/InstallTemplate - if [ \! -f "$(PKG_BUILD_DIR)_$(2)/hostapd" ]; then \ - rm -f $(PKG_BUILD_DIR)/.built; \ - $(MAKE) $(PKG_BUILD_DIR)/.built; \ - fi - $(INSTALL_DIR) $$(1)/etc - install -m0600 $(PKG_BUILD_DIR)_$(2)/madwifi.conf $$(1)/etc/hostapd.conf + $(INSTALL_DIR) $$(1)/lib/wifi + $(INSTALL_DATA) ./files/hostapd.sh $$(1)/lib/wifi/hostapd.sh $(INSTALL_DIR) $$(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)_$(2)/hostapd $$(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd $$(1)/usr/sbin/ +# config is managed through uci +# $(INSTALL_DIR) $$(1)/etc +# $(INSTALL_CONF) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd.conf $$(1)/etc/hostapd.conf endef define Package/Template @@ -105,6 +118,7 @@ define Package/Template endef define Build/Configure + rm -f $(PKG_BUILD_DIR)/.configured* $(call Build/Configure/default) $(call Build/Configure/mini) endef