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 9B74613835A for ; Mon, 5 Apr 2021 22:27:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E86BBE095F; Mon, 5 Apr 2021 22:27:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1C628E095F for ; Mon, 5 Apr 2021 22:27:05 +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 49C0033BEDD for ; Mon, 5 Apr 2021 22:27:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40A6A644 for ; Mon, 5 Apr 2021 22:26:59 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1617661586.f98b677a23a232d500a818c9f9850f8365b41138.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/tqsl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/tqsl/tqsl-2.5.1.ebuild X-VCS-Directories: media-radio/tqsl/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f98b677a23a232d500a818c9f9850f8365b41138 X-VCS-Branch: master Date: Mon, 5 Apr 2021 22:26:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 203bb0d3-4a1f-45cb-8af7-d30be8416be4 X-Archives-Hash: 78eed9654ac590117d1ba2544d4f2245 commit: f98b677a23a232d500a818c9f9850f8365b41138 Author: David Seifert gentoo org> AuthorDate: Mon Apr 5 22:26:26 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Apr 5 22:26:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98b677a media-radio/tqsl: Port to cmake.eclass Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> media-radio/tqsl/tqsl-2.5.1.ebuild | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/media-radio/tqsl/tqsl-2.5.1.ebuild b/media-radio/tqsl/tqsl-2.5.1.ebuild index 2e99b0b58e2..479817e6c43 100644 --- a/media-radio/tqsl/tqsl-2.5.1.ebuild +++ b/media-radio/tqsl/tqsl-2.5.1.ebuild @@ -4,7 +4,7 @@ EAPI=7 WX_GTK_VER="3.0" -inherit cmake-utils wxwidgets vcs-snapshot +inherit cmake wxwidgets vcs-snapshot DESCRIPTION="ARRL Logbook of the World" HOMEPAGE="http://www.arrl.org/tqsl-download" @@ -13,19 +13,20 @@ SRC_URI="https://github.com/rich0/trustedqsl-tqsl/archive/v${PV}.tar.gz -> ${P}. LICENSE="LOTW" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="dev-libs/expat:= - dev-libs/openssl:0= - net-misc/curl:= - sys-libs/db:= - sys-libs/zlib:= - x11-libs/wxGTK:${WX_GTK_VER}=" +RDEPEND=" + dev-libs/expat:= + dev-libs/openssl:0= + net-misc/curl:= + sys-libs/db:= + sys-libs/zlib:= + x11-libs/wxGTK:${WX_GTK_VER}=" DEPEND="${RDEPEND}" DOCS=( AUTHORS.txt INSTALL README ) -HTML_DOCS=( html ) +HTML_DOCS=( html/. ) -pkg_setup() { +src_configure() { setup-wxwidgets + cmake_src_configure }