diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 23:19:30 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 23:19:30 +0100 |
commit | dbc8892b09f3f5772f5313fc6df2faabd0187d9b (patch) | |
tree | 27918f9dad6f7d73725b6991ed00295ab4c07376 /meta/packages | |
parent | 833390e533ee997600f37ec87192f05e49e26db3 (diff) | |
download | poky-dbc8892b09f3f5772f5313fc6df2faabd0187d9b.tar.gz |
latencytop: Move from meta-moblin to meta
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/latencytop/latencytop-0.5/latencytop-makefile.patch | 32 | ||||
-rw-r--r-- | meta/packages/latencytop/latencytop_0.5.bb | 19 |
2 files changed, 51 insertions, 0 deletions
diff --git a/meta/packages/latencytop/latencytop-0.5/latencytop-makefile.patch b/meta/packages/latencytop/latencytop-0.5/latencytop-makefile.patch new file mode 100644 index 0000000000..b979f57cae --- /dev/null +++ b/meta/packages/latencytop/latencytop-0.5/latencytop-makefile.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | --- a/Makefile 2010-07-20 18:51:32.000000000 +0800 | ||
2 | +++ b/Makefile 2010-07-20 18:54:54.000000000 +0800 | ||
3 | @@ -4,7 +4,8 @@ | ||
4 | DESTDIR = | ||
5 | SBINDIR = /usr/sbin | ||
6 | XCFLAGS = -W -g `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 | OBJS= latencytop.o text_display.o translate.o fsync.o | ||
12 | |||
13 | @@ -26,16 +27,17 @@ | ||
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: $(OBJS) latencytop.h Makefile | ||
21 | - gcc $(CFLAGS) $(OBJS) $(LDF) -o latencytop | ||
22 | + $(CC) $(CFLAGS) $(OBJS) $(LDF) -o latencytop | ||
23 | |||
24 | clean: | ||
25 | rm -f *~ latencytop DEADJOE *.o | ||
26 | |||
27 | install: latencytop | ||
28 | mkdir -p $(DESTDIR)/usr/share/latencytop | ||
29 | + mkdir -p $(DESTDIR)/$(SBINDIR) | ||
30 | install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans | ||
31 | install -m 0644 *.png $(DESTDIR)/usr/share/latencytop/ | ||
32 | install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ | ||
diff --git a/meta/packages/latencytop/latencytop_0.5.bb b/meta/packages/latencytop/latencytop_0.5.bb new file mode 100644 index 0000000000..75c72c1072 --- /dev/null +++ b/meta/packages/latencytop/latencytop_0.5.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "LatencyTOP, a Linux tool measuring and fixing latency" | ||
2 | HOMEPAGE = "http://www.latencytop.org/" | ||
3 | BUGTRACKER = "n/a" | ||
4 | |||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://latencytop.c;endline=23;md5=ee9ea9b1415356e5734adad4a87dc7fa" | ||
7 | |||
8 | DEPENDS = "virtual/libintl ncurses glib-2.0 gtk+" | ||
9 | |||
10 | PR = "r1" | ||
11 | |||
12 | SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \ | ||
13 | file://latencytop-makefile.patch" | ||
14 | |||
15 | CFLAGS += "${LDFLAGS}" | ||
16 | |||
17 | do_install() { | ||
18 | oe_runmake install DESTDIR=${D} | ||
19 | } | ||