mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Closes: https://bugs.gentoo.org/946460 Closes: https://bugs.gentoo.org/938724 Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Part-of: https://github.com/gentoo/gentoo/pull/44414 Closes: https://github.com/gentoo/gentoo/pull/44414 Signed-off-by: Sam James <sam@gentoo.org>
65 lines
2.1 KiB
Bash
65 lines
2.1 KiB
Bash
# Copyright 2021-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR Plugin: Inform about incoming phone-calls and use the fritz!box phonebook"
|
|
HOMEPAGE="https://github.com/jowi24/vdr-fritz"
|
|
SRC_URI="https://github.com/jowi24/vdr-fritz/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/jowi24/libconvpp/archive/286a289e30417ac534c861529ae245ccb44286e5.tar.gz
|
|
-> ${P}.libconvpp-286a289.tar.gz
|
|
https://github.com/jowi24/libfritzpp/archive/0b87ad3b75614bfb12473996588cd6fa68a1b2fc.tar.gz
|
|
-> ${P}.libfritzpp-0b87ad3.tar.gz
|
|
https://github.com/jowi24/liblogpp/archive/d61e25f4548f40261e6db62a967776cfa16e599a.tar.gz
|
|
-> ${P}.liblogpp-d61e25f.tar.gz
|
|
https://github.com/jowi24/libnetpp/archive/9b5400cbed4d84dcf539791774041a3bd9c5263d.tar.gz
|
|
-> ${P}.libnetpp-9b5400c.tar.gz"
|
|
S="${WORKDIR}/vdr-fritz-${PV}"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-libs/libgcrypt:=
|
|
dev-libs/boost:=
|
|
media-video/vdr:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
default
|
|
|
|
# source git repo has submodules, which are not included in main repo download.
|
|
# so each submodule is loaded separately und must be moved to the right place after unpack
|
|
mv libconvpp-*/* "${S}/libconv++/" || die
|
|
mv libfritzpp-*/* "${S}/libfritz++/" || die
|
|
mv liblogpp-*/* "${S}/liblog++/" || die
|
|
mv libnetpp-*/* "${S}/libnet++/" || die
|
|
}
|
|
|
|
src_prepare() {
|
|
vdr-plugin-2_src_prepare
|
|
|
|
# do not call ar directly
|
|
export _VDRAR="$(tc-getAR)"
|
|
sed -e "s:\@ar :\@\$(_VDRAR) :" \
|
|
-i libconv++/Makefile \
|
|
-i libfritz++/Makefile \
|
|
-i liblog++/Makefile \
|
|
-i libnet++/Makefile || die
|
|
|
|
# remove non-functional tests, #934764
|
|
rm -rf ./test/ ./lib*/test/ || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "It is recommend to update your firmware release to the latest."
|
|
elog
|
|
elog "The integrated call monitor (available in Fritz!Box official"
|
|
elog "firmware releases >= *.04.29) has to be enabled in order to"
|
|
elog "have the vdr-fritzbox plugin display anything on your tv. To"
|
|
elog "enable it call #96*5* from your telephone. If that doesn't"
|
|
elog "work for you, read the documentation for further instructions."
|
|
}
|