blob: e053423d424a8c5f22c01ba0b7f8e8811c75836e (
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
|
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="UxPlay"
MY_PV="${PV}"
inherit cmake
DESCRIPTION="AirPlay Unix mirroring server"
HOMEPAGE="https://github.com/FDH2/UxPlay"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/FDH2/${MY_PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/FDH2/${MY_PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/${MY_PN}-${MY_PV}"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="+vaapi +X"
RDEPEND="
app-pda/libplist
dev-libs/openssl
media-libs/gstreamer
media-libs/gst-plugins-bad
media-libs/gst-plugins-base
media-plugins/gst-plugins-libav
vaapi? ( media-plugins/gst-plugins-vaapi )
net-dns/avahi[mdnsresponder-compat]
X? ( x11-libs/libX11 )
"
DEPEND="
${RDEPEND}
"
BDEPEND="
virtual/pkgconfig
"
src_configure() {
local mycmakeargs=(
-DNO_X11_DEPS=$(usex X OFF ON)
)
cmake_src_configure
}
|