blob: 1457dcbb6b7c8b082d2671a0cd874b3c0f15d3ab (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools multilib-minimal
DESCRIPTION="VBI Decoding Library for Zapping"
HOMEPAGE="https://github.com/zapping-vbi/zvbi/"
SRC_URI="https://github.com/zapping-vbi/zvbi/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="doc dvb nls proxy test v4l X"
RESTRICT="!test? ( test )"
RDEPEND="
media-libs/libpng:=[${MULTILIB_USEDEP}]
nls? ( virtual/libintl[${MULTILIB_USEDEP}] )
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
"
DEPEND="${RDEPEND}
virtual/os-headers
X? ( x11-libs/libXt )
"
BDEPEND="
doc? ( app-text/doxygen )
nls? ( sys-devel/gettext )
"
src_prepare() {
default
eautoreconf
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable dvb) \
$(use_enable nls) \
$(use_enable proxy) \
$(use_enable test tests) \
$(use_enable v4l) \
$(use_with X x) \
$(multilib_native_use_with doc doxygen)
}
multilib_src_install() {
emake DESTDIR="${D}" install
if multilib_is_native_abi; then
if use doc; then
local HTML_DOCS=( doc/html/*.{css,gif,html,js,png,svg} )
einstalldocs
fi
fi
}
multilib_src_install_all() {
# examples are not built but used as doc
local DOCS=( AUTHORS BUGS ChangeLog NEWS README.md TODO examples )
docompress -x /usr/share/doc/${PF}/examples
einstalldocs
find "${ED}" -name '*.la' -delete
}
|