| 1 |
# Copyright 1999-2012 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.30.ebuild,v 1.1 2012/01/07 20:47:41 chithanh 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-solaris ~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 |
video_cards_intel? ( >=x11-libs/libpciaccess-0.10 )"
|
| 29 |
DEPEND="${RDEPEND}
|
| 30 |
>=x11-libs/libpciaccess-0.10"
|
| 31 |
|
| 32 |
PATCHES=(
|
| 33 |
"${FILESDIR}"/${PN}-2.4.28-solaris.patch
|
| 34 |
)
|
| 35 |
|
| 36 |
pkg_setup() {
|
| 37 |
XORG_CONFIGURE_OPTIONS=(
|
| 38 |
--enable-udev
|
| 39 |
$(use_enable video_cards_intel intel)
|
| 40 |
$(use_enable video_cards_nouveau nouveau-experimental-api)
|
| 41 |
$(use_enable video_cards_radeon radeon)
|
| 42 |
$(use_enable video_cards_vmware vmwgfx-experimental-api)
|
| 43 |
$(use_enable libkms)
|
| 44 |
)
|
| 45 |
|
| 46 |
use elibc_FreeBSD && XORG_EAUTORECONF=yes
|
| 47 |
|
| 48 |
xorg-2_pkg_setup
|
| 49 |
}
|