From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 79BB41381F3 for ; Sat, 22 Jun 2013 17:44:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F4E3E0A8F; Sat, 22 Jun 2013 17:44:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C3194E0A8F for ; Sat, 22 Jun 2013 17:44:47 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9C3F33E300 for ; Sat, 22 Jun 2013 17:44:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 44759E468F for ; Sat, 22 Jun 2013 17:44:45 +0000 (UTC) From: "David Heidelberger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Heidelberger" Message-ID: <1371922988.c6cc23bd097f450d2504fcebe82799d5c03c9670.okias@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-video-intel/ X-VCS-Repository: proj/x11 X-VCS-Files: x11-drivers/xf86-video-intel/xf86-video-intel-2.21.10.ebuild X-VCS-Directories: x11-drivers/xf86-video-intel/ X-VCS-Committer: okias X-VCS-Committer-Name: David Heidelberger X-VCS-Revision: c6cc23bd097f450d2504fcebe82799d5c03c9670 X-VCS-Branch: master Date: Sat, 22 Jun 2013 17:44:45 +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-Archives-Salt: 3ad3e038-c48b-4ca4-9fe8-0821f6198008 X-Archives-Hash: d9db6375d4ba7caa254cef32cce1cefe commit: c6cc23bd097f450d2504fcebe82799d5c03c9670 Author: David Heidelberger ixit cz> AuthorDate: Sat Jun 22 17:43:08 2013 +0000 Commit: David Heidelberger gmail com> CommitDate: Sat Jun 22 17:43:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=c6cc23bd x11-drivers/xf86-video-intel: bump 2.21.10 --- .../xf86-video-intel-2.21.10.ebuild | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.21.10.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.21.10.ebuild new file mode 100644 index 0000000..da30606 --- /dev/null +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.21.10.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +XORG_DRI=dri +inherit linux-info xorg-2 + +DESCRIPTION="X.Org driver for Intel cards" + +KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-fbsd -x86-fbsd" +IUSE="glamor +sna +udev uxa xvmc" + +REQUIRED_USE="|| ( glamor sna uxa )" + +RDEPEND="x11-libs/libXext + x11-libs/libXfixes + >=x11-libs/pixman-0.27.1 + >=x11-libs/libdrm-2.4.29[video_cards_intel] + glamor? ( + x11-libs/glamor + ) + sna? ( + >=x11-base/xorg-server-1.10 + ) + 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/resourceproto" + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable dri) + $(use_enable glamor) + $(use_enable sna) + $(use_enable uxa) + $(use_enable udev) + $(use_enable xvmc) + ) + xorg-2_src_configure +} + +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 +}