diff options
author | Craig Andrews <candrews@gentoo.org> | 2018-03-01 18:34:43 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-03-01 17:10:56 -0800 |
commit | fcbb3b78297ddc67168b97813b21efedfc3ee008 (patch) | |
tree | cbbccc2a65b7f3ed10fb3676663209aec08fa799 /x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild | |
parent | app-shells/gentoo-bashcomp: revbump to 20140911-r1 (bug 649144) (diff) | |
download | gentoo-fcbb3b78297ddc67168b97813b21efedfc3ee008.tar.gz gentoo-fcbb3b78297ddc67168b97813b21efedfc3ee008.tar.bz2 gentoo-fcbb3b78297ddc67168b97813b21efedfc3ee008.zip |
x11-drivers/xf86-video-intel: 2.99.917_p20180214 version bump
Closes: https://bugs.gentoo.org/649102
Closes: https://github.com/gentoo/gentoo/pull/7331
Diffstat (limited to 'x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild')
-rw-r--r-- | x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild new file mode 100644 index 000000000000..70fbe1a0ea4b --- /dev/null +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +XORG_DRI=dri +XORG_EAUTORECONF=yes +inherit linux-info xorg-2 flag-o-matic + +DESCRIPTION="X.Org driver for Intel cards" + +KEYWORDS="~amd64 ~x86" +IUSE="debug dri3 +sna tools +udev uxa xvmc" +COMMIT_ID="75795523003798d789d417e82aaa81c7ea1ed616" +SRC_URI="https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz -> ${P}.tar.xz" + +S=${WORKDIR}/${COMMIT_ID} + +REQUIRED_USE=" + || ( sna uxa ) +" +RDEPEND=" + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXScrnSaver + >=x11-libs/pixman-0.27.1 + >=x11-libs/libdrm-2.4.52[video_cards_intel] + dri3? ( + >=x11-base/xorg-server-1.18 + !<=media-libs/mesa-12.0.4 + ) + sna? ( + >=x11-base/xorg-server-1.10 + ) + tools? ( + x11-libs/libX11 + x11-libs/libxcb + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libxshmfence + x11-libs/libXtst + ) + udev? ( + virtual/udev + ) + xvmc? ( + x11-libs/libXvMC + >=x11-libs/libxcb-1.5 + x11-libs/xcb-util + ) +" +DEPEND="${RDEPEND} + >=x11-proto/dri2proto-2.6 + x11-proto/dri3proto + x11-proto/presentproto + x11-proto/resourceproto" + +src_configure() { + replace-flags -Os -O2 + XORG_CONFIGURE_OPTIONS=( + $(use_enable debug) + $(use_enable dri) + $(use_enable dri dri3) + $(usex dri3 "--with-default-dri=3") + $(use_enable sna) + $(use_enable tools) + $(use_enable udev) + $(use_enable uxa) + $(use_enable xvmc) + ) + xorg-2_src_configure +} + +pkg_postinst() { + if linux_config_exists && \ + kernel_is -lt 4 3 && ! linux_chkconfig_present DRM_I915_KMS; then + echo + ewarn "This driver requires KMS support in your kernel" + ewarn " Device Drivers --->" + ewarn " Graphics support --->" + ewarn " Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) --->" + ewarn " <*> Intel 830M, 845G, 852GM, 855GM, 865G (i915 driver) --->" + ewarn " i915 driver" + ewarn " [*] Enable modesetting on intel by default" + echo + fi +} |