diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-04-18 09:35:32 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-04-18 09:35:32 +0000 |
commit | 766633d672d9027ac36e26b95bc9475cea13f5c8 (patch) | |
tree | 6fde1445dccdc5dbe0ba35239f8cd21f826ee697 /x11-drivers/xf86-video-intel | |
parent | Bump (diff) | |
download | gentoo-2-766633d672d9027ac36e26b95bc9475cea13f5c8.tar.gz gentoo-2-766633d672d9027ac36e26b95bc9475cea13f5c8.tar.bz2 gentoo-2-766633d672d9027ac36e26b95bc9475cea13f5c8.zip |
Version bump, bug #363983.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/xf86-video-intel')
-rw-r--r-- | x11-drivers/xf86-video-intel/ChangeLog | 8 | ||||
-rw-r--r-- | x11-drivers/xf86-video-intel/xf86-video-intel-2.15.0.ebuild | 42 |
2 files changed, 49 insertions, 1 deletions
diff --git a/x11-drivers/xf86-video-intel/ChangeLog b/x11-drivers/xf86-video-intel/ChangeLog index cc3dc346b663..d9d2d1e0a4cf 100644 --- a/x11-drivers/xf86-video-intel/ChangeLog +++ b/x11-drivers/xf86-video-intel/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-drivers/xf86-video-intel # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog,v 1.66 2011/03/05 15:51:42 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog,v 1.67 2011/04/18 09:35:32 chithanh Exp $ + +*xf86-video-intel-2.15.0 (18 Apr 2011) + + 18 Apr 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +xf86-video-intel-2.15.0.ebuild: + Version bump, bug #363983. 05 Mar 2011; Raúl Porcel <armin76@gentoo.org> xf86-video-intel-2.14.0.ebuild: diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.15.0.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.15.0.ebuild new file mode 100644 index 000000000000..8e77f76d435e --- /dev/null +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.15.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 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.15.0.ebuild,v 1.1 2011/04/18 09:35:32 chithanh Exp $ + +EAPI=4 + +XORG_DRI=dri +inherit linux-info xorg-2 + +DESCRIPTION="X.Org driver for Intel cards" + +KEYWORDS="~amd64 ~ia64 ~x86 -x86-fbsd" +IUSE="" + +RDEPEND="x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXvMC + >=x11-libs/libxcb-1.5" +DEPEND="${RDEPEND}" + +pkg_setup() { + xorg-2_pkg_setup + XORG_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 +} |