forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-java/protobuf-java: Version bump (3.4.1) (bug #619828).
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="6" | ||
JAVA_PKG_IUSE="doc source" | ||
|
||
inherit java-pkg-2 java-pkg-simple | ||
|
||
DESCRIPTION="Google's Protocol Buffers - Java bindings" | ||
HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/google/protobuf" | ||
SRC_URI="https://github.com/google/protobuf/archive/v${PV}.tar.gz -> protobuf-${PV}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0/14" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sh ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" | ||
IUSE="nano" | ||
|
||
# Protobuf is only a build-time dep, but depends on the exact same version | ||
# (excluding revision), since we are using the same tarball. | ||
# But probably same subslot is sufficient. | ||
DEPEND=">=virtual/jdk-1.7 | ||
~dev-libs/protobuf-${PV}" | ||
|
||
RDEPEND=">=virtual/jre-1.7 | ||
!<dev-libs/protobuf-3[java(-)]" | ||
|
||
S="${WORKDIR}/protobuf-${PV}" | ||
|
||
src_prepare() { | ||
default | ||
java-pkg-2_src_prepare | ||
} | ||
|
||
src_compile() { | ||
pushd "${S}/java" >/dev/null || die | ||
einfo "Compiling Java library ..." | ||
"${EPREFIX}"/usr/bin/protoc --java_out=core/src/main/java -I../src ../src/google/protobuf/descriptor.proto || die | ||
JAVA_SRC_DIR="${S}/java/core/src/main/java" | ||
JAVA_JAR_FILENAME="protobuf.jar" | ||
java-pkg-simple_src_compile | ||
popd >/dev/null || die | ||
if use nano; then | ||
einfo "Compiling Java Nano library ..." | ||
pushd "${S}/javanano" >/dev/null || die | ||
"${EPREFIX}"/usr/bin/protoc --java_out=src/main/java -I../src ../src/google/protobuf/descriptor.proto || die | ||
JAVA_SRC_DIR="${S}/javanano/src/main/java" | ||
JAVA_GENTOO_CLASSPATH_EXTRA="${S}/java/core/src/main/java/" | ||
JAVA_JAR_FILENAME="protobuf-nano.jar" | ||
java-pkg-simple_src_compile | ||
popd >/dev/null || die | ||
fi | ||
} | ||
|
||
src_install() { | ||
JAVA_JAR_FILENAME="${S}/java/protobuf.jar" | ||
JAVA_SRC_DIR="${S}/java/core/src/main/java" | ||
if use nano; then | ||
JAVA_JAR_FILENAME="${JAVA_JAR_FILENAME} ${S}/javanano/protobuf-nano.jar" | ||
JAVA_SRC_DIR="${JAVA_SRC_DIR} ${S}/javanano/src/main/java" | ||
fi | ||
mv "${S}/java/target" . || die | ||
if use nano; then | ||
cp -Rvf "${S}/javanano/target" . || die | ||
fi | ||
java-pkg-simple_src_install | ||
} |