summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2005-09-12 12:25:08 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2005-09-12 12:25:08 +0000
commit10d5758334e3b69337232f80c852bb35acd198ce (patch)
tree1a9962d86d67f41a07e7cecc11878440e9785f6f /media-tv
parentMark 1.2.2 stable on alpha (diff)
downloadgentoo-2-10d5758334e3b69337232f80c852bb35acd198ce.tar.gz
gentoo-2-10d5758334e3b69337232f80c852bb35acd198ce.tar.bz2
gentoo-2-10d5758334e3b69337232f80c852bb35acd198ce.zip
Added bugfix to avoid strange message at startup.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/gentoo-vdr-scripts/ChangeLog7
-rw-r--r--media-tv/gentoo-vdr-scripts/Manifest3
-rw-r--r--media-tv/gentoo-vdr-scripts/files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff35
-rw-r--r--media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild5
4 files changed, 47 insertions, 3 deletions
diff --git a/media-tv/gentoo-vdr-scripts/ChangeLog b/media-tv/gentoo-vdr-scripts/ChangeLog
index 5013b16ff651..7f3594b041cb 100644
--- a/media-tv/gentoo-vdr-scripts/ChangeLog
+++ b/media-tv/gentoo-vdr-scripts/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-tv/gentoo-vdr-scripts
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/ChangeLog,v 1.7 2005/09/12 12:00:30 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/ChangeLog,v 1.8 2005/09/12 12:25:08 zzam Exp $
+
+ 12 Sep 2005; Matthias Schwarzott <zzam@gentoo.org>
+ +files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff,
+ gentoo-vdr-scripts-0.1_alpha4.ebuild:
+ Added bugfix to avoid strange message at startup.
*gentoo-vdr-scripts-0.1_alpha4 (12 Sep 2005)
diff --git a/media-tv/gentoo-vdr-scripts/Manifest b/media-tv/gentoo-vdr-scripts/Manifest
index 31e768ea40a5..7148e5258d84 100644
--- a/media-tv/gentoo-vdr-scripts/Manifest
+++ b/media-tv/gentoo-vdr-scripts/Manifest
@@ -1,5 +1,5 @@
MD5 590599425879499bd717cc0dbe9088f0 gentoo-vdr-scripts-0.1_alpha2.ebuild 769
-MD5 eb5a2ecea0e85f258e56bec81228dd2c gentoo-vdr-scripts-0.1_alpha4.ebuild 1004
+MD5 36da935e2c2bf162ca4a3f0ac52c323d gentoo-vdr-scripts-0.1_alpha4.ebuild 1062
MD5 3c4e8b80c6f19ef854561793e90cadb7 gentoo-vdr-scripts-0.1_alpha1.ebuild 809
MD5 97d09d2643e491e62f8d298fbba1a58b gentoo-vdr-scripts-0.1_alpha3.ebuild 807
MD5 fff138e30de04d4f80cced7935aa82cf ChangeLog 1513
@@ -9,3 +9,4 @@ MD5 b8fba7f5ebd2c87f79834578f56c2a31 files/digest-gentoo-vdr-scripts-0.1_alpha1
MD5 61fda90329ee28df40ec5ee580da49d3 files/digest-gentoo-vdr-scripts-0.1_alpha2 76
MD5 29ca770b4dbe64180db2b069b2d001bd files/digest-gentoo-vdr-scripts-0.1_alpha3 77
MD5 624ab55224018bedcb517fe98662abab files/digest-gentoo-vdr-scripts-0.1_alpha4 77
+MD5 87da33b96f1f2cd1a018545f67f8d0e6 files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff 1275
diff --git a/media-tv/gentoo-vdr-scripts/files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff b/media-tv/gentoo-vdr-scripts/files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff
new file mode 100644
index 000000000000..1fcd1f0f2fa0
--- /dev/null
+++ b/media-tv/gentoo-vdr-scripts/files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff
@@ -0,0 +1,35 @@
+Index: ChangeLog
+===================================================================
+--- ChangeLog (Revision 18)
++++ ChangeLog (Arbeitskopie)
+@@ -1,5 +1,8 @@
+ # ChangeLog for gentoo-vdr-scripts
+
++ 12 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
++ Bugfixed parameter handling.
++
+ *gentoo-vdr-scripts-0.1_alpha4 (12 Sep 2005)
+
+ 11 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
+Index: usr/lib/vdr/rcscript/pre-start-30-parameter.sh
+===================================================================
+--- usr/lib/vdr/rcscript/pre-start-30-parameter.sh (Revision 18)
++++ usr/lib/vdr/rcscript/pre-start-30-parameter.sh (Arbeitskopie)
+@@ -6,7 +6,7 @@
+ [[ -n "${DEVICE}" ]] && for i in ${DEVICE}; do add_param "--device=${i}"; done
+ [[ -n "${EPGFILE}" ]] && add_param "--epgfile=${EPGFILE}"
+ [[ -n "${LOG}" ]] && add_param "--log=${LOG}"
+- [[ -n "${VIDEO}" ]] && VIDEO="/var/vdr/video"
++ [[ -z "${VIDEO}" ]] && VIDEO="/var/vdr/video"
+ if [[ ! -d "${VIDEO}" ]]; then
+ mkdir -p "${VIDEO}"
+ chown vdr:vdr "${VIDEO}"
+@@ -31,7 +31,7 @@
+ esac
+ fi
+
+- if [[ -n "${CAP_VFAT_RUNTIME_PARAM}" ]] && [[ -n "${VFAT_FILENAMES}" ]]; then
++ if [[ -n "${CAP_VFAT_RUNTIME_PARAM}" ]] && [[ "${VFAT_FILENAMES}" == "yes" ]]; then
+ add_param "--vfat"
+ fi
+ }
diff --git a/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild
index e18cac32cd70..1d1d3350404d 100644
--- a/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild
+++ b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild,v 1.1 2005/09/12 12:00:31 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha4.ebuild,v 1.2 2005/09/12 12:25:08 zzam Exp $
inherit eutils
@@ -18,6 +18,9 @@ S=${WORKDIR}/${PN}-${PV}
src_unpack() {
unpack "${A}"
+
+ cd ${S}
+ epatch "${FILESDIR}/${P}-video-parameter.diff"
}
src_install() {