blob: 04e6c001cafb8f643a160dfd22c3ef5b36b00f53 (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils multibuild
if [[ ${PV} = *9999* ]] ; then
EGIT_REPO_URI="https://gitlab.com/nicolasfella/signond.git/"
EGIT_BRANCH="qt6"
inherit git-r3
else
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-VERSION_${PV}"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
fi
DESCRIPTION="Signon daemon for libaccounts-glib"
HOMEPAGE="https://gitlab.com/accounts-sso"
LICENSE="LGPL-2.1"
SLOT="0"
# The qt5/qt6 situation is complicated: https://gitlab.com/accounts-sso/signon-plugin-oauth2/-/merge_requests/28#note_1689621252
# 1) the library is coinstallable for qt5/qt6
# 2) signond (the daemon) must be built for only one Qt version, matching the
# Qt version of all consumer plugins.
IUSE="doc +qt5 qt6 test"
REQUIRED_USE="|| ( qt5 qt6 )"
# tests are brittle; they all pass when stars align, bug 727666
RESTRICT="test !test? ( test )"
RDEPEND="
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsql:5
)
qt6? ( dev-qt/qtbase:6[dbus,gui,network,sql] )
net-libs/libproxy
"
DEPEND="${RDEPEND}
test? (
qt5? ( dev-qt/qttest:5 )
)
"
BDEPEND="
doc? (
app-doc/doxygen[dot]
|| (
dev-qt/qttools:6[assistant]
dev-qt/qthelp:5
)
)
"
PATCHES=(
"${FILESDIR}/${PN}-8.60-buildsystem.patch"
"${FILESDIR}/${PN}-8.60-unused-dep.patch" # bug 727346
"${FILESDIR}/${PN}-8.61-consistent-paths.patch" # bug 701142
)
pkg_setup() {
MULTIBUILD_VARIANTS=( $(usev qt5) $(usev qt6) )
}
src_prepare() {
default
local qhelpgeneratorpath
if has_version "dev-qt/qttools:6[assistant]"; then
qhelpgeneratorpath="$(qt6_get_libdir)/qt6/libexec"
elif has_version "dev-qt/qthelp:5"; then
qhelpgeneratorpath="$(qt5_get_bindir)"
else
eerror "dev-qt/qttools:6[assistant] nor dev-qt/qthelp:5 available even though in deps(?)"
fi
sed -e "/QHG_LOCATION/s|qhelpgenerator|${qhelpgeneratorpath}/&|" \
-i {lib/plugins/,lib/SignOn/,}doc/doxy.conf || die
# install docs to correct location
sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" \
-i doc/doc.pri || die
sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/\$\${TARGET}/" \
-i lib/plugins/doc/doc.pri || die
sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/libsignon-qt/" \
-i lib/SignOn/doc/doc.pri || die
use doc || sed -e "/include(\s*doc\/doc.pri\s*)/d" \
-i signon.pro lib/SignOn/SignOn.pro lib/plugins/plugins.pro || die
use test || sed -e '/^SUBDIRS/s/tests//' \
-i signon.pro || die "couldn't disable tests"
multibuild_copy_sources
}
src_configure() {
my_src_configure() {
cd "${BUILD_DIR}" || die
local myqmakeargs=(
PREFIX="${EPREFIX}"/usr
LIBDIR=$(get_libdir)
)
if [[ ${MULTIBUILD_VARIANT} == qt6 ]]; then
eqmake6 "${myqmakeargs[@]}"
else
eqmake5 "${myqmakeargs[@]}"
fi
}
multibuild_foreach_variant my_src_configure
}
src_compile() {
my_src_compile() {
emake -C "${BUILD_DIR}"
}
multibuild_foreach_variant my_src_compile
}
src_install() {
my_src_install() {
emake -C "${BUILD_DIR}" INSTALL_ROOT="${D}" install
}
multibuild_foreach_variant my_src_install
}
|