--- wiipdf-1.4.orig/debian/README.Debian +++ wiipdf-1.4/debian/README.Debian @@ -0,0 +1,11 @@ +wiipdf is a tiny tool to present a PDF using xpdf and your wiimote. +You start it by providing it the bluetooth ID of your wiimote (use +hcitool scan to get it) and the path to the PDF you want to present. +wiipdf then tries to connect to your wiimote (press buttons 1 and 2 +at the sime time on your wiimote to enter discoverable mode). As soon +as the connection is established (takes 3-4 seconds usually), wiipdf +launches xpdf with the given filename. You can now press A or B on +your wiimote to go forward one slide or go backward one slide. Pressing +the home button on your wiimote ends the presentation. Each keypress +is confirmed by a short rumble of your wiimote. + --- wiipdf-1.4.orig/debian/changelog +++ wiipdf-1.4/debian/changelog @@ -0,0 +1,62 @@ +wiipdf (1.4-2build1) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:50:27 +0000 + +wiipdf (1.4-2) unstable; urgency=low + + * Fix FTBFS by changing libcwiid1-dev to libcwiid-dev (Closes: #629787) + * Bump standards version to 3.9.2 + + -- Michael Stapelberg Tue, 30 Aug 2011 12:23:45 +0200 + +wiipdf (1.4-1) unstable; urgency=low + + * New upstream version (Closes: #556676) + * Bump standards version + + -- Michael Stapelberg Mon, 21 Dec 2009 23:43:23 +0100 + +wiipdf (1.3-1) unstable; urgency=low + + * Bugfix: Checking of returncode was wrong + * Set DM-Upload-Allowed flag + + -- Michael Stapelberg Tue, 16 Jun 2009 23:28:17 +0200 + +wiipdf (1.2-2) unstable; urgency=low + + * Correctly set dependencies (debhelper) + + -- Michael Stapelberg Fri, 20 Feb 2009 03:04:13 +0100 + +wiipdf (1.2-1) unstable; urgency=low + + * Returncode of system() is now checked (Closes: #511971) + + -- Michael Stapelberg Thu, 19 Feb 2009 01:46:46 +0100 + +wiipdf (1.1-1) unstable; urgency=low + + * Handling filenames with spaces works now + + -- Michael Stapelberg Mon, 08 Dec 2008 19:22:46 +0100 + +wiipdf (1.0-3) unstable; urgency=low + + * Add README.Debian with instructions + + -- Michael Stapelberg Mon, 22 Sep 2008 03:25:36 +0200 + +wiipdf (1.0-2) unstable; urgency=low + + * Closes: #500901 + + -- Michael Stapelberg Thu, 02 Oct 2008 15:23:07 +0200 + +wiipdf (1.0-1) unstable; urgency=low + + * First release + + -- Michael Stapelberg Sun, 21 Sep 2008 19:31:45 +0200 --- wiipdf-1.4.orig/debian/compat +++ wiipdf-1.4/debian/compat @@ -0,0 +1 @@ +5 --- wiipdf-1.4.orig/debian/control +++ wiipdf-1.4/debian/control @@ -0,0 +1,21 @@ +Source: wiipdf +Section: utils +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Michael Stapelberg +DM-Upload-Allowed: yes +Build-Depends: libcwiid-dev, debhelper (>= 5) +Standards-Version: 3.9.2 +Homepage: http://michael.stapelberg.de/wiipdf + +Package: wiipdf +Architecture: any +Priority: optional +Section: utils +Depends: ${shlibs:Depends}, ${misc:Depends}, libcwiid1, xpdf +Description: present a PDF file using your wiimote + wiipdf is a tiny tool to present a PDF using xpdf and your wiimote. + After providing it the bluetooth-ID of your wiimote it connects and + lets you use the A and B button to go one slide forward respectively + backward in your presentation. Each keypress is confirmed by a short + rumble of your wiimote. --- wiipdf-1.4.orig/debian/copyright +++ wiipdf-1.4/debian/copyright @@ -0,0 +1,29 @@ +This Debian package is based on a tarball downloaded from +http://michael.stapelberg.de/wiipdf + +Copyright: (C) 2008 Michael Stapelberg + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or other + materials provided with the distribution. + +* Neither the name of Michael Stapelberg, wiipdf nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. --- wiipdf-1.4.orig/debian/rules +++ wiipdf-1.4/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +config.status: configure + dh_testdir + touch $@ + + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/wiipdf + $(MAKE) DESTDIR=$(CURDIR)/debian/wiipdf/ install + + +# 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_installexamples +# dh_install +# dh_installmenu + dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python + dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install