blob: 4be647af669d7fd3e81f4721602ba0f3e5a33cf1 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils cmake-utils
DESCRIPTION="Memory Efficient Serialization Library"
HOMEPAGE="http://google.github.io/flatbuffers/"
SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="-doc -examples -java"
RDEPEND="
java? ( virtual/jdk )
"
DEPEND="
dev-util/cmake
${RDEPEND}
"
src_prepare() {
cmake-utils_src_prepare
}
src_configure() {
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use java ; then
(cd java && \
javac com/google/flatbuffers/*.java && \
jar cf flatbuffers.jar com/google/flatbuffers/*.class)
fi
}
src_install() {
cmake-utils_src_install
insinto /usr/include
doins -r include/flatbuffers
if use doc ; then
dohtml -r docs
fi
if use examples ; then
dodoc -r samples
fi
if use java ; then
insinto /usr/share/${PN}
doins java/flatbuffers.jar
fi
}
|