blob: f2953dafbfa5cc7317b63a2bcefec10a27b36f71 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
XDPVER=-1
inherit x-modular git
DESCRIPTION="Experimental video driver for SMedia Glamo"
HOMEPAGE="http://www.openmoko.org/"
EGIT_REPO_URI="git://git.openmoko.org/git/xf86-video-glamo.git"
EGIT_PROJECT="xf86-video-glamo"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~arm"
IUSE=""
RDEPEND=">=x11-base/xorg-server-1.3.0"
DEPEND="x11-proto/xextproto
x11-proto/xproto"
src_unpack() {
git_src_unpack
cd "${S}"
eautoreconf || die "eautoreconf failed"
}
src_install() {
x-modular_src_install
}
|