You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit user-info vdr-plugin-2
|
|
|
|
MY_P="vdr-plugin-osdteletext-${PV}"
|
|
|
|
DESCRIPTION="VDR Plugin: Osd-Teletext displays the teletext/videotext on the OSD"
|
|
HOMEPAGE="https://projects.vdr-developer.org/projects/plg-osdteletext https://github.com/vdr-projects/vdr-plugin-osdteletext/"
|
|
SRC_URI="https://github.com/vdr-projects/vdr-plugin-osdteletext/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+ public-domain" #teletext2.ttf, not copyrightable
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
DEPEND="media-video/vdr"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
QA_FLAGS_IGNORED="
|
|
usr/lib/vdr/plugins/libvdr-.*
|
|
usr/lib64/vdr/plugins/libvdr-.*"
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
insinto /etc/sudoers.d
|
|
insopts -m440
|
|
newins "${FILESDIR}/vdr-osdteletext.sudo" vdr-osdteletext
|
|
|
|
local vdr_user_home=$(egethome vdr)
|
|
insinto "${vdr_user_home}/.local/share/fonts/"
|
|
insopts -m444
|
|
doins teletext2.ttf
|
|
fowners -R vdr:vdr "${vdr_user_home}/.local"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "This ebuild has installed a special teletext font"
|
|
elog "named \"teletext2\""
|
|
elog "You may go to the plugin's setup menu and select"
|
|
elog "the font."
|
|
}
|