[Pkg-wmaker-commits] [wmload] 02/58: Imported Debian patch 0.9.2-4

Doug Torrance dtorrance-guest at moszumanska.debian.org
Mon Aug 24 23:36:16 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmload.

commit 00f4da94b3edba9800e37370ceb66da9a7cdccf5
Author: Marcelo E. Magallon <mmagallo at debian.org>
Date:   Sun Apr 12 13:48:21 1998 -0600

    Imported Debian patch 0.9.2-4
---
 debian/README.debian |  7 ++++++
 debian/changelog     | 30 +++++++++++++++++++++++++
 debian/control       | 13 +++++++++++
 debian/copyright     |  8 +++++++
 debian/dirs          |  3 +++
 debian/docs          |  1 +
 debian/menu          |  6 +++++
 debian/postinst      | 17 ++++++++++++++
 debian/postrm        | 28 +++++++++++++++++++++++
 debian/rules         | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/wmload.1x     | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++
 11 files changed, 237 insertions(+)

diff --git a/debian/README.debian b/debian/README.debian
new file mode 100644
index 0000000..417e048
--- /dev/null
+++ b/debian/README.debian
@@ -0,0 +1,7 @@
+wmload for DEBIAN
+-----------------
+
+This is Debian GNU/Linux's prepackaged version of wmload, a system load
+monitor designed for WindowMaker.
+
+Marcelo E. Magallon <mmagallo at efis.ucr.ac.cr>, Fri,  2 Jan 1998 13:42:00 -0600
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1aa8b2a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,30 @@
+wmload (0.9.2-4) frozen unstable; urgency=low
+
+  * Wrote a real manpage
+
+ -- Marcelo E. Magallon <mmagallo at debian.org>  Sun, 12 Apr 1998 13:48:21 -0600
+
+wmload (0.9.2-3) unstable; urgency=low
+
+  * Fixed Architecture = any (fixes: bug#17923)
+
+ -- Marcelo E. Magallon <mmagallo at debian.org>  Sun, 15 Feb 1998 13:19:00 -0600
+
+wmload (0.9.2-2) unstable; urgency=low
+
+  * Cleaned rules a bit
+  * Reuploaded including pristine sources
+
+ -- Marcelo E. Magallon <mmagallo at efis.ucr.ac.cr>  Sun, 25 Jan 1998 12:43:59 -0600
+
+wmload (0.9.2-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Marcelo E. Magallon <mmagallo at efis.ucr.ac.cr>  Fri,  2 Jan 1998 14:00:10 -0600
+
+Local variables:
+mode: debian-changelog
+mode: auto-fill
+add-log-mailing-address: "mmagallo at debian.org"
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..494b975
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: wmload
+Section: x11
+Priority: optional
+Maintainer: Marcelo E. Magallon <mmagallo at debian.org>
+Standards-Version: 2.4.0.0
+
+Package: wmload
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: wmaker
+Description: A system load monitor designed for WindowMaker
+ There's nothing in the program that makes it requiere WindowMaker, except
+ maybe the look.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..61ce1fe
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,8 @@
+This package was debianized by Marcelo E. Magallon
+<mmagallo at efis.ucr.ac.cr> on Fri, 2 Jan 1998 13:42:00 -0600.
+
+wmmixer by Sam Hawker, shawkie at geocities.com
+http://www.geocities.com/SiliconValley/Vista/2471/
+
+this software is freely distributable and supplied without warranty
+(express or otherwise)
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..fa46ee0
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,3 @@
+usr/X11R6/bin
+usr/doc/wmload
+usr/lib/menu
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/menu b/debian/menu
new file mode 100644
index 0000000..cb9ffeb
--- /dev/null
+++ b/debian/menu
@@ -0,0 +1,6 @@
+?package(wmload):\
+   needs="x11"\
+   icon="none"\
+   section="Apps/System"\
+   title="WMload"\
+   command="/usr/X11R6/bin/wmload -shape -withdrawn"
diff --git a/debian/postinst b/debian/postinst
new file mode 100644
index 0000000..880a2cb
--- /dev/null
+++ b/debian/postinst
@@ -0,0 +1,17 @@
+#! /bin/sh -e
+
+case "$1" in
+  configure)
+    [ -x /usr/bin/update-menus ] && update-menus
+  ;;
+
+  abort-upgrade|abort-deconfigure|abort-remove)
+    # how did we got here? Force a non-zero exit code
+    exit 1
+  ;;
+  *)
+    echo "postinst called with unkown argument: \$1" >&2
+  ;;
+esac
+
+exit 0
diff --git a/debian/postrm b/debian/postrm
new file mode 100644
index 0000000..6e15de6
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,28 @@
+#! /bin/sh -e
+
+case "$1" in
+  remove)
+    [ -x /usr/bin/update-menus ] && update-menus
+  ;;
+  purge)
+  ;;
+  upgrade)
+    # nothing to do
+  ;;
+  failed-upgrade)
+    # this is an upgrade, and it has failed. What can fail?
+    exit 1
+  ;;
+  abort-install)
+  ;;
+  abort-upgrade)
+  ;;
+  disappear)
+  ;;
+  *)
+    echo "postrm called with unknown argument \`$1'" >&2
+    exit 1
+  ;;
+esac
+
+exit 0
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c0da576
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,63 @@
+#!/usr/bin/make -f
+
+package=wmload
+
+SHELL=/bin/sh
+
+export DH_VERBOSE = 1
+
+build: build-stamp
+
+build-stamp:
+	dh_testdir
+	xmkmf -a
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-make clean
+	-rm -f build-stamp Makefile
+	dh_clean
+
+binary-indep: build
+#	dh_testdir -i
+#	dh_testroot
+#	dh_clean -i -k
+
+binary-arch: build
+	dh_testdir -a
+	dh_testroot
+	dh_clean -a -k
+	dh_installdirs -a
+	install -m 755 -s wmload debian/tmp/usr/X11R6/bin/wmload
+	dh_installdocs -a
+	dh_installmenu -a
+	dh_installmanpages -a
+	dh_installchangelogs -a
+	dh_strip -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a -u-isp
+	dh_makeshlibs -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+binary:	binary-indep binary-arch
+
+.PHONY: binary binary-arch binary-indep clean build
+
+# Local variables:
+# mode: makefile
+# mode: font-lock
+# End:
+
+
+
+
+
+
+
diff --git a/debian/wmload.1x b/debian/wmload.1x
new file mode 100644
index 0000000..8173118
--- /dev/null
+++ b/debian/wmload.1x
@@ -0,0 +1,61 @@
+.\" This is -*- nroff -*- ... ugh! The computer made me do it
+.TH wmload 1x "8 Apr 1998" "Debian Project" "Debian GNU/Linux"
+.SH NAME
+wmload \- Graphically display the kernel/system statistics
+.SH SYNOPSIS
+.B wmload
+.RB [\| \-u \|
+.IR \| <secs> \|]
+.RB [\| \-e
+.IR \| <program> \|]
+.RB [\| \-l 
+.IR \| <color> \|]
+.RB [\| \-p\|
+.RB [+|\-]\|x\|[+|\-]\|y\|]
+.RB [\| \-s \|]
+.RB [\| \-i \|]
+.RB [\| \-w \|]
+.RB [\| \-v \|]
+.SH DESCRIPTION
+\fBwmload\fP displays a graphical representation of the kernel/system
+statistics on a 64x64 miniwindow. The are three shades on the window:
+the light one corresponds to \fIuser\fP statistics, the next one is
+\fInice time\fP statistics and the darker one is \fIsystem\fP
+statistics.
+.SH OPTIONS
+.TP
+.B \-u <secs>
+updatespeed
+.TP
+.B \-e <program>
+program to start on click
+.TP
+.B \-p [+|-]x[+|-]y
+position of wmload
+.TP
+.B \-s                  
+without groundplate
+.TP
+.B \-i                 
+start up as icon
+.TP
+.B \-w              
+start up withdrawn
+.TP
+.B \-v                    
+output version
+.SH FILES
+.I /proc/stat
+kernel/system statistics and other information
+.SH AUTHORS
+\fBwmload\fP by Ryan \fILand <rand at bc1.com>\fP based on asload by
+\fIBeat Christen <bchriste at iiic.ethz.ch>\fP
+
+This manpange was written by \fIMarcelo Magallon
+<mmagallo at debian.org\fP for the \fIDebian Project\fP
+.SH "SEE ALSO"
+.BR ps (1),
+.BR tload (1),
+.BR top (1),
+.BR uptime (5),
+.BR w (1)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmload.git



More information about the Pkg-wmaker-commits mailing list