summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-01-05 10:51:28 +0000
committerJoe MacDonald <joe_macdonald@mentor.com>2015-01-07 13:55:19 -0500
commit95039ef76b586779c1dd03a4bdfb27a4935f8b55 (patch)
tree5d501567ac07b1d9ee6483deabf01c52b3d7b820
parentde672e6a9e24c2293af623d0f767c601cd1ba851 (diff)
downloadmeta-openembedded-95039ef76b586779c1dd03a4bdfb27a4935f8b55.tar.gz
mtr: update to 0.86
* Newer automake compatibility fixed upstream, so drop patches. * LIC_FILES_CHKSUM changed due to a trailing space being removed, no actual change to the license text. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.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/mtr/files/configure.patch12
-rw-r--r--meta-networking/recipes-support/mtr/files/no-gtk.patch31
-rw-r--r--meta-networking/recipes-support/mtr/mtr_0.86.bb (renamed from meta-networking/recipes-support/mtr/mtr_0.82.bb)10
3 files changed, 4 insertions, 49 deletions
diff --git a/meta-networking/recipes-support/mtr/files/configure.patch b/meta-networking/recipes-support/mtr/files/configure.patch
deleted file mode 100644
index c978b879ec..0000000000
--- a/meta-networking/recipes-support/mtr/files/configure.patch
+++ /dev/null
@@ -1,12 +0,0 @@
1Index: mtr-0.82/configure.in
2===================================================================
3--- mtr-0.82.orig/configure.in 2014-07-16 19:52:56.306026346 +0000
4+++ mtr-0.82/configure.in 2014-07-17 21:59:03.208587150 +0000
5@@ -1,5 +1,5 @@
6-AC_INIT(mtr.c)
7-AM_INIT_AUTOMAKE(mtr, 0.82)
8+AC_INIT(mtr.c, 0.82)
9+AM_INIT_AUTOMAKE([foreign])
10
11
12 AC_SUBST(GTK_OBJ)
diff --git a/meta-networking/recipes-support/mtr/files/no-gtk.patch b/meta-networking/recipes-support/mtr/files/no-gtk.patch
deleted file mode 100644
index 0dbeb7a297..0000000000
--- a/meta-networking/recipes-support/mtr/files/no-gtk.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1Disable gtk check that breaks with current autotools
2
3Ideally we would have a proper fix for this and send that upstream instead.
4
5Upstream-Status: Pending
6
7Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
8
9diff --git a/configure.in b/configure.in
10index 8474543..5118565 100644
11--- a/configure.in
12+++ b/configure.in
13@@ -48,16 +48,8 @@ AC_ARG_ENABLE(ipv6,
14 [ --disable-ipv6 Do not enable IPv6],
15 WANTS_IPV6=$enableval, WANTS_IPV6=yes)
16
17-if test "x$WANTS_GTK" = "xyes"; then
18- AM_PATH_GTK_2_0(2.6.0, CFLAGS="$CFLAGS $GTK_CFLAGS"
19- LIBS="$LIBS $GTK_LIBS -lm",
20- AC_MSG_WARN(Building without GTK2 display support)
21- AC_DEFINE(NO_GTK, 1, [Define if you don't have the GTK+ libraries available.])
22- GTK_OBJ="")
23-else
24- AC_DEFINE(NO_GTK)
25- GTK_OBJ=""
26-fi
27+AC_DEFINE(NO_GTK, 1, [Define if you don't have the GTK+ libraries available.])
28+GTK_OBJ=""
29
30 AC_CHECK_FUNC(socket, ,
31 AC_CHECK_LIB(socket, socket, , AC_MSG_ERROR(No socket library found)))
diff --git a/meta-networking/recipes-support/mtr/mtr_0.82.bb b/meta-networking/recipes-support/mtr/mtr_0.86.bb
index b9a1ea2863..a60bd347e7 100644
--- a/meta-networking/recipes-support/mtr/mtr_0.82.bb
+++ b/meta-networking/recipes-support/mtr/mtr_0.86.bb
@@ -5,14 +5,12 @@ DEPENDS = "ncurses"
5 5
6LICENSE = "GPLv2" 6LICENSE = "GPLv2"
7LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ 7LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
8 file://mtr.c;beginline=5;endline=16;md5=56e390ced194aff352eefab404883057" 8 file://mtr.c;beginline=5;endline=16;md5=af1fafbbfa1bfd48af839f4bb3221106"
9 9
10SRC_URI = "ftp://ftp.bitwizard.nl/mtr/mtr-${PV}.tar.gz \ 10SRC_URI = "ftp://ftp.bitwizard.nl/mtr/mtr-${PV}.tar.gz"
11 file://configure.patch \
12 file://no-gtk.patch"
13 11
14SRC_URI[md5sum] = "10601ea543fda3e51545c4bce195b64c" 12SRC_URI[md5sum] = "8d63592c9d4579ef20cf491b41843eb2"
15SRC_URI[sha256sum] = "f3b457c9623ae03565688a7ffd49d4843a5e2505ccaf3ba8d9fbd86e3ce9b6a0" 13SRC_URI[sha256sum] = "c5d948920b641cc35f8b380fc356ddfe07cce6a9c6474afe242fc58113f28c06"
16 14
17inherit autotools 15inherit autotools
18 16