From: Steven Barth Date: Fri, 1 Aug 2014 13:52:42 +0000 (+0000) Subject: horst: moved to github X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=213ee58377f7982480da5a98e2051fbe68a0c837;p=openwrt%2Fsvn-archive%2Fpackages.git horst: moved to github SVN-Revision: 41937 --- diff --git a/net/horst/Makefile b/net/horst/Makefile deleted file mode 100644 index a8a6028fe..000000000 --- a/net/horst/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# -# Copyright (C) 2006 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=horst -PKG_VERSION:=3.0 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://br1.einfach.org/horst_dl/ -PKG_MD5SUM:=076d836733fb6ce53a590eddf92ad358 - -PKG_BUILD_PARALLEL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/horst - SECTION:=net - CATEGORY:=Network - SUBMENU:=wireless - DEPENDS:=+libncurses - MAINTAINER:=Bruno Randolf - TITLE:=Highly Optimized 802.11 Radio Scanning Tool - URL:=http://br1.einfach.org/horst/ -endef - -define Package/horst/description - [horst] is a scanning and analysis tool for 802.11 wireless networks - and especially IBSS (ad-hoc) mode and mesh networks (OLSR). -endef - -define Package/horst/install - $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/ -endef - -$(eval $(call BuildPackage,horst)) diff --git a/net/horst/patches/100-compile-fixes.patch b/net/horst/patches/100-compile-fixes.patch deleted file mode 100644 index 29295b06f..000000000 --- a/net/horst/patches/100-compile-fixes.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -34,9 +34,7 @@ CFLAGS+=-DPCAP - LIBS+=-lpcap - endif - --buildstamp=.build_debug$(DEBUG)pcap$(PCAP) -- --all: $(buildstamp) $(NAME) -+all: $(NAME) - - # include dependencies - average.o: average.h util.h -@@ -73,7 +71,3 @@ clean: - -rm -f *.o *~ - -rm -f $(NAME) - -rm -f .build_* -- --$(buildstamp): -- make clean -- touch $@