From 4b35b398e164435584632da09eafa03f295921e3 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Mon, 7 Nov 2005 00:46:37 +0000 Subject: add wknock package (thanks to Florian Fainelli) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2362 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/wknock/Config.in | 10 ++++++++++ package/wknock/Makefile | 36 ++++++++++++++++++++++++++++++++++++ package/wknock/ipkg/wknock.control | 5 +++++ 3 files changed, 51 insertions(+) create mode 100644 package/wknock/Config.in create mode 100644 package/wknock/Makefile create mode 100644 package/wknock/ipkg/wknock.control (limited to 'package/wknock') diff --git a/package/wknock/Config.in b/package/wknock/Config.in new file mode 100644 index 0000000000..c5abe100a3 --- /dev/null +++ b/package/wknock/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_WKNOCK + prompt "wknock............................ A tool to hide your Access Point against opportunistic attackers." + tristate + default m if CONFIG_DEVEL + select BR2_PACKAGE_LIBPCAP + help + A tool to hide your Access Point against opportunistic attackers. + + http://www.rstack.org/oudot/wknock/ + diff --git a/package/wknock/Makefile b/package/wknock/Makefile new file mode 100644 index 0000000000..de5d0ea9c3 --- /dev/null +++ b/package/wknock/Makefile @@ -0,0 +1,36 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=wknock +PKG_VERSION:=1 +PKG_RELEASE:=1 +PKG_MD5SUM:=6b7a1f3cbb0af88da02e5d30cefd8e7f + +PKG_SOURCE_URL:=http://blackhat.com/presentations/bh-europe-05/BH_EU_05-Oudot/ +PKG_SOURCE:=$(PKG_NAME).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,WKNOCK,wknock,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib -lpcap" \ + all + touch $@ + +$(IPKG_WKNOCK): + install -d -m0755 $(IDIR_WKNOCK)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/wknock $(IDIR_WKNOCK)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/wknock-ng $(IDIR_WKNOCK)/usr/sbin/ + $(RSTRIP) $(IDIR_WKNOCK)/ + $(IPKG_BUILD) $(IDIR_WKNOCK) $(PACKAGE_DIR) diff --git a/package/wknock/ipkg/wknock.control b/package/wknock/ipkg/wknock.control new file mode 100644 index 0000000000..e781daebb6 --- /dev/null +++ b/package/wknock/ipkg/wknock.control @@ -0,0 +1,5 @@ +Package: wknock +Section: net +Priority: optional +Depends: libpcap, wl +Description: A tool to hide your Access Point against opportunistic attackers. -- cgit v1.2.3