summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorAndreas Auras <yak54@gmx.net>2010-02-08 16:53:24 +0100
committerAndreas Auras <yak54@gmx.net>2010-02-08 16:53:24 +0100
commit82687e40db5d89aaff644fe7a34ae3c058b80255 (patch)
tree0df3b9e872779a4e4f98d48e67ac72d34e658eb6 /debian
downloadxine-lib-atmolight-82687e40db5d89aaff644fe7a34ae3c058b80255.tar.gz
xine-lib-atmolight-82687e40db5d89aaff644fe7a34ae3c058b80255.tar.bz2
Import of unmanaged version 0.3 of plugin
Signed-off-by: Andreas Auras <yak54@gmx.net>
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog25
-rw-r--r--debian/compat1
-rw-r--r--debian/control14
-rw-r--r--debian/copyright26
-rw-r--r--debian/docs1
-rw-r--r--debian/rules91
6 files changed, 158 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ce329aa
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,25 @@
+libxine-atmo-plugin (0.3-0) karmic; urgency=low
+
+ * New upstream version 0.3
+ * added dependency for libusb-1.0
+ * control file fixed so that compilation against libxine1 or libxine2 is possible
+
+ -- durchflieger <yak54@gmx.net> Thu, 04 Feb 2010 11:49:15 +0100
+
+libxine-atmo-plugin (0.2-3tvt1) karmic; urgency=low
+
+ * changed debian/control+copyright
+
+ -- Holger Schvestka <hotzenplotz5@gmx.de> Mon, 28 Dec 2009 21:09:18 +0100
+
+libxine-atmo-plugin (0.2-2tvt1) karmic; urgency=low
+
+ * recompile with -fPIC
+
+ -- Gerald Dachs <gda@dachsweb.de> Mon, 28 Dec 2009 12:45:24 +0100
+
+libxine-atmo-plugin (0.2-1tvt1) karmic; urgency=low
+
+ * Initial release
+
+ -- Gerald Dachs <gda@dachsweb.de> Mon, 28 Dec 2009 00:08:17 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..59bc583
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: libxine-atmo-plugin
+Section: libs
+Priority: extra
+Maintainer: Gerald Dachs <gda@dachsweb.de>
+Build-Depends: debhelper (>= 7), libxine-dev, libusb-1.0-0-dev
+Standards-Version: 3.8.3
+Homepage: http://www.vdrportal.de/board/thread.php?threadid=88205&hilightuser=18772
+
+Package: libxine-atmo-plugin
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: xine post plugin needed for atmolight controllers
+ The "atmo" post plugin analyze the video picture and generates
+ output data for so called "atmolight" controllers.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..71ac9ee
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,26 @@
+This package was debianized by Gerald Dachs <Gerald Dachs <gda@dachsweb.de>> on
+Mon, 28 Dec 2009 00:08:17 +0100.
+
+ It was downloaded from http://www.vdrportal.de/board/thread.php?threadid=88205&hilightuser=18772
+
+Upstream Author:
+
+ Andreas Auras <yak54@gmx.net>
+
+Copyright:
+
+ (C) 2009 Andreas Auras
+
+License:
+
+ and is licensed under the GPL version 2,
+ see `/usr/share/common-licenses/GPL-2'.
+
+The Debian packaging is:
+
+ Copyright (C) 2009 Gerald Dachs <Gerald Dachs <gda@dachsweb.de>>
+
+ and is licensed under the GPL version 2,
+ see `/usr/share/common-licenses/GPL-2'.
+
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100644
index 0000000..75b5e91
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,91 @@
+#!/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
+
+CFLAGS+=-O3 -fPIC
+XINEPLUGINDIR = $(shell pkg-config --variable=plugindir libxine)
+
+
+
+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)
+ #docbook-to-man debian/atmo.sgml > atmo.1
+
+ touch $@
+
+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_prep
+ dh_installdirs
+
+ # Add here commands to install the package into debian/atmo.
+ dh_install xineplug_post_atmo.so $(XINEPLUGINDIR)/post/
+
+# Build architecture-independent files here.
+binary-indep: install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: 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 configure