media-plugins/vdr-osdteletext: version bump to 2.1.1

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/20675
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Martin Dummer
2021-05-03 13:07:30 +02:00
committed by Joonas Niilola
parent 614eb46b3d
commit bb255fa5ac
2 changed files with 47 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST vdr-osdteletext-0.9.7.tgz 101400 BLAKE2B 52cabda446701ce4898705487e47e5ca5146e58b42b47814f3835326c72118c62212ab81cad036f147e23b0c330b08bd2b2ba82bb7cc41f1bfcbd2525dbfe179 SHA512 d7ebd74ba5411bc8c7596b4f5f30eba7bc71e09d137a10650e78761c58045a96f804468f87fbf0c27e8fa161b64b06035878e5fac9940f75ea728646e92e6c76
DIST vdr-osdteletext-0.9.8.tar.gz 100954 BLAKE2B def803093a3726a7c9b1905e04e5790ad3959d8d66664ccc3b0147cf4ed5ff37389525cbc1504fed7e8da782c5c9e58128e35c6adaa1f4ab04ad15cc3e2ae8ba SHA512 48196382fba247ac3d0140d028e23a3474e9a3b440c33b7a27e6127abfa949b1a7ab6748416d3430b68a80830bfbff1831de9d7e902ff9701b9dfd2d873a1f58
DIST vdr-osdteletext-1.1.1.tar.gz 111113 BLAKE2B 5f9f44ad0615877896a9080f1b32fe4e2c6cd1916dcf6ad50c32bc22ac0cec22f44339ad2d4df7ac3135c1533bde039d0497bc5d7dc365c8b869900d8a9191db SHA512 a4f7e5bd8845917868dcb2041dbb679884595611db796cf5a58d05e41a96efcf47f3fbb92314c58f1f3d9af656d6ab5ef985f3867ea8bd45dd1c0c6e7c745a3a
DIST vdr-osdteletext-2.1.1.tar.gz 123531 BLAKE2B a8a294b9406d7fe52da2fda0da4d59a4bff7392d9d05fd5c5856fd40c875004280abcb255ca47fd0fb84c45c8fc285992d18c41f9b668be746e3b728066ac70e SHA512 53edeaecf79d5008d13e3c621126494967c333a38ab51c1941cee5dd3ce2bcf1c6d4e1bbb8220657b9ad7972170724d956025d72728b4153d4d45d5998829001

View File

@@ -0,0 +1,46 @@
# 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."
}