blob: e53ce844476254cb1de25df827b0e68582c9a976 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.0.3.ebuild,v 1.2 2009/05/18 19:01:49 spock Exp $
inherit eutils distutils python java-pkg-opt-2
MY_P=${PN}-${PV//_/}
DESCRIPTION="Google's Protocol Buffers -- an efficient method of encoding structured data"
HOMEPAGE="http://code.google.com/p/protobuf/"
SRC_URI="http://protobuf.googlecode.com/files/${MY_P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples java python vim-syntax"
DEPEND="${DEPEND} java? ( >=virtual/jdk-1.5 )
python? ( dev-python/setuptools )"
RDEPEND="${RDEPEND} java? ( >=virtual/jre-1.5 )"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/protobuf-2.0.3-decoder_test_64bit_fix.patch"
}
src_compile() {
econf || die
emake || die
if use python; then
cd python; distutils_src_compile; cd ..
fi
if use java; then
src/protoc --java_out=java/src/main/java --proto_path=src src/google/protobuf/descriptor.proto
mkdir java/build
cd java/src/main/java
ejavac -d ../../../build $(find . -name '*.java') || die "java compilation failed"
cd ../../../..
jar cf ${PN}.jar -C java/build . || die "jar failed"
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc CHANGES.txt CONTRIBUTORS.txt README.txt
if use python; then
cd python; distutils_src_install; cd ..
fi
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/syntax
doins editors/proto.vim
fi
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r examples/* || die "doins examples failed"
fi
if use java; then
java-pkg_dojar ${PN}.jar
fi
}
src_test() {
emake check
if use python; then
cd python; ${python} setup.py test || die "python test failed"
cd ..
fi
}
|