xsupplicant: fix compile errors related to iwlib.h
[packages.git] / net / xsupplicant / 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:=xsupplicant
11 PKG_VERSION:=1.2.8
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/open1x
16 PKG_MD5SUM:=75f89731b905eb8d36a52621661e1226
17
18 PKG_BUILD_DEPENDS:=PACKAGE_kmod-madwifi:madwifi
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/xsupplicant
23   SECTION:=net
24   CATEGORY:=Network
25   DEPENDS:=+libopenssl +libiw
26   TITLE:=A fully compliant 802.1x authenticator
27   URL:=http://open1x.sourceforge.net/
28 endef
29
30 define Package/xsupplicant/description
31  This software allows a GNU/Linux or BSD workstation to authenticate with 
32  a RADIUS server using 802.1x and various EAP protocols.
33 endef
34
35 define Package/xsupplicant/conffiles
36 /etc/xsupplicant.conf
37 endef
38
39 TARGET_CFLAGS += --std=gnu99
40
41 CONFIGURE_ARGS+= \
42         --with-openssl="$(STAGING_DIR)/usr" \
43         --with-madwifi-path="$(STAGING_DIR)/usr/include/madwifi" \
44
45 CONFIGURE_VARS+= \
46         CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/madwifi" \
47
48 define Build/Prepare
49         $(call Build/Prepare/Default)
50         (cd $(PKG_BUILD_DIR); touch \
51                 configure.in \
52                 aclocal.m4 \
53                 Makefile.in \
54                 configure \
55         );
56 endef
57
58 define Build/Compile    
59         $(MAKE) -C $(PKG_BUILD_DIR) \
60                 DESTDIR="$(PKG_INSTALL_DIR)" \
61                 all install
62 endef
63
64 define Package/xsupplicant/install      
65         $(INSTALL_DIR) $(1)/etc
66         $(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/xsupplicant.conf $(1)/etc/
67         $(INSTALL_DIR) $(1)/usr/bin
68         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/xsup_* $(1)/usr/bin/
69         $(INSTALL_DIR) $(1)/usr/sbin
70         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xsupplicant $(1)/usr/sbin/
71 endef
72
73 $(eval $(call BuildPackage,xsupplicant))