diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-13 13:53:29 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-13 13:53:48 +0200 |
commit | aca1615dc13bac949d507c493e9cef80fd2402ef (patch) | |
tree | ce8abb5d5722d312ccc2b96e959ef855d5e69290 /packages | |
parent | 94aa02b298321005b6334262242c30eeb94549ae (diff) |
OpenWrt packaging support.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/openwrt/README.md | 8 | ||||
-rw-r--r-- | packages/openwrt/net/nDPId-testing/Makefile | 102 | ||||
-rw-r--r-- | packages/openwrt/net/nDPId-testing/patches/001-enable-in-source-build.patch | 17 |
3 files changed, 127 insertions, 0 deletions
diff --git a/packages/openwrt/README.md b/packages/openwrt/README.md new file mode 100644 index 000000000..6fb4c2c2f --- /dev/null +++ b/packages/openwrt/README.md @@ -0,0 +1,8 @@ +HowTo use this +============== + +Simply add `src-link ndpid_testing [path-to-this-dir]` to your OpenWrt repository feeds (`feeds.conf`). + +Run `./scripts/feeds update -a && ./scripts/feeds install -a` from the OpenWrt repository directory. + +There should be a new package named `nDPId-testing` available. diff --git a/packages/openwrt/net/nDPId-testing/Makefile b/packages/openwrt/net/nDPId-testing/Makefile new file mode 100644 index 000000000..8ab38193b --- /dev/null +++ b/packages/openwrt/net/nDPId-testing/Makefile @@ -0,0 +1,102 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=nDPId-testing +PKG_VERSION:=1.0 +PKG_RELEASE:=$(AUTORELEASE) + +SOURCE_DIR:=../../../.. +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) + +PKG_MAINTAINER:=Toni +PKG_LICENSE:=GPL-3 +PKG_LICENSE_FILES:=COPYING + +CMAKE_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/nDPId-testing + TITLE:=nDPId is a tiny nDPI based daemons / toolkit (nDPId source repository) + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libpcap +zlib +LIBNDPI_GCRYPT:libgcrypt + URL:=http://github.com/lnslbrty/nDPId +endef + +define Package/nDPId-testing/description + nDPId is a set of daemons and tools to capture, process and classify network flows. + It's only dependencies (besides a half-way modern c library and POSIX threads) are libnDPI (>= 3.6.0 or current github dev branch) and libpcap. +endef + +define Package/nDPId-testing/config +config NDPID_TESTING_COLLECTD_SUPPORT + bool "nDPId collectd support" + depends on PACKAGE_nDPId-testing && PACKAGE_collectd-mod-exec && !CONFIG_NDPID_COLLECTD_SUPPORT + default n + help + This option enables collectd to gather nDPId statistics via plugin-exec. + Disabled by default. +endef + +CMAKE_OPTIONS += -DBUILD_EXAMPLES=ON +CMAKE_OPTIONS += -DBUILD_NDPI=OFF +CMAKE_OPTIONS += -DNDPI_NO_PKGCONFIG=ON +CMAKE_OPTIONS += -DENABLE_ZLIB=ON +CMAKE_OPTIONS += -DENABLE_SANITIZER=OFF +CMAKE_OPTIONS += -DENABLE_MEMORY_PROFILING=OFF +CMAKE_OPTIONS += -DSTATIC_LIBNDPI_INSTALLDIR="$(PKG_BUILD_DIR)/libnDPI/install" + +TARGET_CFLAGS += -DLIBNDPI_STATIC=1 + +ifneq ($(CONFIG_LIBNDPI_GCRYPT),) +CMAKE_OPTIONS += -DNDPI_WIDTH_GCRYPT=ON +endif + +ifdef NDPID_TESTING_COLLECTD_SUPPORT +define Package/nDPId-testing/install-collectd-files + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPIsrvd-collectd $(1)/usr/bin/nDPIsrvd-testing-collectd +endef +endif + +define Build/Prepare + tar \ + --exclude-tag-all='gcov.css' \ + --exclude-tag-all='cmake_install.cmake' \ + --exclude='libnDPI-*.tar' \ + --exclude='nDPId-*.tar.bz2' \ + --exclude='libnDPI' \ + --exclude='test' \ + --exclude-vcs \ + --exclude-vcs-ignores \ + --transform 's,^,$(PKG_SOURCE_SUBDIR)/,' \ + -czf "$(DL_DIR)/$(PKG_SOURCE)" "$(SOURCE_DIR)" + $(PKG_UNPACK) + $(Build/Patch) + env \ + CC="$(TARGET_CC)" \ + AR="$(TARGET_AR)" \ + RANLIB="$(TARGET_RANLIB)" \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="$(TARGET_CPPFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ + MAKE_PROGRAM="$(MAKE)" \ + $(PKG_BUILD_DIR)/scripts/get-and-build-libndpi.sh +endef + +define Package/nDPId-testing/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/nDPId $(1)/usr/sbin/nDPId-testing + + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPId-test $(1)/usr/bin/nDPId-testing-test + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPIsrvd $(1)/usr/bin/nDPIsrvd-testing + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPIsrvd-captured $(1)/usr/bin/nDPIsrvd-testing-captured + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPIsrvd-collectd $(1)/usr/bin/nDPIsrvd-testing-collectd + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nDPIsrvd-json-dump $(1)/usr/bin/nDPIsrvd-testing-json-dump + + $(call Package/nDPId-testing/install-collectd-files) +endef + +$(eval $(call BuildPackage,nDPId-testing)) diff --git a/packages/openwrt/net/nDPId-testing/patches/001-enable-in-source-build.patch b/packages/openwrt/net/nDPId-testing/patches/001-enable-in-source-build.patch new file mode 100644 index 000000000..86432dc57 --- /dev/null +++ b/packages/openwrt/net/nDPId-testing/patches/001-enable-in-source-build.patch @@ -0,0 +1,17 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 9045237..83f72b3 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,12 +1,5 @@ + cmake_minimum_required(VERSION 3.12.4) + project(nDPId C) +-if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}") +- message(FATAL_ERROR "In-source builds are not allowed.\n" +- "Please remove ${PROJECT_SOURCE_DIR}/CMakeCache.txt\n" +- "and\n" +- "${PROJECT_SOURCE_DIR}/CMakeFiles\n" +- "Create a build directory somewhere and run CMake again.") +-endif() + set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) + find_package(PkgConfig REQUIRED) + |