initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_DAQ3
|
||||
bool "daq3"
|
||||
depends on !BR2_PACKAGE_DAQ
|
||||
depends on !BR2_STATIC_LIBS # dlfcn.h
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
DAQ is a Data Acquisition library for packet I/O from the
|
||||
Snort project.
|
||||
|
||||
https://www.snort.org
|
||||
|
||||
comment "daq3 needs a toolchain w/ dynamic library, gcc >= 4.9, threads"
|
||||
depends on !BR2_PACKAGE_DAQ
|
||||
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
|
||||
|| !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,6 @@
|
||||
# Locally computed:
|
||||
sha256 a376c7625d1442ddb7e3c75954c910cc9d64440e2f8f345981aa5fa6999ea206 daq3-3.0.4.tar.gz
|
||||
|
||||
# Hash for license files:
|
||||
sha256 64601289158eddad72cb4de72652f9e64dc886942c910b38ddee93ba13b0db26 COPYING
|
||||
sha256 64601289158eddad72cb4de72652f9e64dc886942c910b38ddee93ba13b0db26 LICENSE
|
||||
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
#
|
||||
# daq3
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DAQ3_VERSION = 3.0.4
|
||||
DAQ3_SITE = $(call github,snort3,libdaq,v$(DAQ3_VERSION))
|
||||
DAQ3_LICENSE = GPL-2.0
|
||||
DAQ3_LICENSE_FILES = COPYING LICENSE
|
||||
DAQ3_INSTALL_STAGING = YES
|
||||
DAQ3_DEPENDENCIES = host-pkgconf
|
||||
# From git
|
||||
DAQ3_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBNETFILTER_QUEUE),y)
|
||||
DAQ3_DEPENDENCIES += libnetfilter_queue
|
||||
DAQ3_CONF_OPTS += --enable-nfq-module
|
||||
else
|
||||
DAQ3_CONF_OPTS += --disable-nfq-module
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
|
||||
DAQ3_DEPENDENCIES += libpcap
|
||||
DAQ3_CONF_OPTS += --enable-pcap-module
|
||||
else
|
||||
DAQ3_CONF_OPTS += --disable-pcap-module
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user