From 912a5c9c6ad68b1a7e1b24af280d9cd1d834ad53 Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Tue, 20 Jul 2010 19:07:52 +0800 Subject: latencytop: upgrade from 0.4 to the latest version 0.5 Add BUGTRACKER Rebase the patch latencytop-makefile.patch and update the patch folder's name Add LIC_FILES_CHKSUM Reset PR to "r0" Signed-off-by: Dexuan Cui --- .../latencytop-0.5/latencytop-makefile.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch (limited to 'meta-moblin/packages/latencytop/latencytop-0.5') diff --git a/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch b/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch new file mode 100644 index 000000000..b979f57ca --- /dev/null +++ b/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch @@ -0,0 +1,32 @@ +--- a/Makefile 2010-07-20 18:51:32.000000000 +0800 ++++ b/Makefile 2010-07-20 18:54:54.000000000 +0800 +@@ -4,7 +4,8 @@ + DESTDIR = + SBINDIR = /usr/sbin + XCFLAGS = -W -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare +-LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncursesw ++LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncurses ++CC ?= gcc + + OBJS= latencytop.o text_display.o translate.o fsync.o + +@@ -26,16 +27,17 @@ + + # We write explicity this "implicit rule" + %.o : %.c +- gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@ ++ $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@ + + latencytop: $(OBJS) latencytop.h Makefile +- gcc $(CFLAGS) $(OBJS) $(LDF) -o latencytop ++ $(CC) $(CFLAGS) $(OBJS) $(LDF) -o latencytop + + clean: + rm -f *~ latencytop DEADJOE *.o + + install: latencytop + mkdir -p $(DESTDIR)/usr/share/latencytop ++ mkdir -p $(DESTDIR)/$(SBINDIR) + install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans + install -m 0644 *.png $(DESTDIR)/usr/share/latencytop/ + install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ -- cgit v1.2.3