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 6B15C13933E for ; Fri, 2 Jul 2021 20:12:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B303E0923; Fri, 2 Jul 2021 20:12:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4D9E6E0923 for ; Fri, 2 Jul 2021 20:12:14 +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 13A03342A34 for ; Fri, 2 Jul 2021 20:12:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C9E57A1 for ; Fri, 2 Jul 2021 20:12:11 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1625256718.0ea64d9eabcfcd1b34860061a2c8e2f28f588155.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/game-music-emu/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/game-music-emu/game-music-emu-0.6.3.ebuild X-VCS-Directories: media-libs/game-music-emu/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 0ea64d9eabcfcd1b34860061a2c8e2f28f588155 X-VCS-Branch: master Date: Fri, 2 Jul 2021 20:12:11 +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: 092c1253-6a71-4394-9988-3f6dda9ec74c X-Archives-Hash: b08790747b51c1a4cbbac91b1325fd13 commit: 0ea64d9eabcfcd1b34860061a2c8e2f28f588155 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Jul 2 20:11:58 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jul 2 20:11:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea64d9e media-libs/game-music-emu: disabled sanitize in 0.6.3 Closes: https://bugs.gentoo.org/788361 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/game-music-emu/game-music-emu-0.6.3.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild b/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild index 68224895631..854b24fdff7 100644 --- a/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild +++ b/media-libs/game-music-emu/game-music-emu-0.6.3.ebuild @@ -16,3 +16,10 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="" DOCS=( changes.txt design.txt gme.txt readme.txt ) + +src_configure() { + local mycmakeargs=( + -DENABLE_UBSAN=off # disabled so that if gcc[-sanitize] it does not fail to compile + ) + cmake-multilib_src_configure +}