diff options
author | 2010-04-01 21:39:23 +0000 | |
---|---|---|
committer | 2010-04-01 21:39:23 +0000 | |
commit | c9d7264719c1e80677712e7578a285313efa341d (patch) | |
tree | d3a82f8f414b0b741b69d18d62484f9fffb09d49 /x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild | |
parent | Bump to EAPI=3, add prefix keywords (diff) | |
download | historical-c9d7264719c1e80677712e7578a285313efa341d.tar.gz historical-c9d7264719c1e80677712e7578a285313efa341d.tar.bz2 historical-c9d7264719c1e80677712e7578a285313efa341d.zip |
x11-drivers/xf86-video-intel: bump to 2.11.0, fix kernel config check (see bugs #310353 and #312605)
Package-Manager: portage-2.2_rc67/cvs/Linux i686
Diffstat (limited to 'x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild')
-rw-r--r-- | x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild new file mode 100644 index 000000000000..f2c1e431ec40 --- /dev/null +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/xf86-video-intel-2.11.0.ebuild,v 1.1 2010/04/01 21:39:23 remi Exp $ + +EAPI=3 + +inherit linux-info xorg-2 + +DESCRIPTION="X.Org driver for Intel cards" + +KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd" +IUSE="dri" + +RDEPEND=">=x11-base/xorg-server-1.6 + >=x11-libs/libdrm-2.4.16 + x11-libs/libpciaccess + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXvMC + >=x11-libs/libxcb-1.5" +DEPEND="${RDEPEND} + >=x11-proto/dri2proto-1.99.3 + x11-proto/fontsproto + x11-proto/randrproto + x11-proto/renderproto + x11-proto/xextproto + x11-proto/xproto + dri? ( x11-proto/xf86driproto + x11-proto/glproto )" + +pkg_setup() { + xorg-2_pkg_setup + CONFIGURE_OPTIONS="$(use_enable dri) --enable-xvmc" +} + +pkg_postinst() { + if linux_config_exists \ + && ! 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 +} |