Skip to content

Commit 5b66ee5

Browse files
committed
net-libs/qxmpp: new package, add 9999
Bug: https://bugs.gentoo.org/951729 Signed-off-by: Andreas Sturmlechner <[email protected]>
1 parent 3f58153 commit 5b66ee5

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

net-libs/qxmpp/metadata.xml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
<email>[email protected]</email>
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>

net-libs/qxmpp/qxmpp-9999.ebuild

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
}

0 commit comments

Comments
 (0)