net-libs/nDPI: fixes problem with libcache.h
authorSlawomir Lis <slis@gentoo.org>
Mon, 22 Jan 2018 20:58:13 +0000 (21:58 +0100)
committerSlawomir Lis <slis@gentoo.org>
Mon, 22 Jan 2018 21:00:31 +0000 (22:00 +0100)
This particular file is later used in building net-analyzer/ntopng,
but it's placed in a third-party folder in nDPI package.
This commit changes this library location.

Package-Manager: Portage-2.3.20, Repoman-2.3.6

net-libs/nDPI/files/nDPI-2.2-libcache-include.patch [new file with mode: 0644]
net-libs/nDPI/nDPI-2.2.ebuild

diff --git a/net-libs/nDPI/files/nDPI-2.2-libcache-include.patch b/net-libs/nDPI/files/nDPI-2.2-libcache-include.patch
new file mode 100644 (file)
index 0000000..5ee089f
--- /dev/null
@@ -0,0 +1,32 @@
+--- src/include/Makefile.am.orig       2018-01-22 21:24:17.802100061 +0100
++++ src/include/Makefile.am    2018-01-22 21:24:30.080100801 +0100
+@@ -7,4 +7,5 @@
+               ndpi_protocol_ids.h \
+               ndpi_protocols.h \
+               ndpi_win32.h \
+-              ndpi_includes.h
++              ndpi_includes.h \
++              libcache.h
+--- src/include/ndpi_typedefs.h.orig   2018-01-22 21:27:35.994112009 +0100
++++ src/include/ndpi_typedefs.h        2018-01-22 21:27:47.463112701 +0100
+@@ -25,7 +25,7 @@
+ #define __NDPI_TYPEDEFS_H__
+ #include "ndpi_define.h"
+-#include "../lib/third_party/include/libcache.h"
++#include "libcache.h"
+ #define BT_ANNOUNCE
+ #define SNAP_EXT
+--- src/lib/Makefile.am.orig   2018-01-22 21:34:57.055138600 +0100
++++ src/lib/Makefile.am        2018-01-22 21:35:10.431139406 +0100
+@@ -12,7 +12,8 @@
+                            ../include/ndpi_includes.h \
+                            ../include/ndpi_protocol_ids.h \
+                            ../include/ndpi_protocols.h \
+-                           ../include/ndpi_typedefs.h
++                           ../include/ndpi_typedefs.h \
++                           ../include/libcache.h
+ libndpi_la_SOURCES = ndpi_content_match.c.inc \
+                    ndpi_main.c \
index 5db72a26125d4f3fbcf098a9bbac3e2ea407c5f8..6c0160ff6cd8c1bae43134b542bb6af870b3c443 100644 (file)
@@ -20,6 +20,9 @@ RDEPEND="${DEPEND}"
 src_prepare() {
        sed -e "s/@NDPI_MAJOR@/$(get_version_component_range 1)/g;s/@NDPI_MINOR@/$(get_version_component_range 2)/g;s/@NDPI_PATCH@/$(get_version_component_range 3)/g;s/@NDPI_VERSION_SHORT@/${PV}/g" < "${S}/configure.seed" > "${S}/configure.ac" || die
 
+       mv "${S}/src/lib/third_party/include/libcache.h" "${S}/src/include"
+       epatch "${FILESDIR}/${P}-libcache-include.patch"
+
        default
        eautoreconf
 }