--- vdr-plugin-fritzbox-0.0.7.orig/debian/watch +++ vdr-plugin-fritzbox-0.0.7/debian/watch @@ -0,0 +1,5 @@ +version=3 + +opts=filenamemangle=s/.*=(.*)/$1/ \ + http://www.joachim-wilke.de/show.htm?alias=vdr-fritz .*file=vdr-fritzbox-(.*)\.tgz + \ No newline at end of file --- vdr-plugin-fritzbox-0.0.7.orig/debian/docs +++ vdr-plugin-fritzbox-0.0.7/debian/docs @@ -0,0 +1 @@ +README --- vdr-plugin-fritzbox-0.0.7.orig/debian/control +++ vdr-plugin-fritzbox-0.0.7/debian/control @@ -0,0 +1,18 @@ +Source: vdr-plugin-fritzbox +Section: misc +Priority: extra +Maintainer: Debian VDR Team +Uploaders: Thomas Schmidt , Tobias Grimm , Thomas Günther +Build-Depends: debhelper (>= 5), vdr-dev (>= 1.4.6-2ctvdr1), gettext +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/pkg-vdr-dvb/vdr/vdr-plugin-fritzbox/trunk/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-fritzbox/trunk/ + +Package: vdr-plugin-fritzbox +Architecture: any +Depends: ${shlibs:Depends}, ${vdr:Depends} +Description: VDR plugin to access certain functions of an AVM Fritz!Box + This VDR plugin connects to the Fritz!Box to inform you about incoming + calls. As an option, the plugin can automatically mute VDR when a call + comes in. +XB-VDR-Patchlevel: ${vdr:Patchlevel} --- vdr-plugin-fritzbox-0.0.7.orig/debian/compat +++ vdr-plugin-fritzbox-0.0.7/debian/compat @@ -0,0 +1 @@ +5 --- vdr-plugin-fritzbox-0.0.7.orig/debian/changelog +++ vdr-plugin-fritzbox-0.0.7/debian/changelog @@ -0,0 +1,65 @@ +vdr-plugin-fritzbox (0.0.7-2) unstable; urgency=low + + * First upload to the official archive (closes: #423253) + + -- Thomas Schmidt Fri, 05 Oct 2007 22:40:23 +0200 + +vdr-plugin-fritzbox (0.0.7-1) unstable; urgency=low + + * New upstream release + * Added gettext to Build-Depends + * Added installation of locale files (if VDR >= 1.5.7) + * Fixed debian-rules-ignores-make-clean-error + * Updated debian/copyright + + -- Thomas Günther Sun, 30 Sep 2007 14:17:20 +0200 + +vdr-plugin-fritzbox (0.0.5-4) unstable; urgency=low + + * Release for vdrdevel 1.5.9 + + -- Thomas Günther Tue, 28 Aug 2007 01:01:03 +0200 + +vdr-plugin-fritzbox (0.0.5-3) unstable; urgency=low + + * Release for vdrdevel 1.5.8 + + -- Thomas Günther Thu, 23 Aug 2007 01:08:59 +0200 + +vdr-plugin-fritzbox (0.0.5-2) unstable; urgency=low + + * Release for vdrdevel 1.5.6 + + -- Thomas Günther Tue, 14 Aug 2007 01:46:13 +0200 + +vdr-plugin-fritzbox (0.0.5-1) unstable; urgency=low + + * New upstream release + + -- Tobias Grimm Sun, 29 Jul 2007 11:31:51 +0200 + +vdr-plugin-fritzbox (0.0.4-2) unstable; urgency=low + + * Release for vdrdevel 1.5.5 + + -- Thomas Günther Wed, 27 Jun 2007 23:02:34 +0200 + +vdr-plugin-fritzbox (0.0.4-1) unstable; urgency=low + + * New upstream release + + -- Tobias Grimm Tue, 26 Jun 2007 00:46:12 +0200 + +vdr-plugin-fritzbox (0.0.3-1) unstable; urgency=low + + * New upstream release + * Added XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control + + -- Tobias Grimm Sun, 10 Jun 2007 16:19:24 +0200 + +vdr-plugin-fritzbox (0.0.2-1) unstable; urgency=low + + * Initial release + + -- Tobias Grimm Thu, 10 May 2007 22:28:42 +0200 + --- vdr-plugin-fritzbox-0.0.7.orig/debian/install +++ vdr-plugin-fritzbox-0.0.7/debian/install @@ -0,0 +1 @@ +libvdr-fritzbox.so.* usr/lib/vdr/plugins/ --- vdr-plugin-fritzbox-0.0.7.orig/debian/rules +++ vdr-plugin-fritzbox-0.0.7/debian/rules @@ -0,0 +1,96 @@ +#! /bin/sh /usr/share/vdr-dev/make-special-vdr.sh +# 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 + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +# To use dpatch uncomment the following line and set Build-Depends to dpatch +# DPATCH=yes + +ifdef DPATCH +include /usr/share/dpatch/dpatch.make +else +patch: +patch-stamp: +unpatch: +endif + +MAKE_OPTIONS = DVBDIR=/usr VDRDIR=/usr/include/vdr LIBDIR=. LOCALEDIR=locale + +configure: configure-stamp +configure-stamp: patch-stamp + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) all $(MAKE_OPTIONS) + touch build-stamp + +clean: clean-patched unpatch +clean-patched: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + $(MAKE) -o .dependencies clean $(MAKE_OPTIONS) + rm -f libvdr-*.so.* + rm -rf locale + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_install + [ ! -d locale ] || (mkdir debian/vdr-plugin-fritzbox/usr/share/ && \ + cp -r locale debian/vdr-plugin-fritzbox/usr/share/) + +# 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 HISTORY + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + sh /usr/share/vdr-dev/patchlevel.sh subst + sh /usr/share/vdr-dev/dependencies.sh + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure \ + clean-patched patch unpatch --- vdr-plugin-fritzbox-0.0.7.orig/debian/copyright +++ vdr-plugin-fritzbox-0.0.7/debian/copyright @@ -0,0 +1,39 @@ +Upstream Homepage: + http://www.joachim-wilke.de/vdr-fritz.htm + +Upstream Authors: + Joachim Wilke + Matthias Becker + +Debian Maintainers: + Tobias Grimm + Thomas Günther + Thomas Schmidt + +Copyright: + (C) 2007 Joachim Wilke, Matthias Becker + +Copyright (Debian packaging): + (C) 2007 Tobias Grimm, Thomas Günther, Thomas Schmidt + +License: + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + The complete text of the GNU General Public License can be found + in /usr/share/common-licenses/GPL on most Debian systems. + +License (Debian packaging): + The Debian packaging is licensed under the GPL, version 2 or any + later version, see /usr/share/common-licenses/GPL.