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 B765313835B for ; Thu, 29 Apr 2021 08:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 786EFE087C; Thu, 29 Apr 2021 08:23:36 +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 4D2ABE087C for ; Thu, 29 Apr 2021 08:23:36 +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 A4EAC3410C9 for ; Thu, 29 Apr 2021 08:23:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7159752 for ; Thu, 29 Apr 2021 08:23:30 +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: <1619646014.cc419635e82f708fa6c189ea40a31a2bd2ad5c06.mgorny@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-emulation/mupen64plus-qt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/mupen64plus-qt/metadata.xml games-emulation/mupen64plus-qt/mupen64plus-qt-1.14.ebuild games-emulation/mupen64plus-qt/mupen64plus-qt-9999.ebuild X-VCS-Directories: games-emulation/mupen64plus-qt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cc419635e82f708fa6c189ea40a31a2bd2ad5c06 X-VCS-Branch: master Date: Thu, 29 Apr 2021 08:23:30 +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: afb47566-c2a8-4eb5-92d9-7351247af09a X-Archives-Hash: 5562174a3a146757c9d494fa30737d5c commit: cc419635e82f708fa6c189ea40a31a2bd2ad5c06 Author: Samuel Bauer yahoo fr> AuthorDate: Wed Apr 28 21:40:14 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 28 21:40:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc419635 games-emulation/mupen64plus-qt: new ebuild https://bugs.gentoo.org/562444 Signed-off-by: Samuel Bauer yahoo.fr> games-emulation/mupen64plus-qt/metadata.xml | 8 ++++ .../mupen64plus-qt/mupen64plus-qt-1.14.ebuild | 45 ++++++++++++++++++++++ .../mupen64plus-qt/mupen64plus-qt-9999.ebuild | 45 ++++++++++++++++++++++ 3 files changed, 98 insertions(+) diff --git a/games-emulation/mupen64plus-qt/metadata.xml b/games-emulation/mupen64plus-qt/metadata.xml new file mode 100644 index 000000000..ffffe4022 --- /dev/null +++ b/games-emulation/mupen64plus-qt/metadata.xml @@ -0,0 +1,8 @@ + + + + + mazes-80 + mazes-80@none.org + + diff --git a/games-emulation/mupen64plus-qt/mupen64plus-qt-1.14.ebuild b/games-emulation/mupen64plus-qt/mupen64plus-qt-1.14.ebuild new file mode 100644 index 000000000..f1f885f7c --- /dev/null +++ b/games-emulation/mupen64plus-qt/mupen64plus-qt-1.14.ebuild @@ -0,0 +1,45 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop qmake-utils + +DESCRIPTION="A basic launcher for Mupen64Plus" +HOMEPAGE="https://github.com/dh4/mupen64plus-qt" +SRC_URI="https://github.com/dh4/${PN}/archive/${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + dev-qt/qtxml:5 + dev-qt/qtsql:5 + dev-qt/qtwidgets:5 + dev-libs/quazip +" +DEPEND=">=games-emulation/mupen64plus-core-2.5 + ${RDEPEND}" + +src_prepare() { + sed -i -e '/MatchWildcard/{s/Wildcard/RegExp/; s/"\*"/".*"/}' src/dialogs/settingsdialog.cpp || die + sed -i -e '/include.*quazip5/s/quazip5/QuaZip-Qt5-1.1\/quazip/' \ + src/emulation/emulatorhandler.cpp src/common.cpp || die + sed -i -e 's/lquazip5/lquazip1-qt5/' mupen64plus-qt.pro || die + default +} + +src_configure() { + eqmake5 +} + +src_install() { + dobin ${PN} + dodoc README.md + doman resources/${PN}.6 + domenu resources/${PN}.desktop + newicon resources/images/mupen64plus.png ${PN}.png +} diff --git a/games-emulation/mupen64plus-qt/mupen64plus-qt-9999.ebuild b/games-emulation/mupen64plus-qt/mupen64plus-qt-9999.ebuild new file mode 100644 index 000000000..93dd2d71b --- /dev/null +++ b/games-emulation/mupen64plus-qt/mupen64plus-qt-9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 2018-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop git-r3 qmake-utils + +DESCRIPTION="A basic launcher for Mupen64Plus" +HOMEPAGE="https://github.com/dh4/mupen64plus-qt" +EGIT_REPO_URI="https://github.com/dh4/mupen64plus-qt" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + dev-qt/qtxml:5 + dev-qt/qtsql:5 + dev-qt/qtwidgets:5 + dev-libs/quazip +" +DEPEND=">=games-emulation/mupen64plus-core-2.5 + ${RDEPEND}" + +src_prepare() { + sed -i -e '/MatchWildcard/{s/Wildcard/RegExp/; s/"\*"/".*"/}' src/dialogs/settingsdialog.cpp || die + sed -i -e '/include.*quazip5/s/quazip5/QuaZip-Qt5-1.1\/quazip/' \ + src/emulation/emulatorhandler.cpp src/common.cpp || die + sed -i -e 's/lquazip5/lquazip1-qt5/' mupen64plus-qt.pro || die + default +} + +src_configure() { + eqmake5 +} + +src_install() { + dobin ${PN} + dodoc README.md + doman resources/${PN}.6 + domenu resources/${PN}.desktop + newicon resources/images/mupen64plus.png ${PN}.png +}