Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/
Date: Mon, 27 Nov 2017 23:58:47
Message-Id: 1511827044.882bf43a70268245456531e33e9caaefdba0a29e.asturm@gentoo
1 commit: 882bf43a70268245456531e33e9caaefdba0a29e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 26 22:04:54 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 23:57:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882bf43a
7
8 net-libs/jreen: Drop USE qt4,qt5
9
10 Build Qt5-based only.
11
12 Package-Manager: Portage-2.3.16, Repoman-2.3.6
13
14 net-libs/jreen/jreen-1.3.0-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++
15 1 file changed, 39 insertions(+)
16
17 diff --git a/net-libs/jreen/jreen-1.3.0-r1.ebuild b/net-libs/jreen/jreen-1.3.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..d8834856d8f
20 --- /dev/null
21 +++ b/net-libs/jreen/jreen-1.3.0-r1.ebuild
22 @@ -0,0 +1,39 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +if [[ ${PV} != *9999* ]]; then
29 + SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 + KEYWORDS="~amd64 ~ppc ~x86"
31 +else
32 + GIT_ECLASS="git-r3"
33 + EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git"
34 +fi
35 +
36 +inherit cmake-utils ${GIT_ECLASS}
37 +
38 +DESCRIPTION="Qt XMPP library"
39 +HOMEPAGE="https://github.com/euroelessar/jreen"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +IUSE="debug"
44 +
45 +DEPEND="
46 + dev-qt/qtcore:5
47 + dev-qt/qtnetwork:5
48 + media-libs/speex
49 + net-libs/libgsasl
50 + sys-libs/zlib
51 +"
52 +RDEPEND="${DEPEND}"
53 +
54 +DOCS=( AUTHORS ChangeLog README.md )
55 +
56 +src_configure() {
57 + local mycmakeargs=(
58 + -DJREEN_FORCE_QT4=OFF
59 + )
60 + cmake-utils_src_configure
61 +}