summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-07-14 18:55:39 -0700
committerJoe MacDonald <joe_macdonald@mentor.com>2017-09-08 16:38:15 -0400
commit54a4a994f91104758d797a81b4ea91d20cc781bc (patch)
tree3570157c584faa9646789640ac47bae4b928973f
parent7f723007364ba79de05447671e83d4eefb3097dc (diff)
downloadmeta-openembedded-54a4a994f91104758d797a81b4ea91d20cc781bc.tar.gz
pimd: Upgrade to 2.3.2
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r--meta-networking/recipes-support/pimd/pimd/0001-configure-Dont-use-uname-to-determine-target-OS.patch28
-rw-r--r--meta-networking/recipes-support/pimd/pimd_2.1.8.bb19
-rw-r--r--meta-networking/recipes-support/pimd/pimd_2.3.2.bb20
3 files changed, 48 insertions, 19 deletions
diff --git a/meta-networking/recipes-support/pimd/pimd/0001-configure-Dont-use-uname-to-determine-target-OS.patch b/meta-networking/recipes-support/pimd/pimd/0001-configure-Dont-use-uname-to-determine-target-OS.patch
new file mode 100644
index 0000000000..eb549ded9d
--- /dev/null
+++ b/meta-networking/recipes-support/pimd/pimd/0001-configure-Dont-use-uname-to-determine-target-OS.patch
@@ -0,0 +1,28 @@
1From f3e04281bad361249a8dad0cde150a801d720f67 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 14 Jul 2017 18:46:52 -0700
4Subject: [PATCH] configure: Dont use uname to determine target OS
5
6Helps with cross-compiling
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 configure | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/configure b/configure
14index 6c35a72..f9714e2 100755
15--- a/configure
16+++ b/configure
17@@ -31,7 +31,7 @@
18 #DEFS += -DSCOPED_ACL
19 #
20
21-OS=`uname`
22+OS="Linux"
23 CFG=config.mk
24 TMP=`mktemp /tmp/XXXXXX`
25 BUGREPORT_URL="https://github.com/troglobit/pimd/issues"
26--
272.13.3
28
diff --git a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb b/meta-networking/recipes-support/pimd/pimd_2.1.8.bb
deleted file mode 100644
index 7edb6422d4..0000000000
--- a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb
+++ /dev/null
@@ -1,19 +0,0 @@
1SUMMARY = "pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon."
2HOMEPAGE = "http://troglobit.com/pimd.html"
3SECTION = "net"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=94f108f91fab720d62425770b70dd790"
6
7SRC_URI = "ftp://ftp.troglobit.com/pimd/${BP}.tar.bz2"
8SRC_URI[md5sum] = "a12448bc7c9bfcebf51a13ebf1ffa962"
9SRC_URI[sha256sum] = "01016940543a0a6131d4e6c91b595d47e187012c59a298eec14c3dbc38564b3a"
10
11EXTRA_OEMAKE = "-e MAKEFLAGS="
12CFLAGS += "-I ${S}/include "
13
14do_install() {
15 unset datadir
16 unset mandir
17 oe_runmake 'DESTDIR=${D}' install
18}
19
diff --git a/meta-networking/recipes-support/pimd/pimd_2.3.2.bb b/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
new file mode 100644
index 0000000000..2faa7cb1ce
--- /dev/null
+++ b/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
@@ -0,0 +1,20 @@
1SUMMARY = "pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon."
2HOMEPAGE = "http://troglobit.com/pimd.html"
3SECTION = "net"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=94f108f91fab720d62425770b70dd790"
6
7SRC_URI = "ftp://ftp.troglobit.com/pimd/${BP}.tar.gz \
8 file://0001-configure-Dont-use-uname-to-determine-target-OS.patch \
9 "
10SRC_URI[md5sum] = "a3c03e40540980b2c06e265a17988e60"
11SRC_URI[sha256sum] = "c77a9812751f114490a28a6839b16aac8b020c8d9fd6aa22bf3880c054e19f1d"
12
13EXTRA_OECONF_append_libc-musl = " --embedded-libc"
14
15inherit autotools-brokensep
16
17do_configure() {
18 oe_runconf
19}
20