mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-08 11:17:36 +08:00
b06f5481b0
Release Notes: https://marc.info/?l=netfilter&m=166506855929074&w=2 Remove upstreamed: - 001-endianness_fix.patch (upstreamed: conntrackd: fix endianness bug in IPv4 and IPv6 address) - 002-conntrackd-do-not-include-conntrack-ID-in-hashtable-cmp.patch Signed-off-by: Nick Hainke <vincent@systemli.org>
82 lines
2.1 KiB
Makefile
82 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2009-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:=conntrack-tools
|
|
PKG_VERSION:=1.4.7
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://www.netfilter.org/projects/conntrack-tools/files
|
|
PKG_HASH:=099debcf57e81690ced57f516b493588a73518f48c14d656f823b29b4fc24b5d
|
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:netfilter:conntrack-tools
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_DEPENDS:=libtirpc
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/conntrack-tools/default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libnetfilter-conntrack +libnetfilter-cttimeout +libnetfilter-cthelper +libnetfilter-queue
|
|
SUBMENU:=Firewall
|
|
URL:=https://conntrack-tools.netfilter.org/
|
|
endef
|
|
|
|
define Package/conntrack
|
|
$(call Package/conntrack-tools/default)
|
|
TITLE:=Connection tracking tool
|
|
endef
|
|
|
|
define Package/conntrack/description
|
|
Conntrack is a userspace command line program targeted at system
|
|
administrators. It enables them to view and manage the in-kernel
|
|
connection tracking state table.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-libtirpc
|
|
|
|
define Package/conntrack/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/conntrack $(1)/usr/sbin/
|
|
endef
|
|
|
|
define Package/conntrackd
|
|
$(call Package/conntrack-tools/default)
|
|
TITLE:=Connection tracking daemon
|
|
endef
|
|
|
|
define Package/conntrackd/conffiles
|
|
/etc/conntrackd/
|
|
endef
|
|
|
|
define Package/conntrackd/description
|
|
Conntrackd can replicate the status of the connections that are
|
|
currently being processed by your stateful firewall based on Linux.
|
|
Conntrackd can also run as statistics daemon.
|
|
endef
|
|
|
|
define Package/conntrackd/install
|
|
$(INSTALL_DIR) \
|
|
$(1)/etc/conntrackd \
|
|
$(1)/etc/init.d \
|
|
$(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/conntrackd $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/conntrackd.init $(1)/etc/init.d/conntrackd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,conntrack))
|
|
$(eval $(call BuildPackage,conntrackd))
|