blob: 45905bc9e83cfe74324c745f463e4254d2832a71 (
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: $
inherit git autotools
DESCRIPTION=""
HOMEPAGE=""
EGIT_REPO_URI="http://shr.bearstech.com/repo/${PN}.git"
EGIT_PROJECT="${PN}"
LICENSE="GPL-3"
SLOT="0"
EAPI="2"
KEYWORDS="~x86 ~amd64 ~arm"
IUSE=""
DOCS="README"
SHR_SPECS_PATH="/usr/share/shr/xml"
DEPEND=""
RDEPEND=""
src_prepare() {
eautoreconf
}
src_compile() {
emake SPECS_PATH=${SHR_SPECS_PATH} || die "compilation failed"
}
src_install() {
emake DESTDIR="${D}" SPECS_PATH="${SHR_SPECS_PATH}" install || die "install failed"
}
|