[scottfree] 07/08: Import Debian patch 1.14-9

Stephen Kitt skitt at moszumanska.debian.org
Fri Jan 20 08:00:46 UTC 2017


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

skitt pushed a commit to branch master
in repository scottfree.

commit c1b7414e4e146a611eb2f79d03d3fae133e26528
Author: Barry deFreese <bddebian at comcast.net>
Date:   Fri Jan 11 09:52:55 2008 -0500

    Import Debian patch 1.14-9
---
 Makefile                                    |  11 +-
 ScottCurses.c                               |   2 -
 debian/changelog                            |  18 ++++
 debian/compat                               |   1 +
 debian/control                              |   9 +-
 debian/docs                                 |   2 +
 debian/patches/01_makefile.diff             |  21 ++++
 debian/patches/02_scottcurses_includes.diff |  12 +++
 debian/patches/series                       |   3 +
 debian/rules                                | 119 +++++++++++-----------
 losar/README.Debian                         |   6 --
 losar/changelog                             |   6 --
 losar/conffiles.ex                          |   7 --
 losar/control                               |  12 ---
 losar/copyright                             |  10 --
 losar/cron.d.ex                             |   4 -
 losar/dirs                                  |   2 -
 losar/docs                                  |   1 -
 losar/emacsen-install.ex                    |  45 --------
 losar/emacsen-remove.ex                     |  15 ---
 losar/emacsen-startup.ex                    |  18 ----
 losar/ex.package.doc-base                   |  22 ----
 losar/init.d.ex                             |  70 -------------
 losar/manpage.1.ex                          |  60 -----------
 losar/manpage.sgml.ex                       | 152 ----------------------------
 losar/menu.ex                               |   2 -
 losar/postinst.ex                           |  48 ---------
 losar/postrm.ex                             |  38 -------
 losar/preinst.ex                            |  44 --------
 losar/prerm.ex                              |  39 -------
 losar/rules                                 |  94 -----------------
 losar/watch.ex                              |   6 --
 32 files changed, 125 insertions(+), 774 deletions(-)

diff --git a/Makefile b/Makefile
index 57f35fb..abe57c4 100755
--- a/Makefile
+++ b/Makefile
@@ -4,16 +4,11 @@
 CC	=	gcc
 #
 #
-all	:	scottfree
+all	:	ScottCurses
 
 ScottCurses.o:	ScottCurses.c Scott.h
 
-scottfree:	ScottCurses.o
-	$(CC) ScottCurses.o -o scottfree -lcurses
+ScottCurses:	ScottCurses.o
+	$(CC) ScottCurses.o -o ScottCurses -lcurses -ltermcap
 
-install:
-	mkdir -p $(DESTDIR)/usr/games
-	install -m 755 -o root -g root scottfree $(DESTDIR)/usr/games
 
-clean:
-	rm -f ScottCurses.o scottfree
diff --git a/ScottCurses.c b/ScottCurses.c
index 09bf841..978a5e7 100755
--- a/ScottCurses.c
+++ b/ScottCurses.c
@@ -20,8 +20,6 @@
 #include <curses.h>
 #include <stdarg.h>
 #include <signal.h>
-#include <unistd.h>
-#include <sys/types.h>
 
 #include "Scott.h"
 
