rev 3814 - kde-extras/kaffeine/trunk/debian

Fathi Boudra fboudra-guest at costa.debian.org
Wed May 24 12:58:12 UTC 2006


Author: fboudra-guest
Date: 2006-05-24 12:58:11 +0000 (Wed, 24 May 2006)
New Revision: 3814

Added:
   kde-extras/kaffeine/trunk/debian/install-css.sh
Modified:
   kde-extras/kaffeine/trunk/debian/README.Debian
   kde-extras/kaffeine/trunk/debian/changelog
   kde-extras/kaffeine/trunk/debian/rules
Log:
Added informations about css and region setting in README.Debian; Added install-css script taken from libdvdread3 package

Modified: kde-extras/kaffeine/trunk/debian/README.Debian
===================================================================
--- kde-extras/kaffeine/trunk/debian/README.Debian	2006-05-24 11:45:10 UTC (rev 3813)
+++ kde-extras/kaffeine/trunk/debian/README.Debian	2006-05-24 12:58:11 UTC (rev 3814)
@@ -4,4 +4,27 @@
 The Gstreamer support is experimental and has been disabled.
 Due to patents problems, the Lame Mp3 encoding plugin isn't available.
 
+CSS issue
+=========
+
+CSS is sold by the DVD industry as a "copy protection", though it's more of a
+"view protection" as it makes DVDs unviewable with unlicensed players. To play
+these DVDs, a library is needed to decode them, libdvdcss. Due to possible
+legal issues, Debian cannot distribute libdvdcss, but it is available on other
+places on the internet. If it is legal in your country to use css, you can run
+
+        /usr/share/doc/kaffeine/install-css.sh
+
+at any time to download and install it.
+
+Thanks to Mikael Hedin <micce at debian.org> for the script.
+
+Region issue
+============
+
+With a brand new DVD drive, it is necessary to set (at least once) the
+region/zone setting, allowing it to decrypt the DVD's sold in this geographical
+zone. Be careful, hardware vendors often limit the number of such
+modifications. You can use regionset utility to achieve this.
+
  -- Fathi Boudra <fboudra at free.fr>, Mon, 27 Mar 2006 09:44:19 +0200

Modified: kde-extras/kaffeine/trunk/debian/changelog
===================================================================
--- kde-extras/kaffeine/trunk/debian/changelog	2006-05-24 11:45:10 UTC (rev 3813)
+++ kde-extras/kaffeine/trunk/debian/changelog	2006-05-24 12:58:11 UTC (rev 3814)
@@ -10,6 +10,8 @@
     * Playlist: autoselect subtitle when unique
   * Update copyright file
   * Added hdparm to kaffeine Depends (Closes: #289895)
+  * Added informations about css and region setting in README.Debian
+  * Added install-css script taken from libdvdread3 package
 
  -- Fathi Boudra <fboudra at free.fr>  Mon, 24 Apr 2006 18:03:17 +0200
 

Added: kde-extras/kaffeine/trunk/debian/install-css.sh
===================================================================
--- kde-extras/kaffeine/trunk/debian/install-css.sh	2006-05-24 11:45:10 UTC (rev 3813)
+++ kde-extras/kaffeine/trunk/debian/install-css.sh	2006-05-24 12:58:11 UTC (rev 3814)
@@ -0,0 +1,46 @@
+#!/bin/sh
+
+set -e
+
+site=http://www.dtek.chalmers.se/groups/dvd/deb/
+arch=`dpkg --print-installation-architecture`
+
+soname=2
+uversion=1.2.5
+available="alpha amd64 hppa i386 ia64 powerpc s390 sparc"
+version=${uversion}-1
+
+if [ ! -e /usr/bin/wget ]
+then
+    echo "Install wget and run this script again"
+    exit 1
+fi
+
+for a in $available; do
+    if [  "$a" = "$arch" ]; then
+	wget ${site}libdvdcss${soname}_${version}_${arch}.deb -O /tmp/libdvdcss.deb
+	dpkg -i /tmp/libdvdcss.deb
+	exit $?
+    fi
+done
+
+echo "No binary deb available.  Will try to build and install it."
+echo "You need to have debhelper, dpkg-dev and fakeroot installed."
+echo "If not, interrupt now, install them and rerun this script."
+echo ""
+echo "This is higly experimental, look out for what happens below."
+echo "If you want to stop, interrupt now (control-c), else press"
+echo "return to proceed"
+read dum
+
+mkdir -p /tmp/dvd
+cd /tmp/dvd
+wget ${site}libdvdcss_${uversion}.orig.tar.gz
+wget ${site}libdvdcss_${version}.diff.gz
+wget ${site}libdvdcss_${version}.dsc
+dpkg-source -x libdvdcss_${version}.dsc
+cd libdvdcss-${uversion}
+fakeroot ./debian/rules binary
+echo "Any problems?  Interrupt now (control-c) and try to fix"
+echo "manually, else go on and install (return)."
+dpkg -i ../libdvdcss${soname}_${version}_${arch}.deb


Property changes on: kde-extras/kaffeine/trunk/debian/install-css.sh
___________________________________________________________________
Name: svn:executable
   + *

Modified: kde-extras/kaffeine/trunk/debian/rules
===================================================================
--- kde-extras/kaffeine/trunk/debian/rules	2006-05-24 11:45:10 UTC (rev 3813)
+++ kde-extras/kaffeine/trunk/debian/rules	2006-05-24 12:58:11 UTC (rev 3814)
@@ -10,4 +10,5 @@
 install/kaffeine::
 	install -D -p -m0644 debian/kaffeine.xpm debian/kaffeine/usr/share/pixmaps/kaffeine.xpm
 	install -D -p -m0644 debian/kaffeine.lintian-overrides debian/kaffeine/usr/share/lintian/overrides/kaffeine
+	install -D -p -m0755 debian/install-css.sh debian/kaffeine/usr/share/doc/kaffeine/install-css.sh
 




More information about the pkg-kde-commits mailing list