2008-07-06 18:23:29 +00:00
|
|
|
#
|
2011-05-22 12:02:35 +00:00
|
|
|
# Copyright (C) 2007-2011 OpenWrt.org
|
2007-11-30 11:30:37 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=iw
|
2011-02-10 03:37:28 +00:00
|
|
|
PKG_VERSION:=0.9.22
|
2011-05-22 12:02:35 +00:00
|
|
|
PKG_RELEASE:=2
|
2007-11-30 11:30:37 +00:00
|
|
|
|
2008-09-21 14:51:44 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://wireless.kernel.org/download/iw/
|
2011-02-10 03:37:28 +00:00
|
|
|
PKG_MD5SUM:=561c2602c5ce7c65a590118286c0892a
|
2009-04-30 14:38:30 +00:00
|
|
|
PKG_BUILD_DEPENDS:=mac80211
|
2007-11-30 11:30:37 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/iw
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=cfg80211 interface configuration utility
|
2008-09-21 14:51:44 +00:00
|
|
|
URL:=http://wireless.kernel.org/en/users/Documentation/iw
|
2010-03-10 04:12:57 +00:00
|
|
|
DEPENDS:= +libnl-tiny @(!(TARGET_avr32||TARGET_etrax)||BROKEN)
|
2007-11-30 11:30:37 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2009-04-25 14:53:42 +00:00
|
|
|
echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
|
2009-04-30 14:38:30 +00:00
|
|
|
rm -f $(PKG_BUILD_DIR)/version.sh
|
|
|
|
touch $(PKG_BUILD_DIR)/version.sh
|
|
|
|
chmod +x $(PKG_BUILD_DIR)/version.sh
|
2007-11-30 11:30:37 +00:00
|
|
|
endef
|
|
|
|
|
2009-04-30 14:38:30 +00:00
|
|
|
TARGET_CPPFLAGS:= \
|
|
|
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
|
|
|
$(TARGET_CPPFLAGS) \
|
2009-05-04 16:13:46 +00:00
|
|
|
-DCONFIG_LIBNL20 \
|
|
|
|
-D_GNU_SOURCE
|
2009-04-30 14:38:30 +00:00
|
|
|
|
2007-11-30 11:30:37 +00:00
|
|
|
MAKE_FLAGS += \
|
2009-04-30 14:38:30 +00:00
|
|
|
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
NL1FOUND="" NL2FOUND=Y \
|
|
|
|
NLLIBNAME="libnl-tiny" \
|
|
|
|
LIBS="-lm -lnl-tiny" \
|
|
|
|
V=1
|
2007-11-30 11:30:37 +00:00
|
|
|
|
2010-06-26 20:44:28 +00:00
|
|
|
define Package/iw/install
|
2007-11-30 11:30:37 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iw $(1)/usr/sbin/
|
2010-06-26 20:44:28 +00:00
|
|
|
endef
|
2007-11-30 11:30:37 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,iw))
|