Project import
diff --git a/iw-0.9.22/Makefile b/iw-0.9.22/Makefile
new file mode 100644
index 0000000..876bd85
--- /dev/null
+++ b/iw-0.9.22/Makefile
@@ -0,0 +1,123 @@
+#
+#    Copyright (c) 2010-2011 Nest, Inc.
+#    All rights reserved.
+#
+#    This document is the property of Nest. It is considered
+#    confidential and proprietary information.
+#
+#    This document may not be reproduced or transmitted in any form,
+#    in whole or in part, without the express written permission of
+#    Nest.
+#
+#    Description:
+#      This file is for iw, a library and set of utilities for
+#      manipulating Linux nl80211-based wireless network interfaces.
+#
+
+BuildConfigSpecialized	:= No
+BuildProductSpecialized	:= Yes
+
+include pre.mak
+
+PackageRoot		:= ./$(IwPackageName)
+PackageExtension	:= tar.bz2
+PackageSeparator	:=
+PackageVersion		:=
+
+PackagePatchArgs	:= -p1
+
+PackageArchive		:= $(IwPackageName)/$(IwPackageName).$(PackageExtension)
+PackageSourceDir	:= $(IwPackageName)/$(IwPackageName)$(PackageSeparator)$(PackageVersion)
+PackagePatchDir	    := $(IwPackageName)/$(IwPackageName).patches
+
+PackageBuildMakefile	= $(call GenerateBuildPaths,Makefile)
+
+LicenseSourceFile	:= COPYING
+LicenseSourcePath	:= $(addprefix $(PackageSourceDir)/,$(LicenseSourceFile))
+
+CleanPaths		+= $(PackageLicenseFile)
+
+NetlinkDir		:= sw/tps/libnl
+NetlinkIncDir		:= $(call GenerateResultPaths,$(NetlinkDir),usr/include)
+NetlinkLibDir		:= $(call GenerateResultPaths,$(NetlinkDir),usr/lib)
+
+all: $(PackageDefaultGoal)
+
+# Generate the package license contents.
+
+$(LicenseSourcePath): source
+
+$(PackageLicenseFile): $(LicenseSourcePath)
+	$(copy-result)
+
+# Extract the source from the archive and apply patches, if any.
+
+$(PackageSourceDir): $(PackageArchive) $(PackagePatchPaths)
+	$(call expand-archive,$(PackageArchive),$(PackageRoot))
+	$(Verbose)touch $@
+	$(call patch-directory,$(PackageSourceDir),$(PackagePatchArgs),$(PackagePatchPaths))
+
+# Prepare the sources.
+
+.PHONY: source
+source: | $(PackageSourceDir)
+
+# Patch the sources, if necessary.
+
+.PHONY: patch
+patch: source
+
+# Generate the package build makefile.
+
+$(PackageBuildMakefile): | $(PackageSourceDir) $(BuildDirectory)
+	$(call create-links,$(CURDIR)/$(PackageSourceDir),$(BuildDirectory))
+
+# Configure the source for building.
+
+.PHONY: configure
+configure: source $(PackageBuildMakefile)
+
+# Build the source.
+#
+# We have to unset MAKEFLAGS since they confuse the package build otherwise.
+
+.PHONY: build
+build: configure | $(BuildDirectory)
+	$(Verbose)unset MAKEFLAGS && \
+	$(MAKE) $(JOBSFLAG) -C $(BuildDirectory) \
+	CC="$(CC)" CXX="$(CXX)" AR=$(AR) NM=$(NM) RANLIB=$(RANLIB) STRIP=$(STRIP) \
+	INSTALL="$(INSTALL) $(INSTALLFLAGS)" \
+	NLLIBNAME="libnl-2.0" \
+	NLCFLAGS="$(call ToolGenerateIncludeArgument,$(NetlinkIncDir))" \
+	NLLDFLAGS="-L$(NetlinkLibDir)" \
+	all
+
+# Stage the build to a temporary installation area.
+#
+# We have to unset MAKEFLAGS since they confuse the package build otherwise.
+
+.PHONY: stage stage-default stage-headers
+stage: stage-default stage-headers
+
+stage-default: build | $(ResultDirectory)
+	$(Verbose)unset MAKEFLAGS && \
+	$(MAKE) $(JOBSFLAG) -C $(BuildDirectory) \
+	NLLIBNAME="libnl-2.0" \
+	DESTDIR=$(ResultDirectory) \
+	install
+
+ResultHeaderDir			= $(ResultDirectory)/usr/include
+SourceHeaderPaths		= $(wildcard $(BuildDirectory)/*.h)
+
+$(ResultHeaderDir):
+	$(create-directory)
+
+stage-headers: build | $(ResultHeaderDir)
+	install --mode=0664 $(SourceHeaderPaths) $(ResultHeaderDir)
+
+clean:
+	$(Verbose)$(RM) $(RMFLAGS) -r $(PackageSourceDir)
+	$(Verbose)$(RM) $(RMFLAGS) -r $(BuildDirectory)
+	$(Verbose)$(RM) $(RMFLAGS) -r $(ResultDirectory)
+
+include post.mak
diff --git a/iw-0.9.22/iw.url b/iw-0.9.22/iw.url
new file mode 100644
index 0000000..a3891cc
--- /dev/null
+++ b/iw-0.9.22/iw.url
@@ -0,0 +1 @@
+git://git.sipsolutions.net/iw.git
diff --git a/iw-0.9.22/iw.version b/iw-0.9.22/iw.version
new file mode 100644
index 0000000..ea3f0d7
--- /dev/null
+++ b/iw-0.9.22/iw.version
@@ -0,0 +1 @@
+0.9.22