File tree 2 files changed +66
-0
lines changed
2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
3
+ <pkgmetadata >
4
+ <maintainer type =" project" >
5
+
6
+ <name >Gentoo KDE Project</name >
7
+ </maintainer >
8
+ <upstream >
9
+ <bugs-to >https://invent.kde.org/libraries/qxmpp/-/issues</bugs-to >
10
+ <changelog >https://invent.kde.org/libraries/qxmpp/-/blob/master/CHANGELOG.md?ref_type=heads</changelog >
11
+ <remote-id type =" kde-invent" >libraries/qxmpp</remote-id >
12
+ </upstream >
13
+ <use >
14
+ <flag name =" omemo" >Enable OMEMO encryption</flag >
15
+ </use >
16
+ </pkgmetadata >
Original file line number Diff line number Diff line change
1
+ # Copyright 1999-2025 Gentoo Authors
2
+ # Distributed under the terms of the GNU General Public License v2
3
+
4
+ EAPI=8
5
+
6
+ inherit cmake kde.org
7
+
8
+ DESCRIPTION=" Cross-platform C++ XMPP client and server library"
9
+ HOMEPAGE=" https://invent.kde.org/libraries/qxmpp"
10
+
11
+ LICENSE=" LGPL-2.1 CC0-1.0"
12
+ SLOT=" 0"
13
+ KEYWORDS=" "
14
+ IUSE=" doc gstreamer omemo test"
15
+ RESTRICT=" !test? ( test )"
16
+
17
+ RDEPEND="
18
+ dev-qt/qtbase:6[network,ssl,xml]
19
+ dev-qt/qt5compat:6
20
+ gstreamer? ( media-libs/gstreamer )
21
+ omemo? (
22
+ app-crypt/qca:2[qt6(+)]
23
+ net-libs/libomemo-c
24
+ )
25
+ "
26
+ DEPEND=" ${RDEPEND} "
27
+ BDEPEND=" doc? ( app-text/doxygen )"
28
+
29
+ src_configure () {
30
+ local mycmakeargs=(
31
+ -DQT_VERSION_MAJOR=6
32
+ -DBUILD_DOCUMENTATION=$( usex doc)
33
+ -DBUILD_EXAMPLES=OFF
34
+ -DBUILD_TESTS=$( usex test)
35
+ -DBUILD_INTERNAL_TESTS=$( usex test)
36
+ -DBUILD_OMEMO=$( usex omemo)
37
+ -DWITH_QCA=$( usex omemo)
38
+ -DWITH_GSTREAMER=$( usex gstreamer)
39
+ )
40
+ cmake_src_configure
41
+ }
42
+
43
+ src_test () {
44
+ local CMAKE_SKIP_TESTS=(
45
+ # require network connection, bug #623708
46
+ tst_qxmpptransfermanager
47
+ tst_qxmppiceconnection
48
+ )
49
+ cmake_src_test
50
+ }
You can’t perform that action at this time.
0 commit comments