mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
34 lines
798 B
Bash
34 lines
798 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit eutils java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="MessagePack for Java is a binary-based efficient object serialization library"
|
|
HOMEPAGE="http://msgpack.org"
|
|
SRC_URI="https://github.com/msgpack/msgpack-java/archive/${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="$(ver_cut 2-3)"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
JAVASSIST_SLOT="3"
|
|
|
|
CDEPEND="dev-java/javassist:${JAVASSIST_SLOT}
|
|
dev-java/json-simple:0
|
|
dev-java/slf4j-api:0
|
|
dev-java/junit:4
|
|
dev-java/hamcrest-core:1.3
|
|
"
|
|
|
|
DEPEND="${CDEPEND}
|
|
>=virtual/jdk-1.6"
|
|
|
|
RDEPEND="${CDEPEND}
|
|
>=virtual/jre-1.6"
|
|
|
|
S="${WORKDIR}/${PN}-java-${P}"
|
|
|
|
JAVA_GENTOO_CLASSPATH="javassist-${JAVASSIST_SLOT},json-simple,slf4j-api,junit-4,hamcrest-core-1.3"
|