mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
update EAPI 7 -> 8 new HOME SRC_URI introduce subslot dependency on media-video/vdr Closes: https://bugs.gentoo.org/831104 Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Part-of: https://github.com/gentoo/gentoo/pull/44238 Signed-off-by: Sam James <sam@gentoo.org>
29 lines
658 B
Bash
29 lines
658 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR Plugin: systeminfo"
|
|
HOMEPAGE="https://github.com/FireFlyVDR/vdr-plugin-systeminfo/"
|
|
SRC_URI="https://github.com/FireFlyVDR/vdr-plugin-systeminfo/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/vdr-plugin-systeminfo-${PV}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="media-video/vdr:="
|
|
RDEPEND=${DEPEND}"
|
|
app-admin/hddtemp
|
|
sys-apps/lm-sensors"
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
insinto /usr/share/vdr/systeminfo/
|
|
insopts -m0755
|
|
doins "${FILESDIR}"/systeminfo.sh
|
|
}
|