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 ED20C1382C5 for ; Thu, 18 Mar 2021 14:31:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06A57E0826; Thu, 18 Mar 2021 14:31:39 +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 E120EE0826 for ; Thu, 18 Mar 2021 14:31:38 +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 B4207340B37 for ; Thu, 18 Mar 2021 14:31:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 224744AF for ; Thu, 18 Mar 2021 14:31:36 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1616077887.365484e3d565d0312d3fe87d6f3d8073bde50575.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ugene/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ugene/ugene-37.0.ebuild X-VCS-Directories: sci-biology/ugene/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 365484e3d565d0312d3fe87d6f3d8073bde50575 X-VCS-Branch: master Date: Thu, 18 Mar 2021 14:31:36 +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: ce6212b1-0198-4118-9f44-1238fb32dcbf X-Archives-Hash: 2f368739d1e7e2e230e94c0eb9ee1c4d commit: 365484e3d565d0312d3fe87d6f3d8073bde50575 Author: Andrew Ammerlaan riseup net> AuthorDate: Thu Mar 18 14:31:27 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Mar 18 14:31:27 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=365484e3 sci-biology/ugene: cmake --> qmake cmake does not have install target the qmake build system does Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-biology/ugene/ugene-37.0.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/sci-biology/ugene/ugene-37.0.ebuild b/sci-biology/ugene/ugene-37.0.ebuild index f0b3527a3..c1ffff634 100644 --- a/sci-biology/ugene/ugene-37.0.ebuild +++ b/sci-biology/ugene/ugene-37.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake +inherit qmake-utils DESCRIPTION="A free open-source cross-platform bioinformatics software" HOMEPAGE="http://ugene.unipro.ru" @@ -21,8 +21,17 @@ DEPEND=" RDEPEND="${DEPEND}" src_prepare() { - cmake_src_prepare + default # remove Werror sed -i -e '/-Werror=/d' CMakeLists.txt || die sed -i -e '/-Werror=/d' src/ugene_globals.pri || die } + +src_configure() { + eqmake5 +} + +src_install() { + einstalldocs + emake INSTALL_ROOT="${ED}" +}