|
From: <abe...@us...> - 2014-08-26 13:03:46
|
Revision: 6664
http://sourceforge.net/p/astlinux/code/6664
Author: abelbeck
Date: 2014-08-26 13:03:43 +0000 (Tue, 26 Aug 2014)
Log Message:
-----------
sipgrep, new package, version 2.0.0 very small C compiled binary like ngrep but for SIP, disabled for now but we probably want it included
Modified Paths:
--------------
branches/1.0/astlinux-ast11.config
branches/1.0/astlinux18.config
branches/1.0/initrd.config
branches/1.0/package/Config.in
branches/1.0/runnix-uclibc.config
branches/1.0/runnix.config
Added Paths:
-----------
branches/1.0/package/sipgrep/
branches/1.0/package/sipgrep/Config.in
branches/1.0/package/sipgrep/sipgrep.mk
Modified: branches/1.0/astlinux-ast11.config
===================================================================
--- branches/1.0/astlinux-ast11.config 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/astlinux-ast11.config 2014-08-26 13:03:43 UTC (rev 6664)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6653-dirty Configuration
-# Sun Aug 24 09:09:42 2014
+# Buildroot 2011.08-svn6663-dirty Configuration
+# Tue Aug 26 07:57:48 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -778,6 +778,7 @@
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
BR2_PACKAGE_SHELLINABOX=y
+# BR2_PACKAGE_SIPGREP is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
# BR2_PACKAGE_SQUID is not set
Modified: branches/1.0/astlinux18.config
===================================================================
--- branches/1.0/astlinux18.config 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/astlinux18.config 2014-08-26 13:03:43 UTC (rev 6664)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6653-dirty Configuration
-# Sun Aug 24 09:09:41 2014
+# Buildroot 2011.08-svn6663-dirty Configuration
+# Tue Aug 26 07:57:47 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -778,6 +778,7 @@
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
BR2_PACKAGE_SHELLINABOX=y
+# BR2_PACKAGE_SIPGREP is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
# BR2_PACKAGE_SQUID is not set
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/initrd.config 2014-08-26 13:03:43 UTC (rev 6664)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6653-dirty Configuration
-# Sun Aug 24 09:09:48 2014
+# Buildroot 2011.08-svn6663-dirty Configuration
+# Tue Aug 26 07:57:53 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -621,6 +621,7 @@
# BR2_PACKAGE_RSYNC is not set
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
+# BR2_PACKAGE_SIPGREP is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
# BR2_PACKAGE_SQUID is not set
Modified: branches/1.0/package/Config.in
===================================================================
--- branches/1.0/package/Config.in 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/package/Config.in 2014-08-26 13:03:43 UTC (rev 6664)
@@ -519,6 +519,7 @@
source "package/samba/Config.in"
source "package/ser2net/Config.in"
source "package/shellinabox/Config.in"
+source "package/sipgrep/Config.in"
source "package/socat/Config.in"
source "package/spawn-fcgi/Config.in"
source "package/squid/Config.in"
Added: branches/1.0/package/sipgrep/Config.in
===================================================================
--- branches/1.0/package/sipgrep/Config.in (rev 0)
+++ branches/1.0/package/sipgrep/Config.in 2014-08-26 13:03:43 UTC (rev 6664)
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_SIPGREP
+ bool "sipgrep"
+ default n
+ select BR2_PACKAGE_LIBPCAP
+ select BR2_PACKAGE_PCRE
+ help
+ Network grep for SIP.
+
+ https://github.com/adubovikov/sipgrep
Added: branches/1.0/package/sipgrep/sipgrep.mk
===================================================================
--- branches/1.0/package/sipgrep/sipgrep.mk (rev 0)
+++ branches/1.0/package/sipgrep/sipgrep.mk 2014-08-26 13:03:43 UTC (rev 6664)
@@ -0,0 +1,27 @@
+#############################################################
+#
+# sipgrep
+#
+#############################################################
+
+SIPGREP_VERSION = 2.0.0
+SIPGREP_SOURCE = sipgrep-$(SIPGREP_VERSION).tar.gz
+SIPGREP_SITE = http://files.astlinux.org
+#SIPGREP_SITE = https://github.com/adubovikov/sipgrep/releases
+SIPGREP_DEPENDENCIES = libpcap pcre
+
+SIPGREP_UNINSTALL_STAGING_OPT = --version
+
+SIPGREP_CONF_OPT += \
+ --with-pcap-includes=$(STAGING_DIR)/usr/include \
+ --enable-ipv6
+
+define SIPGREP_INSTALL_TARGET_CMDS
+ $(INSTALL) -m 0755 -D $(@D)/sipgrep $(TARGET_DIR)/usr/bin/sipgrep
+endef
+
+define SIPGREP_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/bin/sipgrep
+endef
+
+$(eval $(call AUTOTARGETS,package,sipgrep))
Modified: branches/1.0/runnix-uclibc.config
===================================================================
--- branches/1.0/runnix-uclibc.config 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/runnix-uclibc.config 2014-08-26 13:03:43 UTC (rev 6664)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6653-dirty Configuration
-# Sun Aug 24 09:09:47 2014
+# Buildroot 2011.08-svn6663-dirty Configuration
+# Tue Aug 26 07:57:51 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -953,6 +953,7 @@
# BR2_PACKAGE_RSYNC is not set
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
+# BR2_PACKAGE_SIPGREP is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
Modified: branches/1.0/runnix.config
===================================================================
--- branches/1.0/runnix.config 2014-08-26 01:40:59 UTC (rev 6663)
+++ branches/1.0/runnix.config 2014-08-26 13:03:43 UTC (rev 6664)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn6653-dirty Configuration
-# Sun Aug 24 09:09:44 2014
+# Buildroot 2011.08-svn6663-dirty Configuration
+# Tue Aug 26 07:57:49 2014
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -657,6 +657,7 @@
# BR2_PACKAGE_RSYNC is not set
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
+# BR2_PACKAGE_SIPGREP is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
# BR2_PACKAGE_SQUID is not set
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|