summaryrefslogtreecommitdiff
path: root/media-tv/mythtv
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
commit463397cf1e064185110fe57c568d73f99a06f5d1 (patch)
tree9aa75eefc5154eaf0e3c33658b830fc54dc68052 /media-tv/mythtv
parentc8d60dada2ec8eb48b2d2b290cd6683ccec40e39 (diff)
gentoo resync : 17.02.2021
Diffstat (limited to 'media-tv/mythtv')
-rw-r--r--media-tv/mythtv/Manifest1
-rw-r--r--media-tv/mythtv/files/mythbackend.init-r272
2 files changed, 0 insertions, 73 deletions
diff --git a/media-tv/mythtv/Manifest b/media-tv/mythtv/Manifest
index 1cb1b5b2811b..e19363d1f600 100644
--- a/media-tv/mythtv/Manifest
+++ b/media-tv/mythtv/Manifest
@@ -1,6 +1,5 @@
AUX bash_profile 63 BLAKE2B 7159ad8c6d061f46e86f4a3618f683386bdf5e42a675fbd7c826d9ad4eb5d194750de27fc8accaabe59dae7dbde431b21400301619b1cdb5e2f61d8d83981a52 SHA512 1338a6871ba04100b3c74f91140be834ee659cb7fcf3aa1bdd251631e47690fae88b8eb80984ff5e35b2a4cf9b3fb1b0be8205fe220c82b19e9d935cc790d5b6
AUX mythbackend.conf-r1 700 BLAKE2B 5ec83d8b68b00dcb88da1ff2bae33af2701ddcc4d3a1a0afe17b3eba49e775360c0f7180198ec6a4e877ae382b678180509703ce6e727521ff4de27e7e28b711 SHA512 1e88f58a003cf583c7c1eda4832ffd22223dab7cfbdf87f075c9fbac6735fd5a15c42ff056fa1d9a060e8249c4be5153d05329ea9b838818b495e33d0af788c5
-AUX mythbackend.init-r2 2050 BLAKE2B d3646ebdb703d094c6340226907739f7b84d1fb48b38dd0cf1941b97d43ddbc555eb514d2fc5694b5af9536600497f0405ec05f11b4a6dafd4daf2ea87c8499e SHA512 8eeb64cf32eaaf3415c4ffae4a72ce365e20d51b5cefac73aced87faeb92503a2c0c2baa4048cfdc521436bf3fab0769122b168d9f18e0b4c0890c329a6b2fc8
AUX mythbackend.init-r3 2048 BLAKE2B c053788a0288db487955c2c09d5c28b0690970f11ff68fd7b9308c151cb4cdb271ab4006f756e01d604c5c2b747e28ce89ede84173df2e99fb7d28860e521262 SHA512 1f86eb03460e5eca8dda382eb67f49ab3a8d0f65ee17ddaa68dbf3b709ba3e2c3c5c4f3e6b57ee06ed58407e8834f9dfa3ec4ead94c422f56d4a9c244966451e
AUX mythbackend.service-28 2689 BLAKE2B 1141975d442d5308700d05710030114cc4c428879eaed030b065a7dc4a0d23f839f26cba0e6b660c938e15faf9e9ac3f5b36a979226068d0989f4b044e73ccee SHA512 945cd721c7114e7c9a334063c6f85de40c2dd8a40271b1755b31881ae2c067b67d34685e1cb2d9b09fdaa9bf58ea2763e4e314b288e53f8bfcef7b6942ce5dd1
AUX mythfrontend.conf 474 BLAKE2B d81e2e91bb4a8afef746268ec832129ac6b02c27d0e7414a912a04ac2edec69ca59367d24fa8d80d5f6c8d6b0f462cb022d4307070a267e970405a9cf0448d64 SHA512 8b3967f5e7d719fefe50b8868dc1b974c3f6337335e7e65799ddb331abe07df0fadb4cb619758fefeaa0c4d0d1dac6f00e0982736cab5acac993bdaced0051c2
diff --git a/media-tv/mythtv/files/mythbackend.init-r2 b/media-tv/mythtv/files/mythbackend.init-r2
deleted file mode 100644
index dc063030d47c..000000000000
--- a/media-tv/mythtv/files/mythbackend.init-r2
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="MythTV backend recording daemon"
-extra_started_commands="resched upnprebuild"
-description_resched="Forces the recording scheduler to update"
-description_upnprebuild="Rebuilds the UPnP media cache"
-
-MYTHBACKEND_OPTS=${MYTHBACKEND_OPTS:-"${MYTHBACKEND_OPTS}"}
-MYTHBACKEND_VERBOSE=${MYTHBACKEND_VERBOSE:-"general"}
-MYTHBACKEND_LOGGING=${MYTHBACKEND_LOGGING:-"files"}
-
-name="MythTV backend"
-command="/usr/bin/mythbackend"
-pidfile="/run/mythtv/mythbackend.pid"
-start_stop_daemon_args="--pidfile ${pidfile} --user mythtv:video"
-command_args="--daemon --pidfile ${pidfile} --verbose ${MYTHBACKEND_VERBOSE} ${MYTHBACKEND_OPTS}"
-
-depend() {
- # mythbackend doesn't need to run on the same machine that
- # mysql runs on. so its use for that reason
- use logger net.lo mysql LCDd
-}
-
-start_pre() {
- case "${MYTHBACKEND_LOGGING}" in
- database) logging="--enable-dblog" ;;
- syslog\ *) logging="--${MYTHBACKEND_LOGGING}" ;;
- files) logging="--logpath /var/log/mythtv" ;;
- console) logging="--nologserver" ;;
- *)
- eerror "Invalid MYTHBACKEND_LOGGING value"
- exit 1
- ;;
- esac
-
- #fixes for bug #101308
- unset DISPLAY
- unset SESSION_MANAGER
-
- # Work around any strange permissions that may be on these files.
- [ "x${MYTHBACKEND_LOGGING}" = "xfiles" ] && \
- checkpath --directory --owner mythtv:video --mode 0755 /var/log/mythtv
- checkpath --directory --owner mythtv:video --mode 0775 /home/mythtv
- checkpath --directory --owner mythtv:video --mode 0750 /run/mythtv
-}
-
-start() {
- ebegin "Starting ${name}"
- start-stop-daemon --start ${start_stop_daemon_args} --exec ${command} \
- -- ${command_args} ${logging}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${name}"
- start-stop-daemon --stop --retry 10 --progress --pidfile ${pidfile}
- eend $?
-}
-
-resched() {
- ebegin "Updating the recording scheduler"
- ${command} --resched
- eend $?
-}
-
-upnprebuild() {
- ebegin "Rebuilding UPnP media cache"
- ${command} --upnprebuild
- eend $?
-}