mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 08:55:57 +02:00
Signed-off-by: Valérian Rousset <tharvik@users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/39114 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
46 lines
954 B
Bash
46 lines
954 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source test"
|
|
MAVEN_ID="com.google.zxing:javase:3.5.1"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Core barcode encoding/decoding library"
|
|
HOMEPAGE="https://zxing.github.io/zxing/"
|
|
SRC_URI="https://github.com/zxing/zxing/archive/zxing-${PV}.tar.gz"
|
|
S="${WORKDIR}/zxing-zxing-${PV}/javase"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="3"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
CP_DEPEND="
|
|
dev-java/jcommander:0
|
|
dev-java/zxing-core:3
|
|
"
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PV}-test-available-formats.patch"
|
|
)
|
|
|
|
JAVA_AUTOMATIC_MODULE_NAME="com.google.zxing.javase"
|
|
JAVA_SRC_DIR="src/main/java"
|
|
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
|
|
JAVA_TEST_SRC_DIR="src/test/java"
|
|
|
|
src_prepare() {
|
|
default # apply PATCHES
|
|
java-pkg-2_src_prepare
|
|
}
|