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 42CED158094 for ; Sat, 16 Jul 2022 20:41:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78868E0FB4; Sat, 16 Jul 2022 20:41:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3DD04E0FB2 for ; Sat, 16 Jul 2022 20:41:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 53E3F3410F1 for ; Sat, 16 Jul 2022 20:41:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF5B57F for ; Sat, 16 Jul 2022 20:41:12 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1658004048.3294f54acf382942fe72e459b47a3e0ed05c5f2f.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/openrct2/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/openrct2/openrct2-0.4.1-r1.ebuild games-simulation/openrct2/openrct2-0.4.1.ebuild X-VCS-Directories: games-simulation/openrct2/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3294f54acf382942fe72e459b47a3e0ed05c5f2f X-VCS-Branch: master Date: Sat, 16 Jul 2022 20:41:12 +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: 62e35fd5-b763-49ae-80c2-89a4315ac11c X-Archives-Hash: f2c175ece5bf1e573512ce867b467999 commit: 3294f54acf382942fe72e459b47a3e0ed05c5f2f Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jul 16 19:27:07 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jul 16 20:40:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3294f54a games-simulation/openrct2: add missing deps for flac and vorbis Closes: https://bugs.gentoo.org/857207 Signed-off-by: Conrad Kostecki gentoo.org> .../openrct2/{openrct2-0.4.1.ebuild => openrct2-0.4.1-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/games-simulation/openrct2/openrct2-0.4.1.ebuild b/games-simulation/openrct2/openrct2-0.4.1-r1.ebuild similarity index 93% rename from games-simulation/openrct2/openrct2-0.4.1.ebuild rename to games-simulation/openrct2/openrct2-0.4.1-r1.ebuild index 086cc24d58f0..a3c712df2773 100644 --- a/games-simulation/openrct2/openrct2-0.4.1.ebuild +++ b/games-simulation/openrct2/openrct2-0.4.1-r1.ebuild @@ -26,7 +26,7 @@ S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="dedicated +lightfx +opengl scripting test +truetype" +IUSE="dedicated +flac +lightfx +opengl scripting test +truetype +vorbis" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -39,7 +39,9 @@ COMMON_DEPEND=" !dedicated? ( media-libs/libsdl2 media-libs/speexdsp + flac? ( media-libs/flac ) opengl? ( virtual/opengl ) + vorbis? ( media-libs/libvorbis ) ) dev-libs/openssl:0= scripting? ( dev-lang/duktape:= ) @@ -103,6 +105,7 @@ src_configure() { # as both packages do not exist in Gentoo, so support for them has been disabled. local mycmakeargs=( -DDISABLE_DISCORD_RPC=ON + $(usex !dedicated "-DDISABLE_FLAC=$(usex !flac)" "") -DDISABLE_GOOGLE_BENCHMARK=ON -DDISABLE_GUI=$(usex dedicated) -DDISABLE_HTTP=OFF @@ -110,6 +113,7 @@ src_configure() { -DDISABLE_NETWORK=OFF $(usex !dedicated "-DDISABLE_OPENGL=$(usex !opengl)" "") -DDISABLE_TTF=$(usex !truetype) + $(usex !dedicated "-DDISABLE_VORBIS=$(usex !vorbis)" "") -DDOWNLOAD_OBJECTS=OFF -DDOWNLOAD_REPLAYS=OFF -DDOWNLOAD_TITLE_SEQUENCES=OFF