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 10DA5138330 for ; Sun, 27 May 2018 11:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1259FE094F; Sun, 27 May 2018 11:40:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 DC637E094F for ; Sun, 27 May 2018 11:40:25 +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 55145335CC3 for ; Sun, 27 May 2018 11:40:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A848040 for ; Sun, 27 May 2018 11:40:22 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1527421217.3a8a4b76e7cd2c17159269183bc6e7c2a3eac121.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild X-VCS-Directories: x11-themes/adwaita-qt/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 3a8a4b76e7cd2c17159269183bc6e7c2a3eac121 X-VCS-Branch: master Date: Sun, 27 May 2018 11:40:22 +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: f477518d-d562-4695-ada4-44c7e60ead77 X-Archives-Hash: eafa4bdb4fc737036de668d5012be586 commit: 3a8a4b76e7cd2c17159269183bc6e7c2a3eac121 Author: Pacho Ramos gentoo org> AuthorDate: Sun May 27 11:29:39 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun May 27 11:40:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a8a4b76 x11-themes/adwaita-qt: Drop QT4 support (#656612) Package-Manager: Portage-2.3.38, Repoman-2.3.9 x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild new file mode 100644 index 00000000000..e01fc3aea41 --- /dev/null +++ b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit cmake-utils + +DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell" +HOMEPAGE="https://github.com/MartinBriza/adwaita-qt" +SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-2 LGPL-2" +SLOT="0" + +IUSE="gnome" + +RDEPEND=" + gnome? ( x11-themes/QGnomePlatform ) + dev-qt/qtwidgets:5 + dev-qt/qtdbus:5 +" +DEPEND="${RDEPEND}" + +src_configure() { + BUILD_DIR="${WORKDIR}/${PN}_qt5" + local mycmakeargs=( -DUSE_QT4=OFF ) + cmake-utils_src_configure +} + +src_compile() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake-utils_src_compile -C "${_d}" + done +} + +src_install() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake-utils_src_install -C "${_d}" + done +}