summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2005-10-09 20:13:07 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2005-10-09 20:13:07 +0000
commit1463bdebd674bad3caa35b54aff527229a232513 (patch)
tree7adb404b9098cc3d46be1bc65c159ea61d134fe2 /eclass/vdr-plugin.eclass
parentChange apache-devs to apache-bugs in metadata. (diff)
downloadgentoo-2-1463bdebd674bad3caa35b54aff527229a232513.tar.gz
gentoo-2-1463bdebd674bad3caa35b54aff527229a232513.tar.bz2
gentoo-2-1463bdebd674bad3caa35b54aff527229a232513.zip
Corrected filename to be consistent with gentoo-vdr-scripts.
Diffstat (limited to 'eclass/vdr-plugin.eclass')
-rw-r--r--eclass/vdr-plugin.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/vdr-plugin.eclass b/eclass/vdr-plugin.eclass
index 2420d24785af..657eb2d5cf7e 100644
--- a/eclass/vdr-plugin.eclass
+++ b/eclass/vdr-plugin.eclass
@@ -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/eclass/vdr-plugin.eclass,v 1.4 2005/08/22 16:20:30 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.5 2005/10/09 20:13:07 zzam Exp $
#
# Author:
# Matthias Schwarzott <zzam@gentoo.org>
@@ -36,8 +36,8 @@
# ${FILESDIR}/rc-addon-${PV}.sh or ${FILESDIR}/rc-addon.sh:
-# The first matching is installed under /usr/lib/vdr/rcscript/vdr.${VDRPLUGIN}.sh
-# (in example vdr-femon this would be /usr/lib/vdr/rcscript/vdr.femon.sh)
+# The first matching is installed under /usr/lib/vdr/rcscript/plugin-${VDRPLUGIN}.sh
+# (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh)
#
# This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr
# It could be used for special startup actions for this plugins, or to create the
@@ -158,7 +158,7 @@ vdr-plugin_src_install() {
for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do
if [[ -f "${f}" ]]; then
insinto "${VDR_RC_DIR}"
- newins "${f}" vdr.${VDRPLUGIN}.sh
+ newins "${f}" plugin-${VDRPLUGIN}.sh
break
fi
done