Files
guru/media-video/uxplay/uxplay-1.73.6-r1.ebuild
Huang Rui 565d6d921f media-video/uxplay: add 1.73.6-r1
- Add sys-apps/dbus to RDEPEND (binary links libdbus-1).

Closes: https://bugs.gentoo.org/show_bug.cgi?id=975366
Signed-off-by: Huang Rui <vowstar@gmail.com>
2026-05-18 22:40:03 +08:00

57 lines
1.0 KiB
Bash

# Copyright 2021-2026 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/glib:2
dev-libs/openssl
media-libs/gstreamer
media-libs/gst-plugins-bad
media-libs/gst-plugins-base
media-libs/gst-plugins-good
media-plugins/gst-plugins-libav
sys-apps/dbus
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
}