@@ -0,0 +1,1853 @@
+--- libuser-utmp-perl-1.8.orig/debian/README.Debian
++++ libuser-utmp-perl-1.8/debian/README.Debian
+@@ -0,0 +1,6 @@
++libuser-utmp-perl for Debian
++----------------------------
++
++<possible notes regarding this package - if none, delete this file>
++
++ -- root <root@sargedebbuild>, Fri, 28 Dec 2007 12:49:25 +0000
+--- libuser-utmp-perl-1.8.orig/debian/changelog
++++ libuser-utmp-perl-1.8/debian/changelog
+@@ -0,0 +1,6 @@
++libuser-utmp-perl (1.8-1) unstable; urgency=low
++
++ * Initial Release.
++
++ -- Carsten Schoene <cs@linux-administrator.com> Fri, 28 Dec 2007 10:21:57 +0200
++
+--- libuser-utmp-perl-1.8.orig/debian/compat
++++ libuser-utmp-perl-1.8/debian/compat
+@@ -0,0 +1 @@
++4
+--- libuser-utmp-perl-1.8.orig/debian/conffiles.ex
++++ libuser-utmp-perl-1.8/debian/conffiles.ex
+@@ -0,0 +1,7 @@
++#
++# 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/libuser-utmp-perl/libuser-utmp-perl.conf
+--- libuser-utmp-perl-1.8.orig/debian/cron.d.ex
++++ libuser-utmp-perl-1.8/debian/cron.d.ex
+@@ -0,0 +1,4 @@
++#
++# Regular cron jobs for the libuser-utmp-perl package
++#
++0 4 * * * root libuser-utmp-perl_maintenance
+--- libuser-utmp-perl-1.8.orig/debian/dirs
++++ libuser-utmp-perl-1.8/debian/dirs
+@@ -0,0 +1,2 @@
++usr/bin
++usr/sbin
+--- libuser-utmp-perl-1.8.orig/debian/emacsen-install.ex
++++ libuser-utmp-perl-1.8/debian/emacsen-install.ex
+@@ -0,0 +1,45 @@
++#! /bin/sh -e
++# /usr/lib/emacsen-common/packages/install/libuser-utmp-perl
++
++# Written by Jim Van Zandt <jrv@vanzandt.mv.com>, borrowing heavily
++# from the install scripts for gettext by Santiago Vila
++# <sanvila@ctv.es> and octave by Dirk Eddelbuettel <edd@debian.org>.
++
++FLAVOR=$1
++PACKAGE=libuser-utmp-perl
++
++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
+--- libuser-utmp-perl-1.8.orig/debian/emacsen-remove.ex
++++ libuser-utmp-perl-1.8/debian/emacsen-remove.ex
+@@ -0,0 +1,15 @@
++#!/bin/sh -e
++# /usr/lib/emacsen-common/packages/remove/libuser-utmp-perl
++
++FLAVOR=$1
++PACKAGE=libuser-utmp-perl
++
++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/libuser-utmp-perl.info.gz
++ fi
++
++ echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
++ rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
++fi
+--- libuser-utmp-perl-1.8.orig/debian/emacsen-startup.ex
++++ libuser-utmp-perl-1.8/debian/emacsen-startup.ex
+@@ -0,0 +1,19 @@
++;; -*-emacs-lisp-*-
++;;
++;; Emacs startup file for the Debian libuser-utmp-perl package
++;;
++;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
++;; Modified by Dirk Eddelbuettel <edd@debian.org>
++;; Adapted for dh-make by Jim Van Zandt <jrv@vanzandt.mv.com>
++
++;; The libuser-utmp-perl 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:
++(let ((package-dir (concat "/usr/share/"
++ (symbol-name flavor)
++ "/site-lisp/libuser-utmp-perl")))
++ (when (file-directory-p package-dir)
++ (setq load-path (cons package-dir load-path))))
++
+--- libuser-utmp-perl-1.8.orig/debian/init.d.ex
++++ libuser-utmp-perl-1.8/debian/init.d.ex
+@@ -0,0 +1,74 @@
++#! /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@cistron.nl>.
++# Modified for Debian
++# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
++#
++# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl
++#
++
++PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
++DAEMON=/usr/sbin/libuser-utmp-perl
++NAME=libuser-utmp-perl
++DESC=libuser-utmp-perl
++
++test -x $DAEMON || exit 0
++
++# Include libuser-utmp-perl defaults if available
++if [ -f /etc/default/libuser-utmp-perl ] ; then
++ . /etc/default/libuser-utmp-perl
++fi
++
++set -e
++
++case "$1" in
++ start)
++ echo -n "Starting $DESC: "
++ start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
++ --exec $DAEMON -- $DAEMON_OPTS
++ echo "$NAME."
++ ;;
++ stop)
++ echo -n "Stopping $DESC: "
++ start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
++ --exec $DAEMON
++ echo "$NAME."
++ ;;
++ #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: "
++ 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 -- $DAEMON_OPTS
++ echo "$NAME."
|