mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 15:37:58 +02:00
Signed-off-by: Valérian Rousset <tharvik@users.noreply.github.com> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
25 lines
665 B
Bash
25 lines
665 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="org.mindrot:jbcrypt:0.4"
|
|
JAVA_TESTING_FRAMEWORKS="junit"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Java implementation of OpenBSD's Blowfish password hashing code"
|
|
HOMEPAGE="https://www.mindrot.org/projects/jBCrypt/"
|
|
SRC_URI="https://www.mindrot.org/files/jBCrypt/jBCrypt-${PV}.tar.gz"
|
|
S="${WORKDIR}/jBCrypt-${PV}"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
DEPEND=">=virtual/jdk-1.8:*"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
JAVA_SRC_DIR="src"
|
|
JAVA_TEST_SRC_DIR="test"
|
|
JAVA_TEST_GENTOO_CLASSPATH="junit"
|