summaryrefslogtreecommitdiffstats
path: root/package/dropwatch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2013-07-22 00:36:53 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-07-22 00:36:53 +0200
commit956fa6741021cf952aefa9ddf821b9aa14be8fab (patch)
tree3875cabe7b691369b4df178258c6c2b6fe5ed5b9 /package/dropwatch
parent8d228d30105079a91fed16097193601713c02198 (diff)
downloadbuildroot-956fa6741021cf952aefa9ddf821b9aa14be8fab.tar.gz
buildroot-956fa6741021cf952aefa9ddf821b9aa14be8fab.zip
Revert "dropwatch: new package"
This reverts commit 8d228d30105079a91fed16097193601713c02198. Was not supposed to have been pushed (yet).
Diffstat (limited to 'package/dropwatch')
-rw-r--r--package/dropwatch/Config.in7
-rw-r--r--package/dropwatch/dropwatch-1.4-build.patch27
-rw-r--r--package/dropwatch/dropwatch.mk30
3 files changed, 0 insertions, 64 deletions
diff --git a/package/dropwatch/Config.in b/package/dropwatch/Config.in
deleted file mode 100644
index 69d7cd570b..0000000000
--- a/package/dropwatch/Config.in
+++ /dev/null
@@ -1,7 +0,0 @@
-config BR2_PACKAGE_DROPWATCH
- bool "dropwatch"
- help
- Dropwatch is a project I am tinkering with to improve the visibility
- developers and sysadmins have into the Linux networking stack.
-
- https://git.fedorahosted.org/git/dropwatch.git
diff --git a/package/dropwatch/dropwatch-1.4-build.patch b/package/dropwatch/dropwatch-1.4-build.patch
deleted file mode 100644
index eed43e8dd7..0000000000
--- a/package/dropwatch/dropwatch-1.4-build.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 03bab84ca3f102274837e83ee6da4c997a9da018 Mon Sep 17 00:00:00 2001
-From: Tzu-Jung Lee <tjlee@ambarella.com>
-Date: Fri, 12 Jul 2013 20:00:57 +0800
-Subject: [PATCH] build: modify hardcoded gcc to support buildroot
-
-Signed-off-by: Tzu-Jung Lee <tjlee@ambarella.com>
-
-diff --git a/src/Makefile b/src/Makefile
-index 026b6ba..b87ae9f 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -5,10 +5,10 @@ OBJFILES := main.o lookup.o\
- lookup_bfd.o lookup_kas.o
-
- dropwatch: $(OBJFILES)
-- gcc -g -o dropwatch $(OBJFILES) $(LDFLAGS)
-+ $(CC) -g -o dropwatch $(OBJFILES) $(LDFLAGS)
-
- %.o: %.c
-- gcc $(CFLAGS) $<
-+ $(CC) $(CFLAGS) $<
- clean:
- rm -f dropwatch *.o
-
---
-1.8.3.2
-
diff --git a/package/dropwatch/dropwatch.mk b/package/dropwatch/dropwatch.mk
deleted file mode 100644
index b9676cbea3..0000000000
--- a/package/dropwatch/dropwatch.mk
+++ /dev/null
@@ -1,30 +0,0 @@
-#############################################################
-#
-# dropwatch
-#
-#############################################################
-
-DROPWATCH_VERSION = 1.4
-DROPWATCH_SOURCE = dropwatch-$(DROPWATCH_VERSION).tar.bz2
-DROPWATCH_SITE = https://git.fedorahosted.org/cgit/dropwatch.git/snapshot/
-DROPWATCH_DEPENDENCIES = readline libnl binutils
-DROPWATCH_LICENSE = GPLv2+
-DROPWATCH_LICENSE_FILE = COPYING
-
-define DROPWATCH_INSTALL_TARGET_CMDS
- cp $(@D)/src/dropwatch $(TARGET_DIR)/usr/bin
-endef
-
-define DROPWATCH_BUILD_CMDS
- $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) build
-endef
-
-define DROPWATCH_CLEAN_CMDS
- $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) clean
-endef
-
-define DROPWATCH_UNINSTALL_CMDS
- rm -f $(TARGET_DIR)/usr/bin/dropwatch
-endef
-
-$(eval $(generic-package))
OpenPOWER on IntegriCloud