From c2ef244ed463e6f4da4b65e9e4ad6d2188490ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 4 Feb 2022 23:58:38 +0100 Subject: [PATCH] mdds-2.0: initial add 2.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/mdds/mdds-2.0.bb | 18 ++++++++++++ ...ove-fixed-paths-causing-trouble-when.patch | 28 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 recipes-support/mdds/mdds-2.0.bb create mode 100644 recipes-support/mdds/mdds-2.0/0001-configure.ac-remove-fixed-paths-causing-trouble-when.patch diff --git a/recipes-support/mdds/mdds-2.0.bb b/recipes-support/mdds/mdds-2.0.bb new file mode 100644 index 0000000..4b70d76 --- /dev/null +++ b/recipes-support/mdds/mdds-2.0.bb @@ -0,0 +1,18 @@ +SUMMARY = "A collection of multi-dimensional data structures and indexing algorithms" +HOMEPAGE = "https://gitlab.com/mdds/mdds" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=60a6093677ded88b5e28677e52a0c011" + +inherit autotools-brokensep pkgconfig + +SRC_URI = " \ + git://gitlab.com/mdds/mdds.git;protocol=https;branch=master \ + file://0001-configure.ac-remove-fixed-paths-causing-trouble-when.patch \ +" +PV = "2.0.1" +SRCREV = "311ba9e0ff8c29e50829ce5a8e936fbce288c6d7" +S = "${WORKDIR}/git" + +DEPENDS = "boost" + +BBCLASSEXTEND = "native" diff --git a/recipes-support/mdds/mdds-2.0/0001-configure.ac-remove-fixed-paths-causing-trouble-when.patch b/recipes-support/mdds/mdds-2.0/0001-configure.ac-remove-fixed-paths-causing-trouble-when.patch new file mode 100644 index 0000000..eeea9f2 --- /dev/null +++ b/recipes-support/mdds/mdds-2.0/0001-configure.ac-remove-fixed-paths-causing-trouble-when.patch @@ -0,0 +1,28 @@ +From 97cb7eaa45c08a9b9850200e10ab5668df324ec3 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= +Date: Fri, 2 Aug 2019 16:45:27 +0200 +Subject: [PATCH] configure.ac: remove fixed paths causing trouble when cross +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Andreas Müller +--- + configure.ac | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index e9a4720f..21229ade 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -24,7 +24,6 @@ AC_SUBST(QUICKCHECKDIR) + AX_CXX_COMPILE_STDCXX_17([noext], [mandatory]) + + CPPFLAGS="$CPPFLAGS -Wall -Wshadow -g -pedantic-errors" +-CPPFLAGS="$CPPFLAGS -I/usr/include -I/usr/local/include" + + AC_CHECK_SIZEOF([void *]) + CXXFLAGS="$CXXFLAGS -DSIZEOF_VOID_P=$ac_cv_sizeof_void_p" +-- +2.34.1 +