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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 153C8158232 for ; Mon, 9 Dec 2024 05:16:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3941FE0BD4; Mon, 9 Dec 2024 05:16:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 22300E0BD9 for ; Mon, 9 Dec 2024 05:16:22 +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 63E57343137 for ; Mon, 9 Dec 2024 05:16:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 613DF1F42 for ; Mon, 9 Dec 2024 05:16:18 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1733721346.52fd53cd3230277178b4f6d6b43bd10199e217f0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxinput/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxde-base/lxinput/lxinput-0.3.5-r2.ebuild X-VCS-Directories: lxde-base/lxinput/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 52fd53cd3230277178b4f6d6b43bd10199e217f0 X-VCS-Branch: master Date: Mon, 9 Dec 2024 05:16:18 +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: 622429dd-5c87-4c1f-9fe1-d675009fc74c X-Archives-Hash: 35009075e74772d2a29b91f5d3375038 commit: 52fd53cd3230277178b4f6d6b43bd10199e217f0 Author: Sam James gentoo org> AuthorDate: Mon Dec 9 05:13:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 9 05:15:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52fd53cd lxde-base/lxinput: build w/ -std=gnu17 On life-support upstream. Closes: https://bugs.gentoo.org/944065 Signed-off-by: Sam James gentoo.org> lxde-base/lxinput/lxinput-0.3.5-r2.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lxde-base/lxinput/lxinput-0.3.5-r2.ebuild b/lxde-base/lxinput/lxinput-0.3.5-r2.ebuild index a2faf619f771..cd8ea21ff43c 100644 --- a/lxde-base/lxinput/lxinput-0.3.5-r2.ebuild +++ b/lxde-base/lxinput/lxinput-0.3.5-r2.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit flag-o-matic + DESCRIPTION="LXDE keyboard and mouse configuration tool" HOMEPAGE="https://lxde.org/" SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz" @@ -10,7 +12,6 @@ SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 ~x86-linux" -IUSE="" RDEPEND=" dev-libs/glib:2 @@ -25,6 +26,8 @@ BDEPEND=" " src_configure() { - econf \ - --enable-gtk3 + # bug #944065 + append-flags -std=gnu17 + + econf --enable-gtk3 }