[Pkg-wmaker-commits] [wmpinboard] 08/30: Imported Debian patch 0.9.2-1
Doug Torrance
dtorrance-guest at moszumanska.debian.org
Wed Jan 27 23:31:37 UTC 2016
This is an automated email from the git hooks/post-receive script.
dtorrance-guest pushed a commit to branch master
in repository wmpinboard.
commit 5e81f7c37867d2cc30ed179be1eba9c76773384d
Author: Darren Benham <gecko at debian.org>
Date: Sat Sep 18 09:40:46 1999 -0700
Imported Debian patch 0.9.2-1
---
Imakefile | 3 +-
debian/changelog | 22 +++++++++++++++
debian/control | 12 ++++++++
debian/copyright | 15 ++++++++++
debian/dirs | 1 +
debian/docs | 1 +
debian/menu | 2 ++
debian/rules | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/wmpinboard.1 | 48 ++++++++++++++++++++++++++++++++
9 files changed, 182 insertions(+), 1 deletion(-)
diff --git a/Imakefile b/Imakefile
index 0c2e1ad..45d57e5 100644
--- a/Imakefile
+++ b/Imakefile
@@ -37,7 +37,8 @@ all::
@test -e ./ReleaseNotes && cat ReleaseNotes || true
install::
- $(INSTALL) -m 0644 wmpinboard.1 $(DESTDIR)/man/man1
+ $(INSTALL) -d $(DESTDIR)/share/man/man1
+ $(INSTALL) -m 0644 wmpinboard.1 $(DESTDIR)/share/man/man1
DESTDIR = /usr/local
BINDIR = /bin
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..24c73f3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,22 @@
+wmpinboard (0.9.2-1) unstable; urgency=low
+
+ * New upstream version
+
+ -- Darren Benham <gecko at debian.org> Sat, 18 Sep 1999 09:40:46 -0700
+
+wmpinboard (0.8.2-1) unstable; urgency=low
+
+ * New upstream version
+
+ -- Darren Benham <gecko at debian.org> Sat, 10 Apr 1999 21:50:46 -0700
+
+wmpinboard (0.7-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Darren Benham <gecko at debian.org> Sat, 30 Jan 1999 02:57:34 -0800
+
+Local variables:
+mode: debian-changelog
+add-log-mailing-address: "gecko at debian.org"
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5567741
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: wmpinboard
+Section: x11
+Priority: optional
+Maintainer: Darren Benham <gecko at debian.org>
+Standards-Version: 3.0.0.0
+
+Package: wmpinboard
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Window Maker dock applet resembling a miniature pinboard
+ Window Maker dock applet resembling a miniature pinboard. Icon is titled
+ TODO. Think of it as postits for your dockbar.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1638bcf
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+This package was debianized by Darren Benham gecko at debian.org on
+Sat, 30 Jan 1999 02:57:34 -0800.
+
+It was downloaded from http://www.tu-ilmenau.de/~gomar/stuff/wmpinboard/
+
+Upstream Author(s): gomar at mindless.com (Marco Goetze)
+
+Copyright:
+
+ License
+ ---------
+
+ wmpinboard is distributed under the terms of the GNU General Public license,
+ revision 2, or--at your choice--any later revision. A copy of said document
+ is at /usr/doc/copyrights/GPL.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/bin
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..5b2241c
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+changelog README TODO
diff --git a/debian/menu b/debian/menu
new file mode 100644
index 0000000..9e6326e
--- /dev/null
+++ b/debian/menu
@@ -0,0 +1,2 @@
+?package(wmpinboard):needs=X11 section=Apps/Tools\
+ title="wmPinboard" command="/usr/bin/wmpinboard"
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2655ab9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,79 @@
+#!/usr/bin/make -f
+# MAde with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+
+ # Add here commands to compile the package.
+ xmkmf
+ $(MAKE)
+ mv ChangeLog changelog
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp install-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) clean
+ -rm Makefile
+ -rm wmpinboard
+ -mv changelog ChangeLog
+
+ dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/tmp.
+ $(MAKE) install DESTDIR=`pwd`/debian/tmp/usr
+
+ touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# dh_testversion
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installexamples
+ dh_installmenu
+# dh_installemacsen
+# dh_installinit
+ dh_installcron
+# dh_installmanpages
+# dh_undocumented
+ dh_installchangelogs
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_suidregister
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+# dh_makeshlibs
+ dh_md5sums
+ dh_builddeb
+
+source diff:
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
diff --git a/debian/wmpinboard.1 b/debian/wmpinboard.1
new file mode 100644
index 0000000..d14ca59
--- /dev/null
+++ b/debian/wmpinboard.1
@@ -0,0 +1,48 @@
+.TH wmpinboard(0.7) 1
+.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
+.\" other parms are alNlowed: see man(7), man(1)
+.SH NAME
+wmpinboard \- postit notes that dock in WindowMaker
+
+.SH SYNOPSIS
+.B wmpinboard
+.I "[-display DISPLAY] [-c] [-f font] [-t] [--help]"
+
+.SH "DESCRIPTION"
+This manual page documents briefly the
+.BR wmpinboard
+command.
+This manual page was written for the Debian GNU/Linux distribution
+because the original program does not have a manual page.
+.PP
+.B wmpinboard
+is a program that puts a little note board into the dock bar of the Window
+Maker window manager.
+.SH OPTIONS
+A summary of options are included below.
+.TP
+.B \-d DISPLAY
+Use the specified X display
+.TP
+.B \-c
+Emulate click-based keyboard focus (Alpha)
+.TP
+.B \-f FONT
+use the specified font; FONT can be one of the following:
+ Default default font (Latin1 (ISO8859-1))
+ Latin2 Latin2 (ISO8859-2)
+ Russian cyrillic font (KOI8)
+ or a complete X descriptor of a fixed size 6x10 font
+.TP
+.B \-t
+Disable timeout (automatic edit mode termination).
+.TP
+.B \\-\-help
+Show summary of options.
+
+.SH AUTHOR
+This manual page was written by Darren Benham <gecko at debian.org>,
+for the Debian GNU/Linux system (but may be used by others).
+
+Copyright (C) 1998,9 by Marco G"otze, <mailto:gomar at mindless.com>.
+This program is distributed under the terms of the GNU GPL2.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmpinboard.git
More information about the Pkg-wmaker-commits
mailing list