summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel
diff options
context:
space:
mode:
authorJack Mitchell <jack.mitchell@dbbroadcast.co.uk>2012-10-29 09:28:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-02 16:18:26 +0000
commit141ecebf2e0fbeaa737cb4ff07371e5bbca95e7b (patch)
tree9f826b1aaf8235a1fae29dd960fdf3c5f38e9c07 /meta/recipes-kernel
parent662a445b30af4d7538c3e7081dd9403acd006938 (diff)
downloadpoky-141ecebf2e0fbeaa737cb4ff07371e5bbca95e7b.tar.gz
latencytop: disable GTK and remove gtk+ dependacy
When DISTRO_FEATURES does not contain x11, disable GTK GUI and also don't add gtk+ to the DEPENDS (From OE-Core rev: 1b41a4660d0dd8f1863bb94d08562927cc108ee1) Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r--meta/recipes-kernel/latencytop/latencytop-0.5/latencytop-makefile.patch13
-rw-r--r--meta/recipes-kernel/latencytop/latencytop_0.5.bb8
2 files changed, 12 insertions, 9 deletions
diff --git a/meta/recipes-kernel/latencytop/latencytop-0.5/latencytop-makefile.patch b/meta/recipes-kernel/latencytop/latencytop-0.5/latencytop-makefile.patch
index 59a0b1f6dc..596450c5b9 100644
--- a/meta/recipes-kernel/latencytop/latencytop-0.5/latencytop-makefile.patch
+++ b/meta/recipes-kernel/latencytop/latencytop-0.5/latencytop-makefile.patch
@@ -1,8 +1,9 @@
1Upstream-Status: Inappropriate [configuration] 1--- a/Makefile 2010-07-20 18:51:32.000000000 +0800
2 2+++ b/Makefile 2010-07-20 18:54:54.000000000 +0800
3--- a/Makefile 2010-07-20 18:51:32.000000000 +0800 3@@ -1,10 +1,8 @@
4+++ b/Makefile 2010-07-20 18:54:54.000000000 +0800 4-# FIXME: Use autoconf ?
5@@ -4,7 +4,8 @@ 5-HAS_GTK_GUI = 1
6-
6 DESTDIR = 7 DESTDIR =
7 SBINDIR = /usr/sbin 8 SBINDIR = /usr/sbin
8 XCFLAGS = -W -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare 9 XCFLAGS = -W -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare
@@ -12,7 +13,7 @@ Upstream-Status: Inappropriate [configuration]
12 13
13 OBJS= latencytop.o text_display.o translate.o fsync.o 14 OBJS= latencytop.o text_display.o translate.o fsync.o
14 15
15@@ -26,16 +27,17 @@ 16@@ -26,16 +24,17 @@
16 17
17 # We write explicity this "implicit rule" 18 # We write explicity this "implicit rule"
18 %.o : %.c 19 %.o : %.c
diff --git a/meta/recipes-kernel/latencytop/latencytop_0.5.bb b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
index 15f3667076..3e35bf910d 100644
--- a/meta/recipes-kernel/latencytop/latencytop_0.5.bb
+++ b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
@@ -5,9 +5,9 @@ BUGTRACKER = "n/a"
5LICENSE = "GPLv2" 5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://latencytop.c;endline=23;md5=ee9ea9b1415356e5734adad4a87dc7fa" 6LIC_FILES_CHKSUM = "file://latencytop.c;endline=23;md5=ee9ea9b1415356e5734adad4a87dc7fa"
7 7
8DEPENDS = "virtual/libintl ncurses glib-2.0 gtk+" 8DEPENDS = "virtual/libintl ncurses glib-2.0 ${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
9 9
10PR = "r2" 10PR = "r3"
11 11
12SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \ 12SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \
13 file://latencytop-makefile.patch" 13 file://latencytop-makefile.patch"
@@ -15,8 +15,10 @@ SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \
15SRC_URI[md5sum] = "73bb3371c6ee0b0e68e25289027e865c" 15SRC_URI[md5sum] = "73bb3371c6ee0b0e68e25289027e865c"
16SRC_URI[sha256sum] = "9e7f72fbea7bd918e71212a1eabaad8488d2c602205d2e3c95d62cd57e9203ef" 16SRC_URI[sha256sum] = "9e7f72fbea7bd918e71212a1eabaad8488d2c602205d2e3c95d62cd57e9203ef"
17 17
18EXTRA_OEMAKE_X = "${@base_contains('DISTRO_FEATURES', 'x11', 'HAS_GTK_GUI=1', '', d)}"
19
18CFLAGS += "${LDFLAGS}" 20CFLAGS += "${LDFLAGS}"
19 21
20do_install() { 22do_install() {
21 oe_runmake install DESTDIR=${D} 23 oe_runmake install DESTDIR=${D} ${EXTRA_OEMAKE_X}
22} 24}