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 1263C138334 for ; Thu, 7 Mar 2019 18:17:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 377BCE07D1; Thu, 7 Mar 2019 18:17:39 +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 127B1E07D1 for ; Thu, 7 Mar 2019 18:17:38 +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 C7B22335CF3 for ; Thu, 7 Mar 2019 18:17:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4122A52B for ; Thu, 7 Mar 2019 18:17:36 +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: <1551982647.82d0e171bf004c20b4806933eebd42b2ee78ed48.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-amdgpu/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild X-VCS-Directories: x11-drivers/xf86-video-amdgpu/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 82d0e171bf004c20b4806933eebd42b2ee78ed48 X-VCS-Branch: master Date: Thu, 7 Mar 2019 18:17: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: 3126ba31-53da-48f3-a8f8-afd8de69ca10 X-Archives-Hash: 66fb6ddb4995b9872df5a5abefe34889 commit: 82d0e171bf004c20b4806933eebd42b2ee78ed48 Author: Matt Turner gentoo org> AuthorDate: Thu Mar 7 18:12:57 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Mar 7 18:17:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d0e171 x11-drivers/xf86-video-amdgpu: EAPI 7 Signed-off-by: Matt Turner gentoo.org> x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild index 2fcd2628b39..4040501730a 100644 --- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 XORG_DRI="always" -inherit xorg-2 +inherit xorg-3 if [[ ${PV} == 9999* ]]; then SRC_URI="" @@ -20,10 +20,9 @@ RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu] udev? ( virtual/libudev:= )" DEPEND="${RDEPEND}" -src_configure() { +pkg_setup() { XORG_CONFIGURE_OPTIONS=( --enable-glamor $(use_enable udev) ) - xorg-2_src_configure }