From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SD2T0-0002sw-Oh for garchives@archives.gentoo.org; Wed, 28 Mar 2012 23:39:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C4F7E0C25; Wed, 28 Mar 2012 23:39:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4CE7FE0C25 for ; Wed, 28 Mar 2012 23:39:26 +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 AFA5E1B400B for ; Wed, 28 Mar 2012 23:39:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 72931E5402 for ; Wed, 28 Mar 2012 23:39:24 +0000 (UTC) From: "Chi-Thanh Christopher Nguyen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chi-Thanh Christopher Nguyen" Message-ID: <1332977978.2eb4ee1e48e6a84cbfddbf874993cd97f0228ffe.chithead@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: x11-libs/libdrm/ X-VCS-Repository: proj/x11 X-VCS-Files: x11-libs/libdrm/libdrm-9999.ebuild X-VCS-Directories: x11-libs/libdrm/ X-VCS-Committer: chithead X-VCS-Committer-Name: Chi-Thanh Christopher Nguyen X-VCS-Revision: 2eb4ee1e48e6a84cbfddbf874993cd97f0228ffe X-VCS-Branch: master Date: Wed, 28 Mar 2012 23:39:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 86fe980a-2056-4c4c-af5d-a83154ebef48 X-Archives-Hash: 5be67e22431423d1979d0627d9f38034 commit: 2eb4ee1e48e6a84cbfddbf874993cd97f0228ffe Author: Chi-Thanh Christopher Nguyen gentoo org> AuthorDate: Wed Mar 28 23:39:38 2012 +0000 Commit: Chi-Thanh Christopher Nguyen cs tu-berli= n de> CommitDate: Wed Mar 28 23:39:38 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/x11.git;a=3Dc= ommit;h=3D2eb4ee1e x11-libs/libdrm: update for omap support --- x11-libs/libdrm/libdrm-9999.ebuild | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/x11-libs/libdrm/libdrm-9999.ebuild b/x11-libs/libdrm/libdrm-= 9999.ebuild index 4ad64d7..eccae2d 100644 --- a/x11-libs/libdrm/libdrm-9999.ebuild +++ b/x11-libs/libdrm/libdrm-9999.ebuild @@ -16,7 +16,7 @@ else fi =20 KEYWORDS=3D"~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~= sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~s= parc-solaris ~x64-solaris ~x86-solaris" -VIDEO_CARDS=3D"intel nouveau radeon vmware" +VIDEO_CARDS=3D"intel nouveau omap radeon vmware" for card in ${VIDEO_CARDS}; do IUSE_VIDEO_CARDS+=3D" video_cards_${card}" done @@ -37,6 +37,7 @@ pkg_setup() { --enable-udev $(use_enable video_cards_intel intel) $(use_enable video_cards_nouveau nouveau-experimental-api) + $(use_enable video_cards_omap omap-experimental-api) $(use_enable video_cards_radeon radeon) $(use_enable video_cards_vmware vmwgfx-experimental-api) $(use_enable libkms) @@ -46,8 +47,9 @@ pkg_setup() { } =20 src_prepare() { - # tests are restricted, no point in building them - sed -ie 's/tests //' ${S}/Makefile.am - + if [[ ${PV} =3D 9999* ]]; then + # tests are restricted, no point in building them + sed -ie 's/tests //' ${S}/Makefile.am + fi xorg-2_src_prepare }