blob: 5b917f730ca2672f57bf0ae1880399223790bf91 (
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
67
68
69
|
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson xdg
DESCRIPTION="Library for video acquisition using Genicam cameras"
HOMEPAGE="https://github.com/AravisProject/aravis"
if [[ ${PV} = 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/AravisProject/${PN}"
else
MY_P="${PN^^}_${PV//./_}"
SRC_URI="https://github.com/AravisProject/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="LGPL-2+"
SLOT="0"
IUSE="gtk-doc fast-heartbeat gstreamer introspection packet-socket test usb viewer"
RESTRICT="!test? ( test )"
GST_DEPEND="
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
"
BDEPEND="
dev-util/glib-utils
virtual/pkgconfig
gtk-doc? (
dev-util/gtk-doc
app-text/docbook-xml-dtd:4.3
)
introspection? ( dev-libs/gobject-introspection:= )
"
DEPEND="
dev-libs/glib:2[gtk-doc?]
dev-libs/libxml2:2
sys-libs/zlib
gstreamer? ( ${GST_DEPEND} )
packet-socket? ( sys-process/audit )
usb? ( virtual/libusb:1 )
viewer? (
${GST_DEPEND}
x11-libs/gtk+:3
x11-libs/libnotify
)
"
RDEPEND="${DEPEND}"
if [[ ${PV} != 9999 ]]; then
S="${WORKDIR}/${PN}-${MY_P}"
fi
src_configure() {
local emesonargs=(
$(meson_feature gtk-doc documentation)
$(meson_use fast-heartbeat)
$(meson_feature gstreamer gst-plugin)
$(meson_feature introspection)
$(meson_feature packet-socket)
$(meson_use test tests)
$(meson_feature usb)
$(meson_feature viewer)
)
meson_src_configure
}
|