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 C8D671382C5 for ; Thu, 22 Feb 2018 10:51:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84034E08EA; Thu, 22 Feb 2018 10:51:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 65DAAE08EA for ; Thu, 22 Feb 2018 10:51:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 49DEE335C43 for ; Thu, 22 Feb 2018 10:51:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8346E245 for ; Thu, 22 Feb 2018 10:51: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: <1519296467.a2f123efa0f0f2c1c0d15a1f7fde28299aa0f2ed.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsingleapplication/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629-r1.ebuild X-VCS-Directories: dev-qt/qtsingleapplication/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a2f123efa0f0f2c1c0d15a1f7fde28299aa0f2ed X-VCS-Branch: master Date: Thu, 22 Feb 2018 10:51: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: 0991d8a1-4f7f-45dc-b69a-c683e5a279a6 X-Archives-Hash: 6dbdf7e1ffbc5b262d6c79c588bbaf3b commit: a2f123efa0f0f2c1c0d15a1f7fde28299aa0f2ed Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Feb 19 20:36:42 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Feb 22 10:47:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f123ef dev-qt/qtsingleapplication: Drop USE qt4,qt5, bump EAPI 6 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../qtsingleapplication-2.6.1_p20150629-r1.ebuild | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629-r1.ebuild b/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629-r1.ebuild new file mode 100644 index 00000000000..c1e7f77eee7 --- /dev/null +++ b/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit qmake-utils + +MY_P=qt-solutions-${PV#*_p} + +DESCRIPTION="Qt library to start applications only once per user" +HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/" +SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="doc X" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtlockedfile[qt5(+)] + dev-qt/qtnetwork:5 + X? ( + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}/${PN}" + +PATCHES=( + "${FILESDIR}/2.6.1_p20130904-unbundle-qtlockedfile.patch" + "${FILESDIR}/2.6.1_p20130904-no-gui.patch" +) + +src_prepare() { + default + + echo 'SOLUTIONS_LIBRARY = yes' > config.pri + use X || echo 'QTSA_NO_GUI = yes' >> config.pri + + sed -i -e "s/-head/-${PV%.*}/" common.pri || die + sed -i -e '/SUBDIRS+=examples/d' ${PN}.pro || die + + # to ensure unbundling + rm src/qtlockedfile* || die +} + +src_configure() { + eqmake5 +} + +src_install() { + use doc && local HTML_DOCS=( doc/html/. ) + + # libraries + dolib.so lib/* + + # headers + insinto "$(qt5_get_headerdir)"/QtSolutions + doins src/qtsinglecoreapplication.h + use X && doins src/{QtSingleApplication,${PN}.h} + + # .prf files + insinto "$(qt5_get_mkspecsdir)"/features + doins "${FILESDIR}"/qtsinglecoreapplication.prf + use X && doins "${FILESDIR}"/${PN}.prf + + default +}