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 904DA13835A for ; Sun, 4 Apr 2021 20:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2CF0E0843; Sun, 4 Apr 2021 20:21:24 +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 8AAFBE0843 for ; Sun, 4 Apr 2021 20:21:24 +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 1FB4633BF0F for ; Sun, 4 Apr 2021 20:21:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C7D246C for ; Sun, 4 Apr 2021 20:21:21 +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: <1617567590.8aac0d7a2f31b8d788c1c94259df9060df6dd668.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/wxmacmolplt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild X-VCS-Directories: sci-chemistry/wxmacmolplt/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 8aac0d7a2f31b8d788c1c94259df9060df6dd668 X-VCS-Branch: master Date: Sun, 4 Apr 2021 20:21:21 +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: 656153a6-a50f-4ee6-b908-c734bbb0d6a0 X-Archives-Hash: 308c4a0e7283c1fc0064e91698ae7eeb commit: 8aac0d7a2f31b8d788c1c94259df9060df6dd668 Author: David Seifert gentoo org> AuthorDate: Sun Apr 4 20:19:50 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 4 20:19:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aac0d7a sci-chemistry/wxmacmolplt: need-wxwidgets -> setup-wxwidgets Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild b/sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild index b102cd19a24..5a5d68427ca 100644 --- a/sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild +++ b/sci-chemistry/wxmacmolplt/wxmacmolplt-7.5-r1.ebuild @@ -1,31 +1,30 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 WX_GTK_VER=3.0 - -inherit autotools eutils wxwidgets +inherit autotools desktop wxwidgets DESCRIPTION="Chemical 3D graphics program with GAMESS input builder" HOMEPAGE="http://www.scl.ameslab.gov/MacMolPlt/" SRC_URI="https://wxmacmolplt.googlecode.com/files/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" SLOT="0" -IUSE="" +KEYWORDS="~amd64 ~x86" RDEPEND=" media-libs/glew:0= media-libs/mesa[X(+)] x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-glew.patch ) src_prepare() { - need-wxwidgets unicode - epatch "${FILESDIR}"/${P}-glew.patch + default sed \ -e "/^dist_doc_DATA/d" \ -i Makefile.am || die "Failed to disable installation of LICENSE file" @@ -33,6 +32,7 @@ src_prepare() { } src_configure() { + setup-wxwidgets unicode econf \ --with-glew \ --without-ming @@ -40,6 +40,7 @@ src_configure() { src_install() { default + doicon resources/${PN}.png make_desktop_entry ${PN} wxMacMolPlt ${PN} "Science;DataVisualization;" }