projectmoon-overlay/x11-misc/input-leap/input-leap-9999.ebuild

91 lines
1.7 KiB
Bash
Raw Normal View History

2024-08-11 20:02:21 +00:00
# Copyright 1999-2024 Gentoo Authors
2024-08-11 18:18:20 +00:00
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop virtualx xdg cmake git-r3
DESCRIPTION="Share a mouse and keyboard between computers (fork of Barrier)"
HOMEPAGE="https://github.com/input-leap/input-leap"
EGIT_REPO_URI="https://github.com/input-leap/input-leap.git"
LICENSE="GPL-2"
SLOT="0"
IUSE="libei gui test"
2024-08-11 18:18:20 +00:00
RESTRICT="!test? ( test )"
RDEPEND="
net-misc/curl
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXtst
2024-08-11 20:02:21 +00:00
libei? (
dev-libs/libei
)
2024-08-11 18:18:20 +00:00
gui? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
net-dns/avahi[mdnsresponder-compat]
)
dev-libs/openssl:0=
"
DEPEND="
${RDEPEND}
dev-cpp/gtest
dev-cpp/gulrak-filesystem
x11-base/xorg-proto
"
DOCS=(
ChangeLog
README.md
doc/${PN}.conf.example{,-advanced,-basic}
)
2024-08-11 21:16:59 +00:00
MYWORK="${WORKDIR}/input-leap-9999/"
src_prepare() {
eapply "${FILESDIR}"/0001-remove-files.patch
2024-08-11 21:19:19 +00:00
cmake_src_prepare
2024-08-11 21:16:59 +00:00
}
2024-08-11 18:18:20 +00:00
src_configure() {
# gentoo is on qt5; but upstream defaults to 6.
local mycmakeargs=(
-DQT_DEFAULT_MAJOR_VERSION=5
-DBARRIER_BUILD_GUI=$(usex gui)
-DBARRIER_BUILD_INSTALLER=OFF
-DBARRIER_BUILD_TESTS=$(usex test)
2024-08-11 20:02:21 +00:00
-DINPUTLEAP_BUILD_LIBEI=$(usex libei)
2024-08-11 18:18:20 +00:00
-DBARRIER_REVISION=00000000
-DBARRIER_USE_EXTERNAL_GTEST=ON
-DBARRIER_VERSION_STAGE=gentoo
)
cmake_src_configure
}
src_test() {
"${BUILD_DIR}"/bin/unittests || die
virtx "${BUILD_DIR}"/bin/integtests || die
}
src_install() {
cmake_src_install
einstalldocs
doman doc/${PN}{c,s}.1
if use gui; then
2024-08-11 21:16:59 +00:00
doicon -s scalable res/${PN}.svg
2024-08-11 18:18:20 +00:00
doicon -s 256 res/${PN}.png
2024-08-11 21:16:59 +00:00
make_desktop_entry ${PN} "Input Leap" ${PN} Utility
2024-08-11 18:18:20 +00:00
fi
}