diff --git a/debian/changelog b/debian/changelog
index 2924ac3..1e14fa6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,21 @@
+scottfree (1.14-9) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * New maintainer (Closes: #348950)
+    + Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+  * Add myself to uploaders
+  * Add VCS fields to control file
+  * Update build system to debhelper
+    + Add build-dep on debhelper
+  * Make clean not ignore errors
+  * Handle nostrip options (Closes: #438005)
+  * Add quilt patching system
+    + Move source changes to patches
+  * Remove spurious losar directory
+  * Bump Standards Version to 3.7.3
+
+ -- Barry deFreese <bddebian at comcast.net>  Fri, 11 Jan 2008 09:52:55 -0500
+
 scottfree (1.14-8) unstable; urgency=low
 
   * Bump to Standards-Version 3.6.2.
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
index 7db4011..c6bb878 100644
--- a/debian/control
+++ b/debian/control
@@ -1,9 +1,12 @@
 Source: scottfree
 Section: games
 Priority: optional
-Maintainer: Debian QA Group <packages at qa.debian.org>
-Standards-Version: 3.6.2
-Build-Depends: libncurses5-dev
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Barry deFreese <bddebian at comcast.net>
+Standards-Version: 3.7.3
+Build-Depends: debhelper (>= 5.0.0), quilt, libncurses5-dev
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/scottfree/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/scottfree/?op=log
 
 Package: scottfree
 Architecture: any
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..4eeb0b8
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+README
+Definition
diff --git a/debian/patches/01_makefile.diff b/debian/patches/01_makefile.diff
new file mode 100644
index 0000000..029e205
--- /dev/null
+++ b/debian/patches/01_makefile.diff
@@ -0,0 +1,21 @@
+diff -urN scottfree-1.14.orig.orig/Makefile scottfree-1.14.orig/Makefile
+--- scottfree-1.14.orig.orig/Makefile	1995-04-11 16:50:00.000000000 -0400
++++ scottfree-1.14.orig/Makefile	2008-01-11 11:08:29.000000000 -0500
+@@ -4,11 +4,14 @@
+ CC	=	gcc
+ #
+ #
+-all	:	ScottCurses
++all	:	scottfree
+ 
+ ScottCurses.o:	ScottCurses.c Scott.h
+ 
+-ScottCurses:	ScottCurses.o
+-	$(CC) ScottCurses.o -o ScottCurses -lcurses -ltermcap
++scottfree:	ScottCurses.o
++	$(CC) ScottCurses.o -o scottfree -lcurses
+ 
++install:
++	mkdir -p $(DESTDIR)/usr/games
++	install -m 755 -o root -g root scottfree $(DESTDIR)/usr/games
+ 
diff --git a/debian/patches/02_scottcurses_includes.diff b/debian/patches/02_scottcurses_includes.diff
new file mode 100644
index 0000000..2d8860b
--- /dev/null
+++ b/debian/patches/02_scottcurses_includes.diff
@@ -0,0 +1,12 @@
+diff -urN scottfree-1.14.orig.orig/ScottCurses.c scottfree-1.14.orig/ScottCurses.c
+--- scottfree-1.14.orig.orig/ScottCurses.c	1995-04-27 06:03:27.000000000 -0400
++++ scottfree-1.14.orig/ScottCurses.c	2008-01-11 10:49:52.000000000 -0500
+@@ -20,6 +20,8 @@
+ #include <curses.h>
+ #include <stdarg.h>
+ #include <signal.h>
++#include <unistd.h>
++#include <sys/types.h>
+ 
+ #include "Scott.h"
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..04aff3b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,3 @@
+01_makefile.diff
+02_scottcurses_includes.diff
+
diff --git a/debian/rules b/debian/rules
index 93cc8cc..fc92f15 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,63 +1,62 @@
 #!/usr/bin/make -f
-# Made with the aid of debmake, by Christoph Lameter,
-# based on the sample debian/rules file for GNU hello by Ian Jackson.
-
-package=scottfree
-
-build:
-	$(checkdir)
-	
-	make CFLAGS="-O2 -g -Wall"
-	touch build
-
-clean:
-	$(checkdir)
-	-rm -f build
-	-make clean
-	-rm -f `find . -name "*~"`
-	-rm -rf debian/tmp debian/files* core debian/substvars
-
-binary-indep: checkroot build
-	$(checkdir)
-# There are no architecture-independent files to be uploaded
-# generated by this package.  If there were any they would be
-# made here.
-
-binary-arch: checkroot build
-	$(checkdir)
-	-rm -rf debian/tmp
-	install -d debian/tmp
-	cd debian/tmp && install -o 0 -g 0 -m755 -d `cat ../dirs`
-	make install DESTDIR=$(CURDIR)/debian/tmp
-
-	install -o 0 -g 0 -m644  README Definition debian/tmp/usr/share/doc/scottfree/
-	install -o 0 -g 0 -m644  debian/scottfree.6 debian/tmp/usr/share/man/man6/
-	install -o 0 -g 0 -m 644 -p debian/copyright debian/tmp/usr/share/doc/scottfree/copyright
-	install -o 0 -g 0 -p -m644 debian/changelog debian/tmp/usr/share/doc/scottfree/changelog.Debian
-
-	gzip -9f debian/tmp/usr/share/doc/scottfree/README debian/tmp/usr/share/doc/scottfree/Definition debian/tmp/usr/share/doc/scottfree/changelog.Debian debian/tmp/usr/share/man/man6/scottfree.6
-
-	strip --remove-section=.comment --remove-section=.note debian/tmp/usr/games/scottfree
-	install -o 0 -g 0 -d debian/tmp/DEBIAN
-	dpkg-shlibdeps -Tdebian/substvars -dDepends debian/tmp/usr/games/scottfree
-	dpkg-gencontrol -ldebian/changelog -isp -pscottfree -Tdebian/substvars -Pdebian/tmp
-	cd debian/tmp && find * -type f  ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums
-	chmod 644 debian/tmp/DEBIAN/control debian/tmp/DEBIAN/md5sums
-	chown 0.0 debian/tmp/DEBIAN/control debian/tmp/DEBIAN/md5sums
-
-	dpkg-gencontrol -isp
-	chown -R root.root debian/tmp
-	chmod -R go=rX debian/tmp
-	dpkg --build debian/tmp ..
-
-define checkdir
-	test -f debian/rules
-endef
 
-binary: binary-indep binary-arch
-
-checkroot:
-	$(checkdir)
-	test root = "`whoami`"
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/quilt/quilt.make
+
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: patch build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE) CFLAGS="$(CFLAGS)"
+	touch $@
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build
+	rm -f ScottCurses.o scottfree
+	rm -f `find . -name "*~"`
+	rm -rf debian/scottfree debian/files* core debian/substvars
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/scottfree
+
+# 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_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installmenu
+	dh_installman debian/scottfree.6
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
 
-.PHONY: binary binary-arch binary-indep clean checkroot
+binary: binary-indep binary-arch
+.PHONY: build clean binary-arch binary-indep binary install
diff --git a/losar/README.Debian b/losar/README.Debian
deleted file mode 100644
index 31dba11..0000000
--- a/losar/README.Debian
+++ /dev/null
@@ -1,6 +0,0 @@
-scottfree for Debian
---------------------
-
-<possible notes regarding this package - if none, delete this file>
-
- -- Clint Adams <schizo at debian.org>, Sat, 31 Aug 2002 22:08:43 -0400
diff --git a/losar/changelog b/losar/changelog
deleted file mode 100644
index 9bf4538..0000000
--- a/losar/changelog
+++ /dev/null
@@ -1,6 +0,0 @@
-scottfree (1.14-1) unstable; urgency=low
-
-  * Initial Release.
-
- -- Clint Adams <schizo at debian.org>  Sat, 31 Aug 2002 22:08:43 -0400
-
diff --git a/losar/conffiles.ex b/losar/conffiles.ex
deleted file mode 100644
index 7e86dd1..0000000
--- a/losar/conffiles.ex
+++ /dev/null
@@ -1,7 +0,0 @@
-#
-# If you want to use this conffile, remove all comments and put files that
-# you want dpkg to process here using their absolute pathnames.
-# See the policy manual
-#
-# for example:
-# /etc/scottfree/scottfree.conf
diff --git a/losar/control b/losar/control
deleted file mode 100644
index 7f8aeee..0000000
--- a/losar/control
+++ /dev/null
@@ -1,12 +0,0 @@
-Source: scottfree
-Section: unknown
-Priority: optional
-Maintainer: Clint Adams <schizo at debian.org>
-Build-Depends: debhelper (>> 3.0.0)
-Standards-Version: 3.5.2
-
-Package: scottfree
-Architecture: any
-Depends: ${shlibs:Depends}
-Description: <insert up to 60 chars description>
- <insert long description, indented with spaces>
diff --git a/losar/copyright b/losar/copyright
deleted file mode 100644
index 103316b..0000000
--- a/losar/copyright
+++ /dev/null
@@ -1,10 +0,0 @@
-This package was debianized by Clint Adams <schizo at debian.org> on
-Sat, 31 Aug 2002 22:08:43 -0400.
-
-It was downloaded from <fill in ftp site>
-
-Upstream Author(s): <put author(s) name and email here>
-
-Copyright:
-
-<Must follow here>
diff --git a/losar/cron.d.ex b/losar/cron.d.ex
deleted file mode 100644
index 4d3c5af..0000000
--- a/losar/cron.d.ex
+++ /dev/null
@@ -1,4 +0,0 @@
-#
-# Regular cron jobs for the scottfree package
-#
-0 4	* * *	root	scottfree_maintenance
diff --git a/losar/dirs b/losar/dirs
deleted file mode 100644
index ca882bb..0000000
--- a/losar/dirs
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin
diff --git a/losar/docs b/losar/docs
deleted file mode 100644
index e845566..0000000
--- a/losar/docs
+++ /dev/null
@@ -1 +0,0 @@
-README
diff --git a/losar/emacsen-install.ex b/losar/emacsen-install.ex
deleted file mode 100644
index 473a5dc..0000000
--- a/losar/emacsen-install.ex
+++ /dev/null
@@ -1,45 +0,0 @@
-#! /bin/sh -e
-# /usr/lib/emacsen-common/packages/install/scottfree
-
-# Written by Jim Van Zandt <jrv at vanzandt.mv.com>, borrowing heavily
-# from the install scripts for gettext by Santiago Vila
-# <sanvila at ctv.es> and octave by Dirk Eddelbuettel <edd at debian.org>.
-
-FLAVOR=$1
-PACKAGE=scottfree
-
-if [ ${FLAVOR} = emacs ]; then exit 0; fi
-
-echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}
-
-#FLAVORTEST=`echo $FLAVOR | cut -c-6`
-#if [ ${FLAVORTEST} = xemacs ] ; then
-#    SITEFLAG="-no-site-file"
-#else
-#    SITEFLAG="--no-site-file"
-#fi
-FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile"
-
-ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
-ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
-
-# Install-info-altdir does not actually exist. 
-# Maybe somebody will write it.
-if test -x /usr/sbin/install-info-altdir; then
-    echo install/${PACKAGE}: install Info links for ${FLAVOR}
-    install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz
-fi
-
-install -m 755 -d ${ELCDIR}
-cd ${ELDIR}
-FILES=`echo *.el`
-cp ${FILES} ${ELCDIR}
-cd ${ELCDIR}
-
-cat << EOF > path.el
-(setq load-path (cons "." load-path) byte-compile-warnings nil)
-EOF
-${FLAVOR} ${FLAGS} ${FILES}
-rm -f *.el path.el
-
-exit 0
diff --git a/losar/emacsen-remove.ex b/losar/emacsen-remove.ex
deleted file mode 100644
index e04710a..0000000
--- a/losar/emacsen-remove.ex
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh -e
-# /usr/lib/emacsen-common/packages/remove/scottfree
-
-FLAVOR=$1
-PACKAGE=scottfree
-
-if [ ${FLAVOR} != emacs ]; then
-    if test -x /usr/sbin/install-info-altdir; then
-        echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
-        install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/scottfree.info.gz
-    fi
-
-    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
-    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
-fi
diff --git a/losar/emacsen-startup.ex b/losar/emacsen-startup.ex
deleted file mode 100644
index e851b59..0000000
--- a/losar/emacsen-startup.ex
+++ /dev/null
@@ -1,18 +0,0 @@
-;; -*-emacs-lisp-*-
-;;
-;; Emacs startup file for the Debian GNU/Linux scottfree package
-;;
-;; Originally contributed by Nils Naumann <naumann at unileoben.ac.at>
-;; Modified by Dirk Eddelbuettel <edd at debian.org>
-;; Adapted for dh-make by Jim Van Zandt <jrv at vanzandt.mv.com>
-
-;; The scottfree package follows the Debian/GNU Linux 'emacsen' policy and
-;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
-;; xemacs19, emacs20, xemacs20...).  The compiled code is then
-;; installed in a subdirectory of the respective site-lisp directory.
-;; We have to add this to the load-path:
-(setq load-path (cons (concat "/usr/share/"
-                              (symbol-name flavor)
-			      "/site-lisp/scottfree") load-path))
-
-
diff --git a/losar/ex.package.doc-base b/losar/ex.package.doc-base
deleted file mode 100644
index beba852..0000000
--- a/losar/ex.package.doc-base
+++ /dev/null
@@ -1,22 +0,0 @@
-Document: scottfree
-Title: Debian scottfree Manual
-Author: <insert document author here>
-Abstract: This manual describes what scottfree is
- and how it can be used to
- manage online manuals on Debian systems.
-Section: unknown
-
-Format: debiandoc-sgml
-Files: /usr/share/doc/scottfree/scottfree.sgml.gz
-
-Format: postscript
-Files: /usr/share/doc/scottfree/scottfree.ps.gz
-
-Format: text
-Files: /usr/share/doc/scottfree/scottfree.text.gz
-
-Format: HTML
-Index: /usr/share/doc/scottfree/html/index.html
-Files: /usr/share/doc/scottfree/html/*.html
-
-  
diff --git a/losar/init.d.ex b/losar/init.d.ex
deleted file mode 100644
index ba3db2a..0000000
--- a/losar/init.d.ex
+++ /dev/null
@@ -1,70 +0,0 @@
-#! /bin/sh
-#
-# skeleton	example file to build /etc/init.d/ scripts.
-#		This file should be used to construct scripts for /etc/init.d.
-#
-#		Written by Miquel van Smoorenburg <miquels at cistron.nl>.
-#		Modified for Debian GNU/Linux
-#		by Ian Murdock <imurdock at gnu.ai.mit.edu>.
-#
-# Version:	@(#)skeleton  1.8  03-Mar-1998  miquels at cistron.nl
-#
-# This file was automatically customized by dh-make on Sat, 31 Aug 2002 22:08:43 -0400
-
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/scottfree
-NAME=scottfree
-DESC=scottfree
-
-test -f $DAEMON || exit 0
-
-set -e
-
-case "$1" in
-  start)
-	echo -n "Starting $DESC: $NAME"
-	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
-		--exec $DAEMON
-	echo "."
-	;;
-  stop)
-	echo -n "Stopping $DESC: $NAME"
-	start-stop-daemon --oknodo --stop --quiet --pidfile /var/run/$NAME.pid \
-		--exec $DAEMON
-	echo "."
-	;;
-  #reload)
-	#
-	#	If the daemon can reload its config files on the fly
-	#	for example by sending it SIGHUP, do it here.
-	#
-	#	If the daemon responds to changes in its config file
-	#	directly anyway, make this a do-nothing entry.
-	#
-	# echo "Reloading $DESC configuration files."
-	# start-stop-daemon --stop --signal 1 --quiet --pidfile \
-	#	/var/run/$NAME.pid --exec $DAEMON
-  #;;
-  restart|force-reload)
-	#
-	#	If the "reload" option is implemented, move the "force-reload"
-	#	option to the "reload" entry above. If not, "force-reload" is
-	#	just the same as "restart".
-	#
-	echo -n "Restarting $DESC: $NAME"
-	start-stop-daemon --stop --quiet --pidfile \
-		/var/run/$NAME.pid --exec $DAEMON
-	sleep 1
-	start-stop-daemon --start --quiet --pidfile \
-		/var/run/$NAME.pid --exec $DAEMON
-	echo "."
-	;;
-  *)
-	N=/etc/init.d/$NAME
-	# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
-	echo "Usage: $N {start|stop|restart|force-reload}" >&2
-	exit 1
-	;;
-esac
-
-exit 0
diff --git a/losar/manpage.1.ex b/losar/manpage.1.ex
deleted file mode 100644
index 4f0e602..0000000
--- a/losar/manpage.1.ex
+++ /dev/null
@@ -1,60 +0,0 @@
-.\"                                      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 SCOTTFREE SECTION "August 31, 2002"
-.\" 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
-scottfree \- program to do something
-.SH SYNOPSIS
-.B scottfree
-.RI [ options ] " files" ...
-.br
-.B bar
-.RI [ options ] " files" ...
-.SH DESCRIPTION
-This manual page documents briefly the
-.B scottfree
-and
-.B bar
-commands.
-This manual page was written for the Debian distribution
-because the original program does not have a manual page.
-Instead, it has documentation in the GNU Info format; see below.
-.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.
-\fBscottfree\fP is a program that...
-.SH OPTIONS
-These programs follow the usual GNU command line syntax, with long
-options starting with two dashes (`-').
-A summary of options is included below.
-For a complete description, see the Info files.
-.TP
-.B \-h, \-\-help
-Show summary of options.
-.TP
-.B \-v, \-\-version
-Show version of program.
-.SH SEE ALSO
-.BR bar (1),
-.BR baz (1).
-.br
-The programs are documented fully by
-.IR "The Rise and Fall of a Fooish Bar" ,
-available via the Info system.
-.SH AUTHOR
-This manual page was written by Clint Adams <schizo at debian.org>,
-for the Debian GNU/Linux system (but may be used by others).
diff --git a/losar/manpage.sgml.ex b/losar/manpage.sgml.ex
deleted file mode 100644
index 8af96f0..0000000
--- a/losar/manpage.sgml.ex
+++ /dev/null
@@ -1,152 +0,0 @@
-<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
-
-<!-- Process this file with docbook-to-man to generate an nroff manual
-     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
-     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
-     less'.  A typical entry in a Makefile or Makefile.am is:
-
-manpage.1: manpage.sgml
-	docbook-to-man $< > $@
-
-    
-	The docbook-to-man binary is found in the docbook-to-man package.
-	Please remember that if you create the nroff version in one of the
-	debian/rules file targets (such as build), you will need to include
-	docbook-to-man in your Build-Depends control field.
-
-  -->
-
-  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
-  <!ENTITY dhfirstname "<firstname>FIRSTNAME</firstname>">
-  <!ENTITY dhsurname   "<surname>SURNAME</surname>">
-  <!-- Please adjust the date whenever revising the manpage. -->
-  <!ENTITY dhdate      "<date>August 31, 2002</date>">
-  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
-       allowed: see man(7), man(1). -->
-  <!ENTITY dhsection   "<manvolnum>SECTION</manvolnum>">
-  <!ENTITY dhemail     "<email>schizo at debian.org</email>">
-  <!ENTITY dhusername  "Clint Adams">
-  <!ENTITY dhucpackage "<refentrytitle>SCOTTFREE</refentrytitle>">
-  <!ENTITY dhpackage   "scottfree">
-
-  <!ENTITY debian      "<productname>Debian</productname>">
-  <!ENTITY gnu         "<acronym>GNU</acronym>">
-]>
-
-<refentry>
-  <refentryinfo>
-    <address>
-      &dhemail;
-    </address>
-    <author>
-      &dhfirstname;
-      &dhsurname;
-    </author>
-    <copyright>
-      <year>2002</year>
-      <holder>&dhusername;</holder>
-    </copyright>
-    &dhdate;
-  </refentryinfo>
-  <refmeta>
-    &dhucpackage;
-
-    &dhsection;
-  </refmeta>
-  <refnamediv>
-    <refname>&dhpackage;</refname>
-
-    <refpurpose>program to do something</refpurpose>
-  </refnamediv>
-  <refsynopsisdiv>
-    <cmdsynopsis>
-      <command>&dhpackage;</command>
-
-      <arg><option>-e <replaceable>this</replaceable></option></arg>
-
-      <arg><option>--example <replaceable>that</replaceable></option></arg>
-    </cmdsynopsis>
-  </refsynopsisdiv>
-  <refsect1>
-    <title>DESCRIPTION</title>
-
-    <para>This manual page documents briefly the
-      <command>&dhpackage;</command> and <command>bar</command>
-      commands.</para>
-
-    <para>This manual page was written for the &debian; distribution
-      because the original program does not have a manual page.
-      Instead, it has documentation in the &gnu;
-      <application>Info</application> format; see below.</para>
-
-    <para><command>&dhpackage;</command> is a program that...</para>
-
-  </refsect1>
-  <refsect1>
-    <title>OPTIONS</title>
-
-    <para>These programs follow the usual GNU command line syntax,
-      with long options starting with two dashes (`-').  A summary of
-      options is included below.  For a complete description, see the
-      <application>Info</application> files.</para>
-
-    <variablelist>
-      <varlistentry>
-        <term><option>-h</option>
-          <option>--help</option>
-        </term>
-        <listitem>
-          <para>Show summary of options.</para>
-        </listitem>
-      </varlistentry>
-      <varlistentry>
-        <term><option>-v</option>
-          <option>--version</option>
-        </term>
-        <listitem>
-          <para>Show version of program.</para>
-        </listitem>
-      </varlistentry>
-    </variablelist>
-  </refsect1>
-  <refsect1>
-    <title>SEE ALSO</title>
-
-    <para>bar (1), baz (1).</para>
-
-    <para>The programs are documented fully by <citetitle>The Rise and
-      Fall of a Fooish Bar</citetitle> available via the
-      <application>Info</application> system.</para>
-  </refsect1>
-  <refsect1>
-    <title>AUTHOR</title>
-
-    <para>This manual page was written by &dhusername; &dhemail; for
-      the &debian; system (but may be used by others).  Permission is
-      granted to copy, distribute and/or modify this document under
-      the terms of the <acronym>GNU</acronym> Free Documentation
-      License, Version 1.1 or any later version published by the Free
-      Software Foundation; with no Invariant Sections, no Front-Cover
-      Texts and no Back-Cover Texts.</para>
-
-  </refsect1>
-</refentry>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-omittag:t
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:2
-sgml-indent-data:t
-sgml-parent-document:nil
-sgml-default-dtd-file:nil
-sgml-exposed-tags:nil
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-End:
--->
-
-
diff --git a/losar/menu.ex b/losar/menu.ex
deleted file mode 100644
index 677326f..0000000
--- a/losar/menu.ex
+++ /dev/null
@@ -1,2 +0,0 @@
-?package(scottfree):needs=X11|text|vc|wm section=Apps/see-menu-manual\
-  title="scottfree" command="/usr/bin/scottfree"
diff --git a/losar/postinst.ex b/losar/postinst.ex
deleted file mode 100644
index 70eeea6..0000000
--- a/losar/postinst.ex
+++ /dev/null
@@ -1,48 +0,0 @@
-#! /bin/sh
-# postinst script for scottfree
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-# quoting from the policy:
-#     Any necessary prompting should almost always be confined to the
-#     post-installation script, and should be protected with a conditional
-#     so that unnecessary prompting doesn't happen if a package's
-#     installation fails and the `postinst' is called with `abort-upgrade',
-#     `abort-remove' or `abort-deconfigure'.
-
-case "$1" in
-    configure)
-
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/losar/postrm.ex b/losar/postrm.ex
deleted file mode 100644
index 7c3bdf6..0000000
--- a/losar/postrm.ex
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/sh
-# postrm script for scottfree
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-       purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
-
-        ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/losar/preinst.ex b/losar/preinst.ex
deleted file mode 100644
index 3d61c89..0000000
--- a/losar/preinst.ex
+++ /dev/null
@@ -1,44 +0,0 @@
-#! /bin/sh
-# preinst script for scottfree
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <new-preinst> `install'
-#        * <new-preinst> `install' <old-version>
-#        * <new-preinst> `upgrade' <old-version>
-#        * <old-preinst> `abort-upgrade' <new-version>
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    install|upgrade)
-#        if [ "$1" = "upgrade" ]
-#        then
-#            start-stop-daemon --stop --quiet --oknodo  \
-#                --pidfile /var/run/scottfree.pid  \
-#                --exec /usr/sbin/scottfree 2>/dev/null || true
-#        fi
-    ;;
-
-    abort-upgrade)
-    ;;
-
-    *)
-        echo "preinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/losar/prerm.ex b/losar/prerm.ex
deleted file mode 100644
index db99c56..0000000
--- a/losar/prerm.ex
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/sh
-# prerm script for scottfree
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <prerm> `remove'
-#        * <old-prerm> `upgrade' <new-version>
-#        * <new-prerm> `failed-upgrade' <old-version>
-#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-#        * <deconfigured's-prerm> `deconfigure' `in-favour'
-#          <package-being-installed> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    remove|upgrade|deconfigure)
-#       install-info --quiet --remove /usr/info/scottfree.info.gz
-        ;;
-    failed-upgrade)
-        ;;
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/losar/rules b/losar/rules
deleted file mode 100644
index 30b0e95..0000000
--- a/losar/rules
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/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 compatibility version to use.
-export DH_COMPAT=3
-
-
-
-ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -g
-endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-	INSTALL_PROGRAM += -s
-endif
-
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-
-	touch configure-stamp
-
-
-build: build-stamp
-
-build-stamp: configure-stamp 
-	dh_testdir
-
-	# Add here commands to compile the package.
-	$(MAKE)
-	#/usr/bin/docbook-to-man debian/scottfree.sgml > scottfree.1
-
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
-
-	dh_clean
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-
-	# Add here commands to install the package into debian/scottfree.
-	$(MAKE) install DESTDIR=$(CURDIR)/debian/scottfree
-
-
-# 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_testdir
-	dh_testroot
-#	dh_installdebconf	
-	dh_installdocs
-	dh_installexamples
-	dh_installmenu
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-	dh_installcron
-	dh_installman
-	dh_installinfo
-#	dh_undocumented
-	dh_installchangelogs 
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	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 configure
diff --git a/losar/watch.ex b/losar/watch.ex
deleted file mode 100644
index e623325..0000000
--- a/losar/watch.ex
+++ /dev/null
@@ -1,6 +0,0 @@
-# Example watch control file for uscan
-# Rename this file to "watch" and then you can run the "uscan" command
-# to check for upstream updates and more.
-# Site		Directory		Pattern			Version	Script
-version=2
-sunsite.unc.edu	/pub/Linux/Incoming	scottfree-(.*)\.tar\.gz	debian	uupdate

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



More information about the Pkg-games-commits mailing list