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 496171382C5 for ; Mon, 8 Jun 2020 08:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 758ABE0895; Mon, 8 Jun 2020 08:56:26 +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 5BE66E0895 for ; Mon, 8 Jun 2020 08:56:26 +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 C4E7134F3D6 for ; Mon, 8 Jun 2020 08:56:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C388B29B for ; Mon, 8 Jun 2020 08:56:21 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591606571.6111aeb597fe9fa79a3d9f327fa915fe806ca4c2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/pcsxr/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild games-emulation/pcsxr/pcsxr-9999.ebuild X-VCS-Directories: games-emulation/pcsxr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6111aeb597fe9fa79a3d9f327fa915fe806ca4c2 X-VCS-Branch: master Date: Mon, 8 Jun 2020 08:56: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: a0397734-437c-46c9-8fa0-c4ff0f38fd6a X-Archives-Hash: 8d6ac75d0ac65936eeea8a1fbe63e03a commit: 6111aeb597fe9fa79a3d9f327fa915fe806ca4c2 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 8 08:38:56 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 8 08:56:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6111aeb5 games-emulation/pcsxr: Port to cmake.eclass Signed-off-by: Michał Górny gentoo.org> games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild | 6 +++--- games-emulation/pcsxr/pcsxr-9999.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild b/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild index 9f4570150ce..f8d068fed3c 100644 --- a/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild +++ b/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils xdg-utils +inherit cmake xdg-utils EGIT_COMMIT="62467b86871aee3d70c7445f3cb79f0858ec566e" MY_P=${PN}-${EGIT_COMMIT} @@ -70,11 +70,11 @@ src_configure() { -DSND_BACKEND=${sound_backend} ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install mv "${ED}"/usr/share/doc/pcsxr/* "${ED}/usr/share/doc/${PF}/" || die rmdir "${ED}"/usr/share/doc/pcsxr || die } diff --git a/games-emulation/pcsxr/pcsxr-9999.ebuild b/games-emulation/pcsxr/pcsxr-9999.ebuild index 10ae63ff010..2066e487f6e 100644 --- a/games-emulation/pcsxr/pcsxr-9999.ebuild +++ b/games-emulation/pcsxr/pcsxr-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils git-r3 xdg-utils +inherit cmake git-r3 xdg-utils DESCRIPTION="PCSX-Reloaded: a fork of PCSX, the discontinued Playstation emulator" HOMEPAGE="https://github.com/iCatButler/pcsxr" @@ -67,11 +67,11 @@ src_configure() { -DSND_BACKEND=${sound_backend} ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install mv "${ED}"/usr/share/doc/pcsxr/* "${ED}/usr/share/doc/${PF}/" || die rmdir "${ED}"/usr/share/doc/pcsxr || die }