blob: 305e482a91508e49e067eb111f914265413f9379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV#9999} != ${PV} ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.linuxtv.org/dtv-scan-tables.git"
else
COMMIT="c1986d5148d8"
SRC_URI="https://linuxtv.org/downloads/dtv-scan-tables/dtv-scan-tables-${PV:3:4}-${PV:7:2}-${PV:9:2}-${COMMIT}.tar.bz2"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
S="${WORKDIR}/usr/share/dvb"
fi
DESCRIPTION="Digital TV scan tables in v3 and v5 format"
HOMEPAGE="https://linuxtv.org/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
DEPEND=">=media-tv/v4l-utils-1.4"
PATCHES=( "${FILESDIR}"/Makefile.patch )
DOCS=( README )
src_prepare() {
default
# Conversion failure!
rm -v dvb-t/ke-Nairobi || die
}
src_compile() {
emake dvbv3 dvbv5
}
src_install() {
emake PREFIX="${ED}/usr" install install_v3
einstalldocs
}
|