diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-networking/recipes-support/mtr | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-networking/recipes-support/mtr')
-rw-r--r-- | meta-networking/recipes-support/mtr/files/no-gtk.patch | 31 | ||||
-rw-r--r-- | meta-networking/recipes-support/mtr/mtr_0.82.bb | 19 |
2 files changed, 50 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/mtr/files/no-gtk.patch b/meta-networking/recipes-support/mtr/files/no-gtk.patch new file mode 100644 index 0000000000..0dbeb7a297 --- /dev/null +++ b/meta-networking/recipes-support/mtr/files/no-gtk.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | Disable gtk check that breaks with current autotools | ||
2 | |||
3 | Ideally we would have a proper fix for this and send that upstream instead. | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> | ||
8 | |||
9 | diff --git a/configure.in b/configure.in | ||
10 | index 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.82.bb new file mode 100644 index 0000000000..3a9394874e --- /dev/null +++ b/meta-networking/recipes-support/mtr/mtr_0.82.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "Combined traceroute and ping utility" | ||
2 | DESCRIPTION = "mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool." | ||
3 | HOMEPAGE = "http://www.bitwizard.nl/mtr/" | ||
4 | DEPENDS = "ncurses" | ||
5 | |||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | ||
8 | file://mtr.c;beginline=5;endline=16;md5=56e390ced194aff352eefab404883057" | ||
9 | |||
10 | SRC_URI = "ftp://ftp.bitwizard.nl/mtr/mtr-${PV}.tar.gz \ | ||
11 | file://no-gtk.patch" | ||
12 | |||
13 | SRC_URI[md5sum] = "10601ea543fda3e51545c4bce195b64c" | ||
14 | SRC_URI[sha256sum] = "f3b457c9623ae03565688a7ffd49d4843a5e2505ccaf3ba8d9fbd86e3ce9b6a0" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | EXTRA_OECONF = "--without-gtk" | ||
19 | |||