blob: 6f472773fde5f8bcdde7f7a80cc609ceb5d8ecc3 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake desktop xdg-utils virtualx
MY_P=synergy-core-${PV}-stable
GTEST_COMMIT=aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e
DESCRIPTION="Lets you easily share a single mouse and keyboard between multiple computers"
HOMEPAGE="https://symless.com/synergy https://github.com/symless/synergy-core/"
SRC_URI="
https://github.com/symless/${PN}-core/archive/v${PV}-stable.tar.gz
-> ${MY_P}.tar.gz
https://dev.gentoo.org/~mgorny/dist/synergy-1.12.0.png
test? (
https://github.com/google/googletest/archive/${GTEST_COMMIT}.tar.gz
-> googletest-${GTEST_COMMIT}.tar.gz
)
"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE="libressl gui test"
RESTRICT="!test? ( test )"
RDEPEND="
!libressl? ( dev-libs/openssl:= )
libressl? ( dev-libs/libressl:= )
x11-libs/libICE:=
x11-libs/libSM:=
x11-libs/libX11:=
x11-libs/libXext:=
x11-libs/libXi:=
x11-libs/libXinerama:=
x11-libs/libXrandr:=
x11-libs/libXtst:=
gui? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
net-dns/avahi[mdnsresponder-compat]
)
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
DOCS=( ChangeLog doc/synergy.conf.example{,-advanced,-basic} )
src_prepare() {
# broken on Xvfb
rm src/test/integtests/platform/XWindowsScreenTests.cpp || die
if use test; then
rmdir ext/googletest || die
mv "${WORKDIR}/googletest-${GTEST_COMMIT}" ext/googletest || die
fi
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DSYNERGY_BUILD_LEGACY_GUI=$(usex gui)
-DSYNERGY_BUILD_LEGACY_INSTALLER=OFF
-DBUILD_TESTS=$(usex test)
)
cmake_src_configure
}
my_test() {
"${BUILD_DIR}"/bin/unittests &&
"${BUILD_DIR}"/bin/integtests
}
src_test() {
virtx my_test
}
src_install() {
dobin "${BUILD_DIR}"/bin/{synergy{c,s},syntool}
if use gui; then
newbin "${BUILD_DIR}"/bin/synergy qsynergy
newicon -s 256 "${DISTDIR}"/synergy-1.12.0.png qsynergy.png
make_desktop_entry qsynergy Synergy qsynergy 'Utility;'
fi
insinto /etc
newins doc/synergy.conf.example synergy.conf
newman doc/synergyc.man synergyc.1
newman doc/synergys.man synergys.1
einstalldocs
}
pkg_postinst() {
use gui && xdg_icon_cache_update
}
pkg_postrm() {
use gui && xdg_icon_cache_update
}
|