summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/ntopng/ntopng_5.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2022-02-08 23:12:07 +0800
committerKhem Raj <raj.khem@gmail.com>2022-02-08 08:59:08 -0800
commit586b0b3f2c8a1513cb00e34ed69e7d405fd21974 (patch)
tree384acb18a742d6b84a81abb86f169e90597bc18a /meta-networking/recipes-support/ntopng/ntopng_5.0.bb
parent5668251a49839b6faece2387d9692886172f436e (diff)
downloadmeta-openembedded-586b0b3f2c8a1513cb00e34ed69e7d405fd21974.tar.gz
ntopng: upgrade 5.0 -> 5.2.1
change configure.seed to configure.ac.in refresh 0001-Makefile.in-don-t-use-the-internal-lua.patch Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/ntopng/ntopng_5.0.bb')
-rw-r--r--meta-networking/recipes-support/ntopng/ntopng_5.0.bb49
1 files changed, 0 insertions, 49 deletions
diff --git a/meta-networking/recipes-support/ntopng/ntopng_5.0.bb b/meta-networking/recipes-support/ntopng/ntopng_5.0.bb
deleted file mode 100644
index c4b8db3889..0000000000
--- a/meta-networking/recipes-support/ntopng/ntopng_5.0.bb
+++ /dev/null
@@ -1,49 +0,0 @@
1SUMMARY = "Web-based Traffic and Security Network Traffic Monitoring"
2DESCRIPTION = "ntopng is a web-based network traffic monitoring application \
3released under GPLv3. It is the new incarnation of the original \
4ntop written in 1998, and now revamped in terms of performance, \
5usability, and features."
6
7SECTION = "console/network"
8
9DEPENDS = "curl libmaxminddb libpcap lua mariadb ndpi json-c rrdtool zeromq"
10RDEPENDS:${PN} = "bash redis"
11LICENSE = "GPLv3"
12LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
13
14SRCREV = "85867090d92df4365c0af8d47f54ab3106117e59"
15SRC_URI = "git://github.com/ntop/ntopng.git;protocol=https;branch=5.0-stable \
16 file://0001-configure.seed-fix-configure-error.patch \
17 file://0001-configure.seed-fix-host-contamination.patch \
18 file://0001-Makefile.in-don-t-use-the-internal-lua.patch \
19 file://0001-autogen.sh-generate-configure.ac-only.patch \
20 file://0001-configure.seed-not-check-clang-on-host.patch \
21 file://ntopng.service \
22"
23
24S = "${WORKDIR}/git"
25
26# don't use the lua under thirdparty as it supports cross compiling badly
27export LUA_LIB = "${STAGING_LIBDIR}/liblua.a"
28
29LDFLAGS:append:mipsarch = " -latomic"
30LDFLAGS:append:powerpc = " -latomic"
31LDFLAGS:append:riscv32 = " -latomic"
32inherit autotools-brokensep gettext pkgconfig systemd
33
34do_install:append() {
35 install -d ${D}${systemd_unitdir}/system/
36 install -m 0644 ${WORKDIR}/ntopng.service ${D}${systemd_unitdir}/system
37}
38
39FILES:${PN} += "\
40 ${systemd_unitdir}/system/ntopng.service"
41
42FILES:${PN}-doc += "\
43 /usr/man/man8/ntopng.8"
44
45do_configure:prepend() {
46 ${S}/autogen.sh
47}
48
49SYSTEMD_SERVICE:${PN} = "ntopng.service"