commit: cd64257c4ba3bf4c365311de336e211b5ee326d8
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 19 22:39:25 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Mar 19 22:39:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd64257c
x11-drivers/xf86-video-dummy: Port to EAPI 7
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../xf86-video-dummy/xf86-video-dummy-0.3.8.ebuild | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.8.ebuild
b/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.8.ebuild
index 436ff4aaa8a..93c6b8a3bb4 100644
--- a/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.8.ebuild
+++ b/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.8.ebuild
@@ -1,21 +1,23 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-inherit xorg-2
+EAPI=7
+
+inherit xorg-3
DESCRIPTION="X.Org driver for dummy cards"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86
~amd64-linux ~x86-linux"
IUSE="dga"
-RDEPEND=">=x11-base/xorg-server-1.0.99"
-DEPEND="${RDEPEND}
+RDEPEND="x11-base/xorg-server"
+DEPEND="
+ ${RDEPEND}
dga? ( x11-base/xorg-proto )"
-pkg_setup() {
- XORG_CONFIGURE_OPTIONS=(
+src_configure() {
+ local XORG_CONFIGURE_OPTIONS=(
$(use_enable dga)
)
- xorg-2_pkg_setup
+ xorg-3_src_configure
}