|
From: <abe...@us...> - 2011-10-17 02:40:55
|
Revision: 5198
http://astlinux.svn.sourceforge.net/astlinux/?rev=5198&view=rev
Author: abelbeck
Date: 2011-10-17 02:40:49 +0000 (Mon, 17 Oct 2011)
Log Message:
-----------
ngrep added
Modified Paths:
--------------
branches/1.0/astlinux.config
branches/1.0/astlinux18.config
branches/1.0/initrd.config
branches/1.0/package/Config.in
branches/1.0/runnix.config
Added Paths:
-----------
branches/1.0/package/ngrep/
branches/1.0/package/ngrep/Config.in
branches/1.0/package/ngrep/ngrep.mk
Modified: branches/1.0/astlinux.config
===================================================================
--- branches/1.0/astlinux.config 2011-10-17 02:18:44 UTC (rev 5197)
+++ branches/1.0/astlinux.config 2011-10-17 02:40:49 UTC (rev 5198)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5185-dirty Configuration
-# Sun Oct 16 08:55:47 2011
+# Buildroot 2011.08-svn5194-dirty Configuration
+# Sun Oct 16 21:38:07 2011
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -678,6 +678,7 @@
# BR2_PACKAGE_NETSTAT_NAT is not set
# BR2_PACKAGE_NFS_UTILS is not set
# BR2_PACKAGE_NGIRCD is not set
+BR2_PACKAGE_NGREP=y
BR2_PACKAGE_NTP=y
# BR2_PACKAGE_NTP_SNTP is not set
# BR2_PACKAGE_NTP_NTP_KEYGEN is not set
Modified: branches/1.0/astlinux18.config
===================================================================
--- branches/1.0/astlinux18.config 2011-10-17 02:18:44 UTC (rev 5197)
+++ branches/1.0/astlinux18.config 2011-10-17 02:40:49 UTC (rev 5198)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5185-dirty Configuration
-# Sun Oct 16 08:55:53 2011
+# Buildroot 2011.08-svn5194-dirty Configuration
+# Sun Oct 16 21:38:11 2011
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -673,6 +673,7 @@
# BR2_PACKAGE_NETSTAT_NAT is not set
# BR2_PACKAGE_NFS_UTILS is not set
# BR2_PACKAGE_NGIRCD is not set
+BR2_PACKAGE_NGREP=y
BR2_PACKAGE_NTP=y
# BR2_PACKAGE_NTP_SNTP is not set
# BR2_PACKAGE_NTP_NTP_KEYGEN is not set
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2011-10-17 02:18:44 UTC (rev 5197)
+++ branches/1.0/initrd.config 2011-10-17 02:40:49 UTC (rev 5198)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5185-dirty Configuration
-# Sun Oct 16 08:55:59 2011
+# Buildroot 2011.08-svn5194-dirty Configuration
+# Sun Oct 16 21:38:15 2011
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -577,6 +577,7 @@
# BR2_PACKAGE_NETSTAT_NAT is not set
# BR2_PACKAGE_NFS_UTILS is not set
# BR2_PACKAGE_NGIRCD is not set
+# BR2_PACKAGE_NGREP is not set
# BR2_PACKAGE_NTP is not set
# BR2_PACKAGE_NUTTCP is not set
# BR2_PACKAGE_OLSR is not set
Modified: branches/1.0/package/Config.in
===================================================================
--- branches/1.0/package/Config.in 2011-10-17 02:18:44 UTC (rev 5197)
+++ branches/1.0/package/Config.in 2011-10-17 02:40:49 UTC (rev 5198)
@@ -463,6 +463,7 @@
source "package/netstat-nat/Config.in"
source "package/nfs-utils/Config.in"
source "package/ngircd/Config.in"
+source "package/ngrep/Config.in"
source "package/ntp/Config.in"
source "package/nuttcp/Config.in"
source "package/olsr/Config.in"
Added: branches/1.0/package/ngrep/Config.in
===================================================================
--- branches/1.0/package/ngrep/Config.in (rev 0)
+++ branches/1.0/package/ngrep/Config.in 2011-10-17 02:40:49 UTC (rev 5198)
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_NGREP
+ bool "ngrep"
+ default n
+ select BR2_PACKAGE_LIBPCAP
+ help
+ Apply GNU grep features to the network layer
+
+ http://ngrep.sourceforge.net/
Added: branches/1.0/package/ngrep/ngrep.mk
===================================================================
--- branches/1.0/package/ngrep/ngrep.mk (rev 0)
+++ branches/1.0/package/ngrep/ngrep.mk 2011-10-17 02:40:49 UTC (rev 5198)
@@ -0,0 +1,28 @@
+#############################################################
+#
+# ngrep
+#
+#############################################################
+
+NGREP_VERSION = 1.45
+NGREP_SOURCE = ngrep-$(NGREP_VERSION).tar.bz2
+NGREP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/ngrep
+NGREP_DEPENDENCIES = libpcap
+
+NGREP_UNINSTALL_STAGING_OPT = --version
+
+NGREP_CONF_OPT += \
+ --with-pcap-includes=$(LIBPCAP_DIR) \
+ --enable-ipv6
+
+NGREP_MAKE_OPT = CC='$(TARGET_CC)' MAKEFLAGS="" -C $(@D)
+
+define NGREP_INSTALL_TARGET_CMDS
+ $(INSTALL) -m 0755 -D $(@D)/ngrep $(TARGET_DIR)/usr/sbin/ngrep
+endef
+
+define NGREP_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/sbin/ngrep
+endef
+
+$(eval $(call AUTOTARGETS,package,ngrep))
Modified: branches/1.0/runnix.config
===================================================================
--- branches/1.0/runnix.config 2011-10-17 02:18:44 UTC (rev 5197)
+++ branches/1.0/runnix.config 2011-10-17 02:40:49 UTC (rev 5198)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5185-dirty Configuration
-# Sun Oct 16 08:55:59 2011
+# Buildroot 2011.08-svn5194-dirty Configuration
+# Sun Oct 16 21:38:13 2011
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -607,6 +607,7 @@
# BR2_PACKAGE_NETSTAT_NAT is not set
# BR2_PACKAGE_NFS_UTILS is not set
# BR2_PACKAGE_NGIRCD is not set
+# BR2_PACKAGE_NGREP is not set
# BR2_PACKAGE_NTP is not set
# BR2_PACKAGE_NUTTCP is not set
# BR2_PACKAGE_OLSR is not set
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|