From 9eaf46c2b91b0dc103ad6b86c9db01d27f5f5459 Mon Sep 17 00:00:00 2001 From: dingo Date: Mon, 21 May 2012 12:18:55 +0000 Subject: [PATCH] [patchteam] - Daemonlogger is a packet logger and soft tap developed by Martin Roesch - Signed-off-by: Robert Vineyard git-svn-id: svn://svn.openwrt.org/openwrt/packages@31836 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/daemonlogger/Makefile | 44 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 net/daemonlogger/Makefile diff --git a/net/daemonlogger/Makefile b/net/daemonlogger/Makefile new file mode 100644 index 000000000..3d7a9bf78 --- /dev/null +++ b/net/daemonlogger/Makefile @@ -0,0 +1,44 @@ +# +# Copyright (C) 2007-2011 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:=daemonlogger +PKG_VERSION:=1.2.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=463 +PKG_SOURCE_URL:=http://www.snort.org/downloads/ +PKG_CAT:=zcat +PKG_MD5SUM:=acb64aa6cd5777e297569f100b5c39ee + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_NAME)-$(PKG_VERSION) + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/daemonlogger + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libpcap +libdnet + TITLE:=Software Network Tap + URL:=http://www.snort.org/snort-downloads/additional-downloads +endef + +CONFIGURE_VARS += \ + BUILD_CC="$(TARGET_CC)" \ + HOSTCC="$(HOSTCC)" + +MAKE_FLAGS := CCOPT="$(TARGET_CFLAGS)" INCLS="-I. $(TARGET_CPPFLAGS)" + +define Package/daemonlogger/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/daemonlogger $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,daemonlogger))