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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A607158095 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 83589E0FB5; 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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68E92E0FB2 for ; Sat, 16 Jul 2022 20:41:15 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 960293411AE 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 C294B3C3 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: <1658004049.aaeee0dae978930005cf9a6c21b236f59e826f0e.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-9999.ebuild X-VCS-Directories: games-simulation/openrct2/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: aaeee0dae978930005cf9a6c21b236f59e826f0e 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: f806624a-323c-400c-9c04-1f0f8655a8a9 X-Archives-Hash: 3ed48d0b1cf722ebf8d7dddc94b5186b commit: aaeee0dae978930005cf9a6c21b236f59e826f0e Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jul 16 19:29:11 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jul 16 20:40:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaeee0da games-simulation/openrct2: update live ebuild Signed-off-by: Conrad Kostecki gentoo.org> games-simulation/openrct2/openrct2-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/games-simulation/openrct2/openrct2-9999.ebuild b/games-simulation/openrct2/openrct2-9999.ebuild index 63415cb53ad0..45c46cdb7566 100644 --- a/games-simulation/openrct2/openrct2-9999.ebuild +++ b/games-simulation/openrct2/openrct2-9999.ebuild @@ -27,7 +27,7 @@ SRC_URI=" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="dedicated +lightfx +opengl scripting test +truetype" +IUSE="dedicated +flac +lightfx +opengl scripting test +truetype +vorbis" COMMON_DEPEND=" dev-libs/icu:= @@ -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:= ) @@ -105,6 +107,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 @@ -112,6 +115,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