mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
media-plugins/vdr-osdteletext: drop 0.9.8, 2.3.1, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
parent
95b50978e1
commit
31da217d23
@ -1,3 +1 @@
|
||||
DIST vdr-osdteletext-0.9.8.tar.gz 100954 BLAKE2B def803093a3726a7c9b1905e04e5790ad3959d8d66664ccc3b0147cf4ed5ff37389525cbc1504fed7e8da782c5c9e58128e35c6adaa1f4ab04ad15cc3e2ae8ba SHA512 48196382fba247ac3d0140d028e23a3474e9a3b440c33b7a27e6127abfa949b1a7ab6748416d3430b68a80830bfbff1831de9d7e902ff9701b9dfd2d873a1f58
|
||||
DIST vdr-osdteletext-2.3.1.tar.gz 132544 BLAKE2B 33f62e53f6b960322b6e68e9dc1cc449f2d050fa0de22777a68c565233a3d7f509ea3826671fc06aaec7b3a1b9c996efad6e20317b070680d5b7aad87bba90d9 SHA512 1ffeebd35693a6fb41fd0c422e86ec2fdf4dfce5ffbdabd3da65421e50e390c68d9c0a38d5fca8bc65ff65bc2e4d529e520ea52ee304659cde2a337b3bce4a48
|
||||
DIST vdr-osdteletext-2.3.1_p20211217.tar.gz 133999 BLAKE2B 5d1645708331582c2d426fc67177fa4011a66adfbbe096f0969ae115a731f1fe1b7eb000af8175a2f96083fd1fe60be9cd924cf4055c24a803f659901b2564c9 SHA512 cf52007a011130b9363550da57af26901157159ef2f79976ec090ed537e8873bac3b8b95dcd5265134321a26ded8a20c9c1939393a8530c89ecbac7e3a8a85db
|
||||
|
||||
@ -1,46 +0,0 @@
|
||||
# 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."
|
||||
}
|
||||
@ -1,45 +0,0 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit user-info vdr-plugin-2
|
||||
|
||||
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"
|
||||
S="${WORKDIR}/vdr-plugin-osdteletext-${PV}"
|
||||
|
||||
LICENSE="GPL-2+ public-domain" #teletext2.ttf, not copyrightable
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
|
||||
RDEPEND="acct-group/vdr
|
||||
acct-user/vdr
|
||||
media-video/vdr"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
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."
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user