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 8ED7B138359 for ; Sat, 7 Nov 2020 16:31:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACF58E07C5; Sat, 7 Nov 2020 16:31:39 +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 9229DE07C5 for ; Sat, 7 Nov 2020 16:31:39 +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 65011335C9A for ; Sat, 7 Nov 2020 16:31:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7FBF2CA for ; Sat, 7 Nov 2020 16:31:36 +0000 (UTC) From: "Sergey Torokhov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Torokhov" Message-ID: <1604766645.25f55299df6040cdc839117053d9a5079a2876b8.SergeyTorokhov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-board/openriichi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-board/openriichi/openriichi-0.2.1.1.ebuild X-VCS-Directories: games-board/openriichi/ X-VCS-Committer: SergeyTorokhov X-VCS-Committer-Name: Sergey Torokhov X-VCS-Revision: 25f55299df6040cdc839117053d9a5079a2876b8 X-VCS-Branch: dev Date: Sat, 7 Nov 2020 16:31:36 +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: c5d96feb-ddc8-4176-be3a-5a4a4322c011 X-Archives-Hash: 70d1e716db55d10b60b4a35a44ad7388 commit: 25f55299df6040cdc839117053d9a5079a2876b8 Author: Sergey Torokhov yandex ru> AuthorDate: Sat Nov 7 16:30:45 2020 +0000 Commit: Sergey Torokhov yandex ru> CommitDate: Sat Nov 7 16:30:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25f55299 games-board/openriichi: switch vsync ON by default Signed-off-by: Sergey Torokhov yandex.ru> games-board/openriichi/openriichi-0.2.1.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/games-board/openriichi/openriichi-0.2.1.1.ebuild b/games-board/openriichi/openriichi-0.2.1.1.ebuild index 324ca739..78ec26f9 100644 --- a/games-board/openriichi/openriichi-0.2.1.1.ebuild +++ b/games-board/openriichi/openriichi-0.2.1.1.ebuild @@ -39,6 +39,9 @@ src_prepare() { default mv -T "${WORKDIR}/Engine-${Engine_sha}" "${S}/Engine" || die + #switch vsync ON by default + sed -i -e "s/v_sync = OnOffEnum.OFF/v_sync = OnOffEnum.ON/" "${S}/source/Game/Options.vala" || die + vala_src_prepare }