diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /media-plugins/vdr-vcd | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'media-plugins/vdr-vcd')
| -rw-r--r-- | media-plugins/vdr-vcd/Manifest | 1 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/confd | 10 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/rc-addon.sh | 8 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.9_Control.patch | 56 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch | 17 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.9_gcc-6.patch | 24 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.9_vdr-1.7.2.diff | 17 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.9_xgettext.diff | 271 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/metadata.xml | 17 | ||||
| -rw-r--r-- | media-plugins/vdr-vcd/vdr-vcd-0.9-r5.ebuild | 31 |
10 files changed, 0 insertions, 452 deletions
diff --git a/media-plugins/vdr-vcd/Manifest b/media-plugins/vdr-vcd/Manifest deleted file mode 100644 index 7649b963bbc4..000000000000 --- a/media-plugins/vdr-vcd/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vdr-vcd-0.9.tgz 33687 BLAKE2B e3631e9556fa16351fe336fc71da0b7ed385b39ecef722a92a98648ffd8a0f0767531b92af8888ef408dc1d56860d17860fa24c7c18cfc62b91cb2de60977a01 SHA512 d1d58a5395877da38ee16f6b338e957781a4369497b9a3f92b80ce8b3577eb4a2387108d1da8889c3195b49c3b0f0e6baebc9c1868a35d7727de0c2b6e81469b diff --git a/media-plugins/vdr-vcd/files/confd b/media-plugins/vdr-vcd/files/confd deleted file mode 100644 index 4cd6e75a9936..000000000000 --- a/media-plugins/vdr-vcd/files/confd +++ /dev/null @@ -1,10 +0,0 @@ -# /etc/conf.d/vdr.vcd: - -# Config file for vdr plugin vcd - -#Device to read VCDs from -# allowed values: cdrom-device names -# default: VDR_CDREADER from /etc/conf.d/vdr.cd-dvd -# (or if file does not exist /dev/cdrom) -#VCD_DEVICE="/dev/cdrom" - diff --git a/media-plugins/vdr-vcd/files/rc-addon.sh b/media-plugins/vdr-vcd/files/rc-addon.sh deleted file mode 100644 index ba0bcca6e041..000000000000 --- a/media-plugins/vdr-vcd/files/rc-addon.sh +++ /dev/null @@ -1,8 +0,0 @@ -# plugin-startup-skript for vcd-plugin - -plugin_pre_vdr_start() { - [ -e /etc/conf.d/vdr.cd-dvd ] && . /etc/conf.d/vdr.cd-dvd - : ${VDR_CDREADER:=/dev/cdrom} - : ${VCD_DEVICE:=${VDR_CDREADER}} - add_plugin_param "--vcd ${VCD_DEVICE}" -} diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_Control.patch b/media-plugins/vdr-vcd/files/vdr-vcd-0.9_Control.patch deleted file mode 100644 index 085799717a84..000000000000 --- a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_Control.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff '--color=auto' -Naur vcd-0.9.orig/menucontrol.c vcd-0.9/menucontrol.c ---- vcd-0.9.orig/menucontrol.c 2025-09-27 15:32:52.262205083 +0200 -+++ vcd-0.9/menucontrol.c 2025-09-27 15:39:34.901524119 +0200 -@@ -56,7 +56,8 @@ - - void cMenuSpiControl::SetItem(int Spi, cVcd *Vcd) - { -- cControl *control = cControl::Control(); -+ cMutexLock MutexLock; -+ cControl *control = cControl::Control(MutexLock); - if (control && typeid(*control)==typeid(cMenuVcdControl)) - static_cast<cMenuVcdControl*>(control)->Stop(); - if (control && typeid(*control)==typeid(cMenuSpiControl) -@@ -146,7 +147,8 @@ - - void cMenuVcdControl::SetTrack(int Track, cVcd *Vcd) - { -- cControl *control = cControl::Control(); -+ cMutexLock MutexLock; -+ cControl *control = cControl::Control(MutexLock); - if (control && typeid(*control)==typeid(cMenuSpiControl)) - static_cast<cMenuSpiControl*>(control)->Stop(); - if (control && typeid(*control)==typeid(cMenuVcdControl) && -diff '--color=auto' -Naur vcd-0.9.orig/psdcontrol.c vcd-0.9/psdcontrol.c ---- vcd-0.9.orig/psdcontrol.c 2025-09-27 15:43:52.708831004 +0200 -+++ vcd-0.9/psdcontrol.c 2025-09-27 15:47:19.216149801 +0200 -@@ -100,7 +100,8 @@ - - void cPsdSpiControl::SetItem(int Spi, cVcd *Vcd, union psd_vcd *PsdVcd) - { -- cControl *control = cControl::Control(); -+ cMutexLock MutexLock; -+ cControl *control = cControl::Control(MutexLock); - if (control && typeid(*control)==typeid(cPsdVcdControl)) - static_cast<cPsdVcdControl*>(control)->Stop(); - -@@ -262,7 +263,8 @@ - - void cPsdVcdControl::SetTrack(int Track, cVcd *Vcd, union psd_vcd *PsdVcd) - { -- cControl *control = cControl::Control(); -+ cMutexLock MutexLock; -+ cControl *control = cControl::Control(MutexLock); - if (control && typeid(*control)==typeid(cPsdSpiControl)) - static_cast<cPsdSpiControl*>(control)->Stop(); - -@@ -298,7 +300,8 @@ - - void cPsdVcdControl::SetEntry(int Entry, cVcd *Vcd, union psd_vcd *PsdVcd) - { -- cControl *control = cControl::Control(); -+ cMutexLock MutexLock; -+ cControl *control = cControl::Control(MutexLock); - if (control && typeid(*control)==typeid(cPsdSpiControl)) - static_cast<cPsdSpiControl*>(control)->Stop(); - diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch b/media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch deleted file mode 100644 index 69aefba987a7..000000000000 --- a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch +++ /dev/null @@ -1,17 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=503452 -patch provided by E.Seifert - ---- vcd-0.9/player.c 2008-01-16 13:26:38.000000000 +0100 -+++ vcd-0.9/player.c 2014-03-04 22:07:39.374281971 +0100 -@@ -161,7 +161,11 @@ - int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult; - if (sp > MAX_VIDEO_SLOWMOTION) - sp = MAX_VIDEO_SLOWMOTION; -+#if VDRVERSNUM >= 20103 -+ DeviceTrickSpeed(sp,true); -+#else - DeviceTrickSpeed(sp); -+#endif - } - } - diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_gcc-6.patch b/media-plugins/vdr-vcd/files/vdr-vcd-0.9_gcc-6.patch deleted file mode 100644 index 67d72fa83107..000000000000 --- a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_gcc-6.patch +++ /dev/null @@ -1,24 +0,0 @@ -compile fix gcc-6 -https://bugs.gentoo.org/show_bug.cgi?id=594274 -provided by P.Levine -Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (2016/Oct/16) ---- vcd-0.9/functions.h.old 2016-09-23 23:59:29.151668778 -0400 -+++ vcd-0.9/functions.h 2016-09-23 23:59:33.842225407 -0400 -@@ -167,7 +167,7 @@ - __u16 playing_time; - __u8 play_item_wait_time; - __u8 auto_pause_wait_time; -- __u16 play_item[]; -+ __u16 play_item[1]; - } play; - struct { - __u8 header; -@@ -183,7 +183,7 @@ - __u8 timeout_wait_time; - __u8 loop_count; - __u16 play_item; -- __u16 selection_offset[]; -+ __u16 selection_offset[1]; - } selection; - }; - diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_vdr-1.7.2.diff b/media-plugins/vdr-vcd/files/vdr-vcd-0.9_vdr-1.7.2.diff deleted file mode 100644 index b9da87923edd..000000000000 --- a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_vdr-1.7.2.diff +++ /dev/null @@ -1,17 +0,0 @@ -compile fix for >=vdr-1.7.2 -Joerg Bornkessel <hd_brummy@gentoo.org> 07 May 2009 -diff -Naur vcd-0.9.orig/player.h vcd-0.9/player.h ---- vcd-0.9.orig/player.h 2009-05-07 17:10:46.839425275 +0200 -+++ vcd-0.9/player.h 2009-05-07 17:12:55.446843178 +0200 -@@ -42,6 +42,11 @@ - #define VIDEO_STREAM_SC 0xE0 - #define SC_MASK 0xE0 - -+#if VDRVERSNUM > 10701 -+#define I_FRAME 1 -+#define FRAMESPERSEC 25 -+#endif -+ - class cVcdPlayer; - - class cVcdPlayerControl : public cControl { diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_xgettext.diff b/media-plugins/vdr-vcd/files/vdr-vcd-0.9_xgettext.diff deleted file mode 100644 index 6228cc7319fe..000000000000 --- a/media-plugins/vdr-vcd/files/vdr-vcd-0.9_xgettext.diff +++ /dev/null @@ -1,271 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=414247 -fixed missing xgettext -Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> ( 2012/11/02 ) -diff -Naur vcd-0.9.old/Makefile vcd-0.9/Makefile ---- vcd-0.9.old/Makefile 2008-01-16 16:29:39.000000000 +0100 -+++ vcd-0.9/Makefile 2012-10-30 14:06:02.163762996 +0100 -@@ -53,7 +53,7 @@ - - ### The object files (add further files here): - --OBJS = $(PLUGIN).o functions.o i18n.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o -+OBJS = $(PLUGIN).o functions.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o - - ### Implicit rules: - -@@ -69,9 +69,34 @@ - - -include $(DEPFILE) - -+### Internationalization (I18N): -+ -+PODIR = po -+LOCALEDIR = $(VDRDIR)/locale -+I18Npo = $(wildcard $(PODIR)/*.po) -+I18Nmsgs = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file)))))) -+I18Npot = $(PODIR)/$(PLUGIN).pot -+ -+%.mo: %.po -+ msgfmt -c -o $@ $< -+ -+$(I18Npot): $(wildcard *.c) -+ xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<dev@erichseifert.de>' -o $@ $^ -+ -+%.po: $(I18Npot) -+ msgmerge -U --no-wrap --no-location --backup=none -q $@ $< -+ @touch $@ -+ -+$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo -+ @mkdir -p $(dir $@) -+ cp $< $@ -+ -+.PHONY: i18n -+i18n: $(I18Nmsgs) -+ - ### Targets: - --all: libvdr-$(PLUGIN).so -+all: libvdr-$(PLUGIN).so i18n - - libvdr-$(PLUGIN).so: $(OBJS) - $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ -@@ -86,4 +111,5 @@ - @echo Distribution package created as $(PACKAGE).tgz - - clean: -+ @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot - @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ -diff -Naur vcd-0.9.old/menu.c vcd-0.9/menu.c ---- vcd-0.9.old/menu.c 2008-01-20 17:59:46.000000000 +0100 -+++ vcd-0.9/menu.c 2012-10-30 14:04:10.837681821 +0100 -@@ -26,7 +26,7 @@ - - #include <vdr/interface.h> - #include <vdr/status.h> --#include "i18n.h" -+#include <vdr/i18n.h> - #include "menu.h" - #include "functions.h" - #include "setup.h" -diff -Naur vcd-0.9.old/menucontrol.c vcd-0.9/menucontrol.c ---- vcd-0.9.old/menucontrol.c 2008-01-16 13:43:39.000000000 +0100 -+++ vcd-0.9/menucontrol.c 2012-10-30 14:03:43.051660837 +0100 -@@ -26,7 +26,7 @@ - - #include <vdr/interface.h> - #include <vdr/status.h> --#include "i18n.h" -+#include <vdr/i18n.h> - #include "menu.h" - #include "functions.h" - #include "setup.h" -diff -Naur vcd-0.9.old/po/de_DE.po vcd-0.9/po/de_DE.po ---- vcd-0.9.old/po/de_DE.po 1970-01-01 01:00:00.000000000 +0100 -+++ vcd-0.9/po/de_DE.po 2012-10-30 14:08:28.409871746 +0100 -@@ -0,0 +1,62 @@ -+# VDR plugin language source file. -+# Copyright (C) 2007 Klaus Schmidinger <kls@tvdr.de> -+# This file is distributed under the same license as the VDR package. -+# Klaus Schmidinger <kls@tvdr.de>, 2000 -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: VDR 1.7.27\n" -+"Report-Msgid-Bugs-To: <dev@erichseifert.de>\n" -+"POT-Creation-Date: 2012-10-30 14:10+0200\n" -+"PO-Revision-Date: 2012-10-30 14:10+0200\n" -+"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n" -+"Language-Team: <vdr@linuxtv.org>\n" -+"Language: \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=ISO-8859-15\n" -+"Content-Transfer-Encoding: 8bit\n" -+ -+msgid "VideoCD" -+msgstr "VideoCD" -+ -+msgid "No VideoCD detected" -+msgstr "Keine VideoCD erkannt" -+ -+msgid "Eject" -+msgstr "Auswerfen" -+ -+msgid "Key$Play" -+msgstr "" -+ -+msgid "Tracks" -+msgstr "Tracks" -+ -+msgid "SPI" -+msgstr "SPI" -+ -+msgid "Jump: " -+msgstr "" -+ -+msgid "VCD" -+msgstr "VCD" -+ -+msgid "Setup.VCD$Drive speed" -+msgstr "Laufwerkgeschwindigkeit" -+ -+msgid "Setup.VCD$Broken mode" -+msgstr "Nicht standardkonform" -+ -+msgid "Setup.VCD$Hide main menu entry" -+msgstr "Hauptmenüeintrag ausblenden" -+ -+msgid "Setup.VCD$Play tracks continuously" -+msgstr "Tracks nacheinander abspielen" -+ -+msgid "Setup.VCD$Autostart replay" -+msgstr "Wiedergabe automatisch starten" -+ -+msgid "Setup.VCD$Play sequence replay" -+msgstr "Wiedergabe nach Sequenz" -+ -+msgid "No disc inserted" -+msgstr "Keine CD eingelegt" -diff -Naur vcd-0.9.old/po/it_IT.po vcd-0.9/po/it_IT.po ---- vcd-0.9.old/po/it_IT.po 1970-01-01 01:00:00.000000000 +0100 -+++ vcd-0.9/po/it_IT.po 2012-10-30 14:08:28.414871756 +0100 -@@ -0,0 +1,64 @@ -+# VDR plugin language source file. -+# Copyright (C) 2007 Klaus Schmidinger <kls@tvdr.de> -+# This file is distributed under the same license as the VDR package. -+# Alberto Carraro <bertocar@tin.it>, 2001 -+# Antonio Ospite <ospite@studenti.unina.it>, 2003 -+# Sean Carlos <seanc@libero.it>, 2005 -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: VDR 1.7.27\n" -+"Report-Msgid-Bugs-To: <dev@erichseifert.de>\n" -+"POT-Creation-Date: 2012-10-30 14:10+0200\n" -+"PO-Revision-Date: 2012-10-30 14:10+0200\n" -+"Last-Translator: Sean Carlos <seanc@libero.it>\n" -+"Language-Team: <vdr@linuxtv.org>\n" -+"Language: \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=ISO-8859-15\n" -+"Content-Transfer-Encoding: 8bit\n" -+ -+msgid "VideoCD" -+msgstr "VideoCD" -+ -+msgid "No VideoCD detected" -+msgstr "Nessun VideoCD trovato" -+ -+msgid "Eject" -+msgstr "Eject" -+ -+msgid "Key$Play" -+msgstr "" -+ -+msgid "Tracks" -+msgstr "Tracce" -+ -+msgid "SPI" -+msgstr "SPI" -+ -+msgid "Jump: " -+msgstr "" -+ -+msgid "VCD" -+msgstr "VCD" -+ -+msgid "Setup.VCD$Drive speed" -+msgstr "Velocità lettore" -+ -+msgid "Setup.VCD$Broken mode" -+msgstr "Mod. non standard" -+ -+msgid "Setup.VCD$Hide main menu entry" -+msgstr "Nascondi voce nel menu principale" -+ -+msgid "Setup.VCD$Play tracks continuously" -+msgstr "Riproduci tracce in modo continuo" -+ -+msgid "Setup.VCD$Autostart replay" -+msgstr "Riproduzione automatica all'avvio" -+ -+msgid "Setup.VCD$Play sequence replay" -+msgstr "Riproduci in sequenza" -+ -+msgid "No disc inserted" -+msgstr "Nessun disco inserito" -diff -Naur vcd-0.9.old/psd.c vcd-0.9/psd.c ---- vcd-0.9.old/psd.c 2008-01-20 17:59:59.000000000 +0100 -+++ vcd-0.9/psd.c 2012-10-30 14:02:55.840626223 +0100 -@@ -21,7 +21,7 @@ - */ - - --#include "i18n.h" -+#include <vdr/i18n.h> - #include "psd.h" - #include "psdcontrol.h" - -diff -Naur vcd-0.9.old/psdcontrol.c vcd-0.9/psdcontrol.c ---- vcd-0.9.old/psdcontrol.c 2008-01-16 13:30:53.000000000 +0100 -+++ vcd-0.9/psdcontrol.c 2012-10-30 14:02:42.015616358 +0100 -@@ -27,7 +27,7 @@ - - #include <vdr/interface.h> - #include <vdr/status.h> --#include "i18n.h" -+#include <vdr/i18n.h> - #include "functions.h" - #include "setup.h" - #include "psdcontrol.h" -diff -Naur vcd-0.9.old/setup.c vcd-0.9/setup.c ---- vcd-0.9.old/setup.c 2008-01-15 16:27:44.000000000 +0100 -+++ vcd-0.9/setup.c 2012-10-30 14:02:26.782605650 +0100 -@@ -22,7 +22,7 @@ - - #include <vdr/menuitems.h> - #include "setup.h" --#include "i18n.h" -+#include <vdr/i18n.h> - - cVcdSetupData VcdSetupData; - -diff -Naur vcd-0.9.old/vcd.c vcd-0.9/vcd.c ---- vcd-0.9.old/vcd.c 2008-01-16 13:33:17.000000000 +0100 -+++ vcd-0.9/vcd.c 2012-10-30 14:01:52.628580657 +0100 -@@ -25,7 +25,7 @@ - #include <vdr/interface.h> - #include <vdr/plugin.h> - #include "functions.h" --#include "i18n.h" -+#include <vdr/i18n.h> - #include "menu.h" - #include "menucontrol.h" - #include "psdcontrol.h" -@@ -100,7 +100,6 @@ - - bool cPluginVcd::Start(void) - { -- RegisterI18n(Phrases); - if (option_vcd) - vcd = new cVcd(option_vcd); - else diff --git a/media-plugins/vdr-vcd/metadata.xml b/media-plugins/vdr-vcd/metadata.xml deleted file mode 100644 index a0235fdeb599..000000000000 --- a/media-plugins/vdr-vcd/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person" proxied="yes"> - <email>martin.dummer@gmx.net</email> - <name>Martin Dummer</name> - </maintainer> - <maintainer type="project" proxied="proxy"> - <email>proxy-maint@gentoo.org</email> - <name>Proxy Maintainers</name> - </maintainer> - <maintainer type="project"> - <email>vdr@gentoo.org</email> - <name>Gentoo VDR Project</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> diff --git a/media-plugins/vdr-vcd/vdr-vcd-0.9-r5.ebuild b/media-plugins/vdr-vcd/vdr-vcd-0.9-r5.ebuild deleted file mode 100644 index c8bca91976eb..000000000000 --- a/media-plugins/vdr-vcd/vdr-vcd-0.9-r5.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit vdr-plugin-2 - -DESCRIPTION="VDR plugin: play video cds" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="http://vdr.websitec.de/download/vdr-vcd/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND="media-video/vdr:=" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}_xgettext.diff" - "${FILESDIR}/${P}_vdr-1.7.2.diff" - "${FILESDIR}/${P}_devicetrickspeed.patch" - "${FILESDIR}/${P}_gcc-6.patch" - "${FILESDIR}/${P}_Control.patch" ) - -src_prepare() { - vdr-plugin-2_src_prepare - - # Patch Makefile, as VDRDIR is no well known variable name - # to stop spare -I in gcc cmdline - sed -e 's:$(VDRINC):$(VDRDIR)/include:' -i Makefile || die -} |
