[Pkg-wmaker-commits] [wmbiff] 40/92: Imported Debian patch 0.2-2

Doug Torrance dtorrance-guest at moszumanska.debian.org
Thu Aug 20 02:59:24 UTC 2015


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

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

commit 8ec6b373983c8d2fa5dc1f66a665639be67b63a0
Author: Jordi Mallach <jordi at sindominio.net>
Date:   Sat Dec 18 20:04:07 1999 +0100

    Imported Debian patch 0.2-2
---
 debian/changelog | 31 ++++++++++++++++++++++
 debian/control   | 16 ++++++++++++
 debian/copyright | 14 ++++++++++
 debian/dirs      |  2 ++
 debian/docs      |  2 ++
 debian/menu      |  2 ++
 debian/rules     | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/wmbiff.1x | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 wmbiff/Makefile  | 30 +++++++++++++++-------
 9 files changed, 241 insertions(+), 9 deletions(-)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0ae7aea
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,31 @@
+wmbiff (0.2-2) unstable; urgency=low
+
+  * Wrote a manpage for wmbiff. I still need to write a wmbiffrc(5)
+    manpage, in the meanwhile, sample.wmbiffrc file is a good start.
+  * Removed my second surname from the maintainer's name entry.
+
+ -- Jordi Mallach <jordi at sindominio.net>  Sat, 18 Dec 1999 20:04:07 +0100
+
+wmbiff (0.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * (Auto)Mail fetch support added.
+
+ -- Jordi Mallach P�rez <jordi at sindominio.net>  Sat, 27 Nov 1999 01:31:22 +0100
+
+wmbiff (0.1a-1) unstable; urgency=low
+
+  * New upstream release.
+  * This version fixes unwanted beeps on new mail arrival.
+
+ -- Jordi Mallach P�rez <jordi at sindominio.net>  Sat, 20 Nov 1999 03:10:58 +0100
+
+wmbiff (0.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Jordi Mallach P�rez <jordi at sindominio.net>  Thu, 18 Nov 1999 02:53:59 +0100
+
+Local variables:
+mode: debian-changelog
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bb62366
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: wmbiff
+Section: x11
+Priority: optional
+Maintainer: Jordi Mallach <jordi at sindominio.net>
+Standards-Version: 3.0.1
+
+Package: wmbiff
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: menu (>= 2.1.4)
+Description: A dockable app that displays information about mailboxes
+ wmBiff is an WindowMaker docking utility, that displays the number of read
+ and unread messages in up to five mailboxes.
+ You can also define actions to execute on new mail arrival (for example,
+ play a sound file).
+ At this moment only unix-style mailboxes are supported.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4b7ce8a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,14 @@
+This package was debianized by Jordi Mallach <jordi at sindominio.net> on
+Thu, 18 Nov 1999 02:53:59 +0100.
+
+It was downloaded from http://ccat.elect.ru/wmbiff/
+
+Upstream Author: Gennady Belyakov <gb at ccat.elect.ru>
+
+Copyright:
+
+This software is copyright (c) by Gennady Belyakov
+You are free to distribute this software under the terms of
+the GNU General Public License.
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in /usr/share/common-licenses/GPL file.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..30dbcc2
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/X11R6/bin
+usr/X11R6/man/man1
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..79fe291
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+README
+wmbiff/sample.wmbiffrc
diff --git a/debian/menu b/debian/menu
new file mode 100644
index 0000000..1bcfa65
--- /dev/null
+++ b/debian/menu
@@ -0,0 +1,2 @@
+?package(wmbiff):needs=X11 section=Apps/Net\
+  title="WMbiff" command="/usr/X11R6/bin/wmbiff"
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d6036ec
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,78 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=1
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(MAKE) -f wmbiff/Makefile
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) -f wmbiff/Makefile clean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(MAKE) -f wmbiff/Makefile install prefix=`pwd`/debian/tmp
+
+	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_installdebconf	
+	dh_installdocs
+#	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installinit
+#	dh_installcron
+	dh_installmanpages wmbiff.1x.gz
+#	dh_installinfo
+#	dh_undocumented wmbiff.1x.gz
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	# You may want to make some executables suid here.
+#	dh_suidregister
+#	dh_makeshlibs
+	dh_installdeb
+#	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/debian/wmbiff.1x b/debian/wmbiff.1x
new file mode 100644
index 0000000..d645209
--- /dev/null
+++ b/debian/wmbiff.1x
@@ -0,0 +1,75 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH WMBIFF SECTION "December 18, 1999"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+WMbiff \- A dockable Mailbox Monitor
+.SH SYNOPSIS
+.B wmbiff
+[-display <display name>] [-geometry +XPOS+YPOS] [-c <filename>] [-h] [-v]
+.br
+.SH DESCRIPTION
+This manual page documents briefly the 
+.B wmbiff
+command.
+It was written for the Debian GNU/Linux distribution because the original 
+program does not have a manual page.
+
+WMbiff displays the status of up to five mailboxes. It gives information
+about new mail, if any, or total number of messages. It also has mail
+retrieval capabilies, and can be configured to do this automatically. At the
+moment, UNIX-style and POP3 mailboxes are supported.
+
+The mailboxes are displayed in 5 different lines, each one with its own
+description of up to five chars. If no mail is present in a given mailbox,
+WMbiff will display the total number of mails in cyan. If there's new mail
+in the box, the number of new messages will be displayed in yellow. When new
+mail arrives, this number will optionally flash for a small period of time,
+and also optionally, a command can be executed on mail arrival (for example,
+opening your mail reader or playing a sound file).
+
+Pressing mouse button 1 will execute a command, defined in the user's config
+file. Mouse button 3 will execute a command to fetch mail, if defined.
+.PP
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
+.\" respectively.
+.SH OPTIONS
+.TP
+.B \-h
+Show summary of options.
+.TP
+.B \-v
+Show version of program.
+.TP
+.B \-display <display name>
+Use an alternate X Display.
+.TP
+.B \-geometry <geometry>
+Initial window position.
+.TP
+.B \-c <filename>
+Use specified config file.
+
+.SH BUGS
+Please send any bug reports or suggestions to Gennady Belyakov
+<gb at ccat.elect.ru>
+.br
+.SH SEE ALSO
+.BR /usr/share/doc/wmbiff/sample.wmbiffrc
+.SH AUTHOR
+This manual page was written by Jordi Mallach <jordi at sindominio.net>,
+for the Debian GNU/Linux system (but may be used by others).
diff --git a/wmbiff/Makefile b/wmbiff/Makefile
index 723e97e..b87620b 100644
--- a/wmbiff/Makefile
+++ b/wmbiff/Makefile
@@ -1,30 +1,42 @@
 prefix=
 BIN=/usr/X11R6/bin
-CONF=/etc
 LIBDIR = -L/usr/X11R6/lib
 LIBS   = -lXpm -lXext -lX11
 CFLAGS = -O2 -Wall
-OBJS =	wmbiff.o Pop3Client.o \
-	../wmgeneral/wmgeneral.o \
-	../wmgeneral/misc.o \
-	../wmgeneral/list.o
+# Modified for Debian GNU/Linux
+# Changed paths to make debian/rules happy
+OBJS =	wmbiff/wmbiff.o wmbiff/Pop3Client.o \
+	wmgeneral/wmgeneral.o \
+	wmgeneral/misc.o \
+	wmgeneral/list.o
+#OBJS = wmbiff.o \
+#	../wmgeneral/wmgeneral.o \
+#	../wmgeneral/misc.o \
+#	../wmgeneral/list.o
 
 
 .c.o:
 	cc -I/usr/X11R6/share/include $(CFLAGS) -c -Wall $< -o $*.o
 
+# Modified for Debian GNU/Linux
 wmbiff: $(OBJS)
-	cc $(CFLAGS) -o wmbiff $^ $(LIBDIR) $(LIBS)
-	strip wmbiff
+	cc $(CFLAGS) -o wmbiff/wmbiff $^ $(LIBDIR) $(LIBS)
+#	cc $(CFLAGS) -o wmbiff $^ $(LIBDIR) $(LIBS)
+	strip wmbiff/wmbiff
+#	strip wmbiff
 
 all:: wmbiff
 
+# Modified for Debian GNU/Linux
 clean::
 	for i in $(OBJS) ; do \
 		rm -f $$i ; \
 	done
-	rm -f wmbiff *~ tags
+	rm -f wmbiff/wmbiff *~ tags
+#	rm -f wmbiff *~ tags
 
+# Modified for Debian GNU/Linux
 install:: wmbiff
-	cp -f wmbiff $(prefix)$(BIN)/
+	cp -f wmbiff/wmbiff $(prefix)$(BIN)/
+#	cp -f wmbiff $(prefix)$(BIN)/
 	chmod 755 $(prefix)$(BIN)/wmbiff

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



More information about the Pkg-wmaker-commits mailing list