diff options
author | Richard Purdie <richard@ted.(none)> | 2009-01-18 13:09:23 +0000 |
---|---|---|
committer | Richard Purdie <richard@ted.(none)> | 2009-01-18 13:09:23 +0000 |
commit | f0a876b8a2414b78968f7925a009bd1f57a3a023 (patch) | |
tree | 96cdeff129826985a0035e1aa2cb32f62bf56539 | |
parent | 0e7c8367e544a2b4a67bcfc5b63b0b6e27f72187 (diff) | |
download | poky-f0a876b8a2414b78968f7925a009bd1f57a3a023.tar.gz |
Add latencytop 0.4
-rw-r--r-- | meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch | 32 | ||||
-rw-r--r-- | meta-moblin/packages/latencytop/latencytop_0.4.bb | 14 |
2 files changed, 46 insertions, 0 deletions
diff --git a/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch b/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch new file mode 100644 index 0000000000..8840d3880c --- /dev/null +++ b/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | --- a/Makefile 2008-11-14 22:55:51.000000000 +0800 | ||
2 | +++ b/Makefile 2008-11-14 23:00:51.000000000 +0800 | ||
3 | @@ -1,7 +1,8 @@ | ||
4 | DESTDIR = | ||
5 | SBINDIR = /usr/sbin | ||
6 | XCFLAGS = -W `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare | ||
7 | -LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncursesw | ||
8 | +LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncurses | ||
9 | +CC ?= gcc | ||
10 | |||
11 | # | ||
12 | # The w in -lncursesw is not a typo; it is the wide-character version | ||
13 | @@ -14,10 +15,10 @@ LDF = -Wl,--as-needed `pkg-config --libs | ||
14 | |||
15 | # We write explicity this "implicit rule" | ||
16 | %.o : %.c | ||
17 | - gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@ | ||
18 | + $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@ | ||
19 | |||
20 | latencytop: latencytop.o display.o latencytop.h translate.o Makefile | ||
21 | - gcc $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop | ||
22 | + $(CC) $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop | ||
23 | |||
24 | |||
25 | clean: | ||
26 | @@ -25,5 +26,6 @@ clean: | ||
27 | |||
28 | install: latencytop | ||
29 | mkdir -p $(DESTDIR)/usr/share/latencytop | ||
30 | + mkdir -p $(DESTDIR)$(SBINDIR) | ||
31 | install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans | ||
32 | install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ | ||
diff --git a/meta-moblin/packages/latencytop/latencytop_0.4.bb b/meta-moblin/packages/latencytop/latencytop_0.4.bb new file mode 100644 index 0000000000..706d0817b5 --- /dev/null +++ b/meta-moblin/packages/latencytop/latencytop_0.4.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | DESCRIPTION = "LatencyTOP, a Linux tool measuring and fixing latency" | ||
2 | HOMEPAGE = "http://www.latencytop.org/" | ||
3 | LICENSE = "GPLv2" | ||
4 | DEPENDS = "virtual/libintl ncurses glib-2.0" | ||
5 | PR = "r1" | ||
6 | |||
7 | SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \ | ||
8 | file://latencytop-makefile.patch;patch=1" | ||
9 | |||
10 | CFLAGS += "${LDFLAGS}" | ||
11 | |||
12 | do_install() { | ||
13 | oe_runmake install DESTDIR=${D} | ||
14 | } | ||