summaryrefslogtreecommitdiff
path: root/media-plugins/vdr-remote
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /media-plugins/vdr-remote
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'media-plugins/vdr-remote')
-rw-r--r--media-plugins/vdr-remote/Manifest2
-rw-r--r--media-plugins/vdr-remote/files/confd43
-rw-r--r--media-plugins/vdr-remote/files/rc-addon.sh97
-rw-r--r--media-plugins/vdr-remote/metadata.xml19
-rw-r--r--media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild23
-rw-r--r--media-plugins/vdr-remote/vdr-remote-0.7.1.ebuild24
6 files changed, 0 insertions, 208 deletions
diff --git a/media-plugins/vdr-remote/Manifest b/media-plugins/vdr-remote/Manifest
deleted file mode 100644
index ce07a97ba0af..000000000000
--- a/media-plugins/vdr-remote/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST vdr-remote-0.7.0.tgz 34267 BLAKE2B bd7c2b0ef794191eb9211bc9696a48d933af37fc1ec84eda137a50d0727388e9b4338f2d835211f75d1172fd4dca40a184729fbbef9722f49afd5b88490c0467 SHA512 18c758e9cd519ffc6ccd2a1b53109d7f1ac1c65a32ae43b9eae41ea64ff2ec9721c557ca75a03620b9fee1463608ab0a84d09fad31e233804695570eadec3728
-DIST vdr-remote-0.7.1.tar.gz 32670 BLAKE2B 0769c74e8b1ec50f3d912c25098ef6eaa23861d33ab93952c6fb89053615bbd67c6c715dd70c5eb4e2f5293907347a41ee95b7d9b171d2ad55fbca5ecca434b2 SHA512 df7b8471f79dece4fbd68054a04e7545dbd7e23f283bfa6e7cd7ffeb81eb8290f12225da85fefda90dc3828bfcaf08c4dc931a9f0171eb60345eb66e42645bf8
diff --git a/media-plugins/vdr-remote/files/confd b/media-plugins/vdr-remote/files/confd
deleted file mode 100644
index d34513c6d230..000000000000
--- a/media-plugins/vdr-remote/files/confd
+++ /dev/null
@@ -1,43 +0,0 @@
-# /etc/conf.d/vdr.remote:
-
-# Config-file for vdr plugin remote
-
-#
-# Read keypresses from linux-kernel input-devices
-# for example IR-Input on DVB-cards
-# allowed values: no, autodetect or list of devices /dev/input/eventX (X=0,1,...)
-# default: autodetect
-#
-#REMOTE_PLUGIN_INPUT_DEVICE="no"
-#
-
-#
-# Connect to lirc-daemon on this socket
-# allowed values: list of sockets, example: /dev/lircd
-# default: do not use any lirc-daemon from inside this plugin
-#
-#REMOTE_PLUGIN_LIRC=""
-
-#
-# Listen on these tcp-ports for connections which get OSD and
-# can send keypresses to vdr
-# allowed values: List of portnumbers (>1024)
-# default: do not open any tcp-port
-#
-#REMOTE_PLUGIN_TCP_PORTS=""
-
-#
-# Listen on these tty-device for keypresses, do not show osd there
-# allowed values: List of tty-device names (/dev/ttyX)
-# default: do not open any tty-devices
-#
-#REMOTE_PLUGIN_TTY_ONLY_INPUT=""
-
-#
-# Listen on these tty-device for keypresses and show the
-# osd there
-# allowed values: List of tty-device names (/dev/ttyX)
-# default: do not open any tty-devices
-#
-#REMOTE_PLUGIN_TTY_WITH_OSD=""
-
diff --git a/media-plugins/vdr-remote/files/rc-addon.sh b/media-plugins/vdr-remote/files/rc-addon.sh
deleted file mode 100644
index 5b5bdff49d18..000000000000
--- a/media-plugins/vdr-remote/files/rc-addon.sh
+++ /dev/null
@@ -1,97 +0,0 @@
-#
-# rc-addon-script for plugin remote
-#
-
-check_device() {
- local handlers="${1}"
- local name="${2}"
- local eventdev=""
- [ "${handlers}" = "" ] && return
-
- local handler
- for handler in ${handlers}; do
- case "${handler}" in
- event*)
- eventdev=${handler}
- ;;
- esac
- done
-
- if [ "${eventdev}" = "" ]; then
- if [ "${evdev_warning_showed}" != "1" ]; then
- echo "you need to load module evdev for autodetect input-devices to work"
- evdev_warning_showed=1
- fi
- return
- fi
-
- case "${name}" in
- *dvb*|*DVB*)
- einfo_level1 "Autodetect Input Device ${eventdev} (Name: ${name})"
- REMOTE_PLUGIN_INPUT_DEVICE="${REMOTE_PLUGIN_INPUT_DEVICE} /dev/input/${eventdev}"
- ;;
- esac
-}
-
-autodetect_input_devices() {
- [ -e /proc/bus/input/devices ] || return
- exec 3</proc/bus/input/devices
- while read -u 3 line; do
- case ${line} in
- I:*) check_device "${device}" "${name}"
- device=""
- ;;
- H:*) device=${line#H: Handlers=}
- ;;
- N:*) name=${line#N: Name=\"}
- name=${name%\"}
- ;;
- esac
- done
- check_device "${device}" "${name}"
- exec 3<&-
-}
-
-plugin_pre_vdr_start() {
- if [ "${REMOTE_PLUGIN_INPUT_DEVICE:-autodetect}" = "autodetect" ]; then
- REMOTE_PLUGIN_INPUT_DEVICE=""
- autodetect_input_devices
- fi
- if [ -n "${REMOTE_PLUGIN_INPUT_DEVICE}" ] && [ "${REMOTE_PLUGIN_INPUT_DEVICE}" != "no" ]; then
- [ -e /proc/av7110_ir ] && chown vdr:vdr /proc/av7110_ir
- for dev in ${REMOTE_PLUGIN_INPUT_DEVICE}; do
- [ -e "${dev}" ] || continue
- chown vdr:vdr ${dev}
- add_plugin_param "--input=${dev}"
- done
- fi
-
- if [ -n "${REMOTE_PLUGIN_LIRC}" ]; then
- for dev in ${REMOTE_PLUGIN_LIRC}; do
- [ -e "${dev}" ] || continue
- add_plugin_param "--lirc=${dev}"
- done
- fi
-
- if [ -n "${REMOTE_PLUGIN_TCP_PORTS}" ]; then
- for tcpport in ${REMOTE_PLUGIN_TCP_PORTS}; do
- add_plugin_param "--port=tcp:${tcpport}"
- done
- fi
-
- if [ -n "${REMOTE_PLUGIN_TTY_ONLY_INPUT}" ]; then
- for tty in ${REMOTE_PLUGIN_TTY_ONLY_INPUT}; do
- [ -e "${tty}" ] || continue
- chown vdr:vdr ${tty}
- add_plugin_param "--tty=${tty}"
- done
- fi
-
- if [ -n "${REMOTE_PLUGIN_TTY_WITH_OSD}" ]; then
- for tty in ${REMOTE_PLUGIN_TTY_WITH_OSD}; do
- [ -e "${tty}" ] || continue
- chown vdr:vdr ${tty}
- add_plugin_param "--TTY=${tty}"
- done
- fi
-}
diff --git a/media-plugins/vdr-remote/metadata.xml b/media-plugins/vdr-remote/metadata.xml
deleted file mode 100644
index 48ba12108fd6..000000000000
--- a/media-plugins/vdr-remote/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/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>
- <upstream>
- <remote-id type="github">typingArtist/vdr-plugin-remote</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild b/media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild
deleted file mode 100644
index 96c77e0902ee..000000000000
--- a/media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc...)"
-HOMEPAGE="http://www.escape-edv.de/endriss/vdr/"
-SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="systemd"
-
-DEPEND="
- >=media-video/vdr-2.2.0
-"
-RDEPEND="
- ${DEPEND}
- systemd? ( acct-user/vdr[remote,systemd] )
-"
diff --git a/media-plugins/vdr-remote/vdr-remote-0.7.1.ebuild b/media-plugins/vdr-remote/vdr-remote-0.7.1.ebuild
deleted file mode 100644
index 122b2708abe9..000000000000
--- a/media-plugins/vdr-remote/vdr-remote-0.7.1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc...)"
-HOMEPAGE="http://www.escape-edv.de/endriss/vdr/"
-SRC_URI="https://github.com/typingArtist/vdr-plugin-remote/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/vdr-plugin-remote-${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="systemd"
-
-DEPEND="
- >=media-video/vdr-2.6
-"
-RDEPEND="
- ${DEPEND}
- systemd? ( acct-user/vdr[remote,systemd] )
-"