From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 991AF139084 for ; Mon, 27 Nov 2017 23:58:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A91AE0F4D; Mon, 27 Nov 2017 23:58:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18A4AE0F4C for ; Mon, 27 Nov 2017 23:58:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5571F33BF01 for ; Mon, 27 Nov 2017 23:58:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1BCFA9DF for ; Mon, 27 Nov 2017 23:58:41 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1511827044.882bf43a70268245456531e33e9caaefdba0a29e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/jreen/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/jreen/jreen-1.3.0-r1.ebuild X-VCS-Directories: net-libs/jreen/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 882bf43a70268245456531e33e9caaefdba0a29e X-VCS-Branch: master Date: Mon, 27 Nov 2017 23:58:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1b852f11-d392-4e48-adec-7cc4a4046232 X-Archives-Hash: 208e0645b9aa8279bf44df97773034e8 commit: 882bf43a70268245456531e33e9caaefdba0a29e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 26 22:04:54 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 27 23:57:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882bf43a net-libs/jreen: Drop USE qt4,qt5 Build Qt5-based only. Package-Manager: Portage-2.3.16, Repoman-2.3.6 net-libs/jreen/jreen-1.3.0-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/net-libs/jreen/jreen-1.3.0-r1.ebuild b/net-libs/jreen/jreen-1.3.0-r1.ebuild new file mode 100644 index 00000000000..d8834856d8f --- /dev/null +++ b/net-libs/jreen/jreen-1.3.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://github.com/euroelessar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~ppc ~x86" +else + GIT_ECLASS="git-r3" + EGIT_REPO_URI="https://github.com/euroelessar/${PN}.git" +fi + +inherit cmake-utils ${GIT_ECLASS} + +DESCRIPTION="Qt XMPP library" +HOMEPAGE="https://github.com/euroelessar/jreen" + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + media-libs/speex + net-libs/libgsasl + sys-libs/zlib +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS ChangeLog README.md ) + +src_configure() { + local mycmakeargs=( + -DJREEN_FORCE_QT4=OFF + ) + cmake-utils_src_configure +}