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 1A76B1382C5 for ; Sun, 2 May 2021 15:25:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71D60E08C4; Sun, 2 May 2021 15:25:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5C01AE08C4 for ; Sun, 2 May 2021 15:25:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9C3D5340C77 for ; Sun, 2 May 2021 15:25:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE123745 for ; Sun, 2 May 2021 15:24:58 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1619969085.44e291c73fd791c4eb5d608643c8e18c6b6d6115.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-geode/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild X-VCS-Directories: x11-drivers/xf86-video-geode/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 44e291c73fd791c4eb5d608643c8e18c6b6d6115 X-VCS-Branch: master Date: Sun, 2 May 2021 15:24:58 +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: a0787f23-f839-48ac-a00e-c375dee19ac1 X-Archives-Hash: ef068138b2a87b2affc309522f615242 commit: 44e291c73fd791c4eb5d608643c8e18c6b6d6115 Author: David Seifert gentoo org> AuthorDate: Sat May 1 23:55:05 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun May 2 15:24:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44e291c7 x11-drivers/xf86-video-geode: Define XORG_CONFIGURE_OPTIONS in src_configure Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> Signed-off-by: Matt Turner gentoo.org> x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild b/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild index 3b9f17e5587..be974bd039d 100644 --- a/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild +++ b/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit xorg-3 DESCRIPTION="AMD Geode GX2 and LX video driver" @@ -19,8 +20,9 @@ PATCHES=( "${FILESDIR}"/${P}-fix-multiple-definition-of-linker-error.patch ) -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( +src_configure() { + local XORG_CONFIGURE_OPTIONS=( $(use_enable ztv) ) + xorg-3_src_configure }