blob: a8122dfc3d401482ca872c70ced6c7283b35f460 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EGIT_REPO_URI="https://github.com/sarnold/libdrm-armada.git"
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils git-2
DESCRIPTION="Armada/etnaviv libdrm buffer object management module"
HOMEPAGE="http://git.armlinux.org.uk/cgit/libdrm-armada.git"
KEYWORDS="~arm ~arm-linux"
SLOT="0"
IUSE=""
RDEPEND="media-libs/mesa[egl,gles1,gles2]"
DEPEND="${RDEPEND}
>=x11-libs/libdrm-2.4.74:=[video_cards_vivante]"
#AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure() {
autotools-utils_src_configure
}
src_compile() {
autotools-utils_src_compile
}
src_install() {
autotools-utils_src_install
}
|