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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 336BC15852A for ; Sat, 17 Aug 2024 13:27:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6EB92BC0AB; Sat, 17 Aug 2024 13:27:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB7052BC0AB for ; Sat, 17 Aug 2024 13:27:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB9BA341707 for ; Sat, 17 Aug 2024 13:27:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 429B41ED6 for ; Sat, 17 Aug 2024 13:27:24 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1723901239.e6decb2f6f86e8823232b37e4f090a66b95df697.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/melonds/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/melonds/melonds-9999.ebuild X-VCS-Directories: games-emulation/melonds/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: e6decb2f6f86e8823232b37e4f090a66b95df697 X-VCS-Branch: master Date: Sat, 17 Aug 2024 13:27:24 +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: 79f7e5d5-1f9e-4347-8902-2c0b28fa4546 X-Archives-Hash: 669bce1b5eca24916ae08884a393a3fa commit: e6decb2f6f86e8823232b37e4f090a66b95df697 Author: Maciej Barć gentoo org> AuthorDate: Sat Aug 17 10:30:41 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Aug 17 13:27:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6decb2f games-emulation/melonds: add new enet dependency to live 9999 Signed-off-by: Maciej Barć gentoo.org> games-emulation/melonds/melonds-9999.ebuild | 37 ++++++++++++++++++----------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/games-emulation/melonds/melonds-9999.ebuild b/games-emulation/melonds/melonds-9999.ebuild index ff839958a635..e20ccdc8096e 100644 --- a/games-emulation/melonds/melonds-9999.ebuild +++ b/games-emulation/melonds/melonds-9999.ebuild @@ -3,8 +3,8 @@ EAPI=8 -MY_PN="melonDS" -MY_P="${MY_PN}-${PV}" +REAL_PN="melonDS" +REAL_P="${REAL_PN}-${PV}" inherit cmake flag-o-matic readme.gentoo-r1 toolchain-funcs xdg @@ -15,18 +15,18 @@ HOMEPAGE="http://melonds.kuribo64.net if [[ "${PV}" == *9999* ]] ; then inherit git-r3 - EGIT_REPO_URI="https://github.com/Arisotura/${MY_PN}.git" + EGIT_REPO_URI="https://github.com/Arisotura/${REAL_PN}.git" else - SRC_URI="https://github.com/Arisotura/${MY_PN}/archive/${PV}.tar.gz - -> ${MY_P}.tar.gz" - S="${WORKDIR}/${MY_P}" + SRC_URI="https://github.com/Arisotura/${REAL_PN}/archive/${PV}.tar.gz + -> ${REAL_P}.tar.gz" + S="${WORKDIR}/${REAL_P}" KEYWORDS="~amd64" fi -IUSE="+jit +opengl wayland" LICENSE="BSD-2 GPL-2 GPL-3 Unlicense" SLOT="0" +IUSE="+jit +opengl wayland" RDEPEND=" app-arch/libarchive @@ -36,12 +36,21 @@ RDEPEND=" dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 media-libs/libsdl2[sound,video] + net-libs/enet:= net-libs/libpcap net-libs/libslirp - wayland? ( dev-libs/wayland ) + wayland? ( + dev-libs/wayland + ) +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + wayland? ( + kde-frameworks/extra-cmake-modules:0 + ) " -DEPEND="${RDEPEND}" -BDEPEND="wayland? ( kde-frameworks/extra-cmake-modules:0 )" # used for JIT recompiler QA_EXECSTACK="usr/bin/melonDS" @@ -64,10 +73,10 @@ src_prepare() { src_configure() { local -a mycmakeargs=( - -DBUILD_SHARED_LIBS=OFF - -DENABLE_JIT=$(usex jit) - -DENABLE_OGLRENDERER=$(usex opengl) - -DENABLE_WAYLAND=$(usex wayland) + -DBUILD_SHARED_LIBS="OFF" + -DENABLE_JIT="$(usex jit)" + -DENABLE_OGLRENDERER="$(usex opengl)" + -DENABLE_WAYLAND="$(usex wayland)" ) cmake_src_configure }