054208e419
I would like to introduce you Snortsam, plugin for Snort. This patch was accidentally superseded due to lack of my explanation (snortsam needs to be supported by snort - it is supported now). It's in the same state as was introduced before. Support for snortsam was introduced in Snort in http://patchwork.openwrt.org/patch/2491/. Current version of Snort (2.9.2.2) supports Snortsam. SnortSam is a plugin for Snort, an open-source light-weight Intrusion Detection System (IDS). Signed-off-by: Jiri Slachta <slachta@cesnet.cz> git-svn-id: svn://svn.openwrt.org/openwrt/packages@33791 3c298f89-4303-0410-b956-a3cf2f4a3e73
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2012 OpenWrt
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=snortsam
|
|
PKG_VERSION:=2.70
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=http://val.bmstu.ru/unix/snort/
|
|
PKG_SOURCE:=$(PKG_NAME)-src-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=8ffa32056152e089fbacd601090f941d
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
MAKE_PATH:=src
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/snortsam
|
|
SUBMENU:=Firewall
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Snortsam
|
|
URL:=https://www.snortsam.net/
|
|
DEPENDS:=+libpthread +snort
|
|
endef
|
|
|
|
define Package/snortsam/description
|
|
SnortSam is a plugin for Snort, an Intrusion Detection System (IDS). The plugin allows automated blocking of IP addresses.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
$(MAKE_FLAGS) \
|
|
all
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
$(MAKE_FLAGS) \
|
|
samtool
|
|
endef
|
|
|
|
define Package/snortsam/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/snortsam $(PKG_BUILD_DIR)/samtool $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(CP) $(PKG_BUILD_DIR)/conf/* $(1)/etc/
|
|
$(CP) $(PKG_BUILD_DIR)/conf/snortsam.conf.sample $(1)/etc/snortsam.conf
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/snortsam.init $(1)/etc/init.d/snortsam
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,snortsam))
|