r1492 - in vdr: . vdr-plugin-playlist vdr-plugin-playlist/branches vdr-plugin-playlist/branches/upstream vdr-plugin-playlist/branches/upstream/current vdr-plugin-playlist/branches/upstream/current/debian

Thomas Günther tom-guest at costa.debian.org
Thu Nov 24 23:13:31 UTC 2005


Author: tom-guest
Date: 2005-11-24 23:13:30 +0000 (Thu, 24 Nov 2005)
New Revision: 1492

Added:
   vdr/vdr-plugin-playlist/
   vdr/vdr-plugin-playlist/branches/
   vdr/vdr-plugin-playlist/branches/upstream/
   vdr/vdr-plugin-playlist/branches/upstream/current/
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/changelog
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/control
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/copyright
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/dirs
   vdr/vdr-plugin-playlist/branches/upstream/current/debian/rules
   vdr/vdr-plugin-playlist/tags/
Log:
[svn-inject] Installing original source of vdr-plugin-playlist

Added: vdr/vdr-plugin-playlist/branches/upstream/current/debian/changelog
===================================================================
--- vdr/vdr-plugin-playlist/branches/upstream/current/debian/changelog	2005-11-20 14:27:01 UTC (rev 1491)
+++ vdr/vdr-plugin-playlist/branches/upstream/current/debian/changelog	2005-11-24 23:13:30 UTC (rev 1492)
@@ -0,0 +1,11 @@
+vdr-plugin-playlist (0.0.2-1) unstable; urgency=low
+
+  * Bug fixes
+  - 
+
+ -- Hardy Flor <HFlor at gmx.de>  Fri, 08 Okt 2004 02:34:00 +0200
+vdr-plugin-playlist (0.0.1-1) unstable; urgency=low
+
+  * Initial revision
+
+ -- Hardy Flor <HFlor at gmx.de>  Thu, 23 Sep 2004 23:42:32 +0200

Added: vdr/vdr-plugin-playlist/branches/upstream/current/debian/control
===================================================================
--- vdr/vdr-plugin-playlist/branches/upstream/current/debian/control	2005-11-20 14:27:01 UTC (rev 1491)
+++ vdr/vdr-plugin-playlist/branches/upstream/current/debian/control	2005-11-24 23:13:30 UTC (rev 1492)
@@ -0,0 +1,12 @@
+Source: vdr-plugin-playlist
+Section: misc
+Priority: extra
+Maintainer: Hardy Flor <HFlor at gmx.de>
+Build-Depends: debhelper (>> 3.0.0), vdr-dev (>= 1.2.6-5)
+Standards-Version: 3.5.2
+
+Package: vdr-plugin-playlist
+Architecture: i386
+Depends: ${shlibs:Depends}, vdr (>= 1.2.6-5)
+Description: Plugin for VDR to display playlist for recordings
+ Patchlevel: ${patchlevel}
\ No newline at end of file

Added: vdr/vdr-plugin-playlist/branches/upstream/current/debian/copyright
===================================================================
--- vdr/vdr-plugin-playlist/branches/upstream/current/debian/copyright	2005-11-20 14:27:01 UTC (rev 1491)
+++ vdr/vdr-plugin-playlist/branches/upstream/current/debian/copyright	2005-11-24 23:13:30 UTC (rev 1492)
@@ -0,0 +1,8 @@
+This package was debianized by Hardy Flor on Thu, 23 Sep 2004 23:42:32 +0200.
+
+Copyright:
+
+       You are free to distribute this software under the terms of
+       the GNU General Public License.
+       On Debian systems, the complete text of the GNU General Public
+       License can be found in /usr/share/common-licenses/GPL file.

Added: vdr/vdr-plugin-playlist/branches/upstream/current/debian/dirs
===================================================================
--- vdr/vdr-plugin-playlist/branches/upstream/current/debian/dirs	2005-11-20 14:27:01 UTC (rev 1491)
+++ vdr/vdr-plugin-playlist/branches/upstream/current/debian/dirs	2005-11-24 23:13:30 UTC (rev 1492)
@@ -0,0 +1 @@
+usr/lib/vdr/plugins

Added: vdr/vdr-plugin-playlist/branches/upstream/current/debian/rules
===================================================================
--- vdr/vdr-plugin-playlist/branches/upstream/current/debian/rules	2005-11-20 14:27:01 UTC (rev 1491)
+++ vdr/vdr-plugin-playlist/branches/upstream/current/debian/rules	2005-11-24 23:13:30 UTC (rev 1492)
@@ -0,0 +1,79 @@
+#!/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
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp
+	dh_testdir
+
+	$(MAKE) all DVBDIR=/usr/include VDRDIR=/usr/include/vdr LIBDIR=. REMOTE=lirc
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	rm -f debian/vdr-plugin-playlist.substvars
+	rm -f libvdr-*.so*
+	make clean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	cp libvdr-playlist*.so.* $(CURDIR)/debian/vdr-plugin-playlist/usr/lib/vdr/plugins/
+
+
+# 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_installdocs
+	dh_installexamples
+	dh_installmenu
+	dh_installcron
+	dh_installman
+	dh_installinfo
+	dh_installchangelogs HISTORY
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	cd debian; mv vdr-plugin-playlist.substvars substvars.old; cat /usr/include/vdr/patchlevel substvars.old > vdr-plugin-playlist.substvars; rm -f substvars.old
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: vdr/vdr-plugin-playlist/branches/upstream/current/debian/rules
___________________________________________________________________
Name: svn:executable
   + 




More information about the pkg-vdr-dvb-changes mailing list