updated version, patched to support OE cross install-sh
authorOyvind Repvik <nail@nslu2-linux.org>
Sun, 24 Jul 2005 20:21:40 +0000 (20:21 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sun, 24 Jul 2005 20:21:40 +0000 (20:21 +0000)
packages/procps/procps-3.2.5/.mtn2git_empty [new file with mode: 0644]
packages/procps/procps-3.2.5/install.patch [new file with mode: 0644]
packages/procps/procps-3.2.5/pagesz-not-constant.patch [new file with mode: 0644]
packages/procps/procps-3.2.5/procmodule.patch [new file with mode: 0644]
packages/procps/procps-3.2.5/psmodule.patch [new file with mode: 0644]
packages/procps/procps_3.2.5.bb [new file with mode: 0644]

diff --git a/packages/procps/procps-3.2.5/.mtn2git_empty b/packages/procps/procps-3.2.5/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/procps/procps-3.2.5/install.patch b/packages/procps/procps-3.2.5/install.patch
new file mode 100644 (file)
index 0000000..a05eec4
--- /dev/null
@@ -0,0 +1,25 @@
+*** procps-3.2.5/Makefile.orig Sun Jul 24 03:29:32 2005
+--- procps-3.2.5/Makefile      Sun Jul 24 03:30:14 2005
+***************
+*** 211,220 ****
+  ###### install
+  
+  $(BINFILES) : all
+!      $(install) --mode a=rx $(notdir $@) $@
+  
+  $(MANFILES) : all
+!      $(install) --mode a=r $(notdir $@) $@
+  
+  install: $(filter-out $(SKIP) $(addprefix $(DESTDIR),$(SKIP)),$(INSTALL))
+       cd $(usr/bin) && $(ln_f) skill snice
+--- 211,220 ----
+  ###### install
+  
+  $(BINFILES) : all
+!      $(install) -m 555 $(notdir $@) $@
+  
+  $(MANFILES) : all
+!      $(install) -m 444 $(notdir $@) $@
+  
+  install: $(filter-out $(SKIP) $(addprefix $(DESTDIR),$(SKIP)),$(INSTALL))
+       cd $(usr/bin) && $(ln_f) skill snice
diff --git a/packages/procps/procps-3.2.5/pagesz-not-constant.patch b/packages/procps/procps-3.2.5/pagesz-not-constant.patch
new file mode 100644 (file)
index 0000000..8e9e1eb
--- /dev/null
@@ -0,0 +1,22 @@
+Index: procps-3.2.1/proc/devname.c
+===================================================================
+--- procps-3.2.1.orig/proc/devname.c   2004-03-18 05:43:50.000000000 +1100
++++ procps-3.2.1/proc/devname.c        2005-04-02 10:40:17.462138000 +1000
+@@ -227,7 +227,7 @@
+ /* number --> name */
+ unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags) {
+-  static char buf[PAGE_SIZE];
++  static char buf[4096];
+   char *restrict tmp = buf;
+   unsigned dev = dev_t_dev;
+   unsigned i = 0;
+@@ -249,7 +249,7 @@
+   if((flags&ABBREV_TTY) && !strncmp(tmp,"tty",  3) && tmp[3]) tmp += 3;
+   if((flags&ABBREV_PTS) && !strncmp(tmp,"pts/", 4) && tmp[4]) tmp += 4;
+   /* gotta check before we chop or we may chop someone else's memory */
+-  if(chop + (unsigned long)(tmp-buf) <= sizeof buf)
++  if(chop + (unsigned long)(tmp-buf) < sizeof buf)
+     tmp[chop] = '\0';
+   /* replace non-ASCII characters with '?' and return the number of chars */
+   for(;;){
diff --git a/packages/procps/procps-3.2.5/procmodule.patch b/packages/procps/procps-3.2.5/procmodule.patch
new file mode 100644 (file)
index 0000000..fabfaba
--- /dev/null
@@ -0,0 +1,36 @@
+*** procps-3.2.5/proc/module.mk.orig   Sun Jul 24 11:53:49 2005
+--- procps-3.2.5/proc/module.mk        Sun Jul 24 11:54:32 2005
+***************
+*** 96,102 ****
+  #################### install rules ###########################
+  
+  $(lib)$(SOFILE) : proc/$(SONAME)
+!      $(install) --mode a=rx $< $@
+  
+  ifneq ($(SOLINK),$(SOFILE))
+  .PHONY: $(lib)$(SOLINK)
+--- 96,102 ----
+  #################### install rules ###########################
+  
+  $(lib)$(SOFILE) : proc/$(SONAME)
+!      $(install) -m 555 $< $@
+  
+  ifneq ($(SOLINK),$(SOFILE))
+  .PHONY: $(lib)$(SOLINK)
+***************
+*** 115,121 ****
+       $(ldconfig)
+  
+  $(usr/lib)$(ANAME) : proc/$(ANAME)
+!      $(install) --mode a=r $< $@
+  
+  # Junk anyway... supposed to go in /usr/include/$(NAME)
+  #INSTALL += $(addprefix $(include),$(HDRFILES))
+--- 115,121 ----
+       $(ldconfig)
+  
+  $(usr/lib)$(ANAME) : proc/$(ANAME)
+!      $(install) -m 444 $< $@
+  
+  # Junk anyway... supposed to go in /usr/include/$(NAME)
+  #INSTALL += $(addprefix $(include),$(HDRFILES))
diff --git a/packages/procps/procps-3.2.5/psmodule.patch b/packages/procps/procps-3.2.5/psmodule.patch
new file mode 100644 (file)
index 0000000..f298c1c
--- /dev/null
@@ -0,0 +1,21 @@
+*** procps-3.2.5/ps/module.mk.orig     Sun Jul 24 11:54:40 2005
+--- procps-3.2.5/ps/module.mk  Sun Jul 24 11:55:02 2005
+***************
+*** 33,40 ****
+  
+  
+  $(bin)ps: ps/ps
+!      $(install) --mode a=rx $< $@
+  
+  $(man1)ps.1 : ps/ps.1
+!      $(install) --mode a=r $< $@
+       -rm -f $(DESTDIR)/var/catman/cat1/ps.1.gz $(DESTDIR)/var/man/cat1/ps.1.gz
+--- 33,40 ----
+  
+  
+  $(bin)ps: ps/ps
+!      $(install) -m 555 $< $@
+  
+  $(man1)ps.1 : ps/ps.1
+!      $(install) -m 444 $< $@
+       -rm -f $(DESTDIR)/var/catman/cat1/ps.1.gz $(DESTDIR)/var/man/cat1/ps.1.gz
diff --git a/packages/procps/procps_3.2.5.bb b/packages/procps/procps_3.2.5.bb
new file mode 100644 (file)
index 0000000..24def79
--- /dev/null
@@ -0,0 +1,25 @@
+LICENSE = "GPL"
+DESCRIPTION = "Procps is the package that has a bunch \
+of small useful utilities that give information \
+about processes using the /proc filesystem. The package \
+includes the programs ps, top, vmstat, w, kill, and skill."
+SECTION = "base"
+PRIORITY = "optional"
+MAINTAINER = "Inge Arnesen <inge.arnesen@gmail.com>"
+DEPENDS = "ncurses"
+PR = "r1"
+
+SRC_URI = "http://procps.sourceforge.net/procps-${PV}.tar.gz \
+           file://install.patch;patch=1 \
+           file://procmodule.patch;patch=1 \
+           file://psmodule.patch;patch=1"
+
+
+
+inherit autotools
+
+EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \
+                LDFLAGS=-L${STAGING_LIBDIR} -Wl,--rpath-link,${STAGING_LIBDIR} \
+                CURSES=-lncurses \
+                install='install -D' \
+                ldconfig=echo"