diff options
Diffstat (limited to 'media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-9999.3.ebuild')
-rw-r--r-- | media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-9999.3.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-9999.3.ebuild b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-9999.3.ebuild new file mode 100644 index 0000000..499675d --- /dev/null +++ b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-9999.3.ebuild @@ -0,0 +1,76 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-vdr-scripts.git" +EGIT_BRANCH="gvs-3.x" + +DESCRIPTION="Scripts necessary for use of vdr as a set-top-box" +HOMEPAGE="https://gitweb.gentoo.org/proj/gentoo-vdr-scripts.git/about/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="" + +RDEPEND="acct-group/vdr + acct-user/vdr + app-admin/sudo + sys-process/wait_on_pid" + +VDR_HOME=/var/lib/vdr + +src_install() { +# local DOCS=( README* TODO ChangeLog ) + + default + + # create necessary directories + diropts -ovdr -gvdr + keepdir "${VDR_HOME}" + + local kd + for kd in shutdown-data merged-config-files dvd-images; do + keepdir "${VDR_HOME}/${kd}" + done +} + +VDRSUDOENTRY="vdr ALL=NOPASSWD:/usr/share/vdr/bin/vdrshutdown-really.sh" + +pkg_postinst() { + elog "${CATEGORY}/${PN} supports an init script" + elog "to start a X server" + elog "Please refer for detailed info to" + elog "/usr/share/doc/${PF}/README.x11-setup\n" + + elog "systemd is supported by ${CATEGORY}/${PN}" + elog "This are described in the README.systemd file" + elog "in /usr/share/doc/${PF}/\n" + + einfo "nvram wakeup is supported optional." + einfo "To make use of it emerge sys-power/nvram-wakeup.\n" + + elog "Plugins which should be used are set via" + elog "the config-file called /etc/conf.d/vdr.plugins" + elog "or enabled them via the frontend eselect vdr-plugin.\n" + + if [[ -f "${EROOT}"/etc/conf.d/vdr.dvdswitch ]] && + grep -q ^DVDSWITCH_BURNSPEED= "${EROOT}"/etc/conf.d/vdr.dvdswitch + then + ewarn "You are setting DVDSWITCH_BURNSPEED in /etc/conf.d/vdr.dvdswitch" + ewarn "This no longer has any effect, please use" + ewarn "VDR_DVDBURNSPEED in /etc/conf.d/vdr.cd-dvd" + fi + + # backup routine for old /etc/sudoers entry + if grep -q /usr/share/vdr/bin/vdrshutdown-really.sh "${EROOT}"/etc/sudoers; then + ewarn "Please remove depricated entry from /etc/sudoers:" + ewarn "${VDRSUDOENTRY}" + ewarn "sudoers handling is supported by:" + ewarn "/etc/sudoers.d/vdr" + fi +} |