OLD | NEW |
(Empty) | |
| 1 # Copyright 1999-2011 Gentoo Foundation |
| 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/libdrm-2.4.24.ebuild,v 1.3 20
11/03/28 22:08:38 flameeyes Exp $ |
| 4 |
| 5 EAPI=4 |
| 6 inherit xorg-2 |
| 7 |
| 8 EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm" |
| 9 |
| 10 DESCRIPTION="X.Org libdrm library" |
| 11 HOMEPAGE="http://dri.freedesktop.org/" |
| 12 if [[ ${PV} = 9999* ]]; then |
| 13 SRC_URI="" |
| 14 else |
| 15 SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2" |
| 16 fi |
| 17 |
| 18 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~
x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-s
olaris ~x86-solaris" |
| 19 VIDEO_CARDS="intel nouveau radeon vmware" |
| 20 for card in ${VIDEO_CARDS}; do |
| 21 IUSE_VIDEO_CARDS+=" video_cards_${card}" |
| 22 done |
| 23 |
| 24 IUSE="${IUSE_VIDEO_CARDS} +libkms" |
| 25 RESTRICT="test" # see bug #236845 |
| 26 |
| 27 RDEPEND="dev-libs/libpthread-stubs" |
| 28 DEPEND="${RDEPEND}" |
| 29 |
| 30 PATCHES=( |
| 31 "${FILESDIR}"/${PN}-2.4.23-solaris.patch |
| 32 ) |
| 33 |
| 34 pkg_setup() { |
| 35 CONFIGURE_OPTIONS="--enable-udev |
| 36 $(use_enable video_cards_intel intel) |
| 37 $(use_enable video_cards_nouveau nouveau-experimental-api) |
| 38 $(use_enable video_cards_radeon radeon) |
| 39 $(use_enable video_cards_vmware vmwgfx-experimental-api) |
| 40 $(use_enable libkms)" |
| 41 |
| 42 xorg-2_pkg_setup |
| 43 } |
OLD | NEW |