mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
32 lines
703 B
Bash
32 lines
703 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR plugin: make osd menu configurable via config-file"
|
|
HOMEPAGE="https://github.com/vdr-projects/vdr-plugin-menuorg"
|
|
SRC_URI="https://github.com/vdr-projects/vdr-plugin-menuorg/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/vdr-plugin-menuorg-${PV}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="media-video/vdr[menuorg]
|
|
dev-cpp/libxmlpp:2.6
|
|
dev-cpp/glibmm:2"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
emake CXXFLAGS+=-std=c++11
|
|
}
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
insinto /etc/vdr/plugins/menuorg
|
|
doins menuorg.xml
|
|
}
|