mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
After a message to gentoo-dev ML, and no reply from any user on x86, we decided to dekeyword most Java packages from x86, and reverse dependencies of them. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
63 lines
1.5 KiB
Bash
63 lines
1.5 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Tests require an existing running SQL server and 'junit.jar.file' property
|
|
JAVA_PKG_IUSE="doc examples source"
|
|
|
|
inherit java-pkg-2
|
|
|
|
DESCRIPTION="JDBC drivers with JNDI-bindable DataSources"
|
|
HOMEPAGE="https://www.mchange.com/projects/c3p0/"
|
|
SRC_URI="https://downloads.sourceforge.net/project/c3p0/c3p0-src/c3p0-${PV}/${P}.src.tgz"
|
|
S="${WORKDIR}/${P}.src"
|
|
|
|
LICENSE="|| ( EPL-1.0 LGPL-2.1 )"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc64 ~amd64-linux ~x86-linux"
|
|
|
|
CP_DEPEND="
|
|
dev-java/log4j-12-api:2
|
|
dev-java/mchange-commons:0
|
|
"
|
|
|
|
DEPEND="
|
|
>=virtual/jdk-1.8:*
|
|
${CP_DEPEND}
|
|
"
|
|
|
|
RDEPEND="
|
|
>=virtual/jre-1.8:*
|
|
${CP_DEPEND}
|
|
"
|
|
|
|
PATCHES=( "${FILESDIR}/c3p0-0.9.5.5-source-target.patch" )
|
|
|
|
src_prepare() {
|
|
java-pkg_clean
|
|
default #780585
|
|
java-pkg-2_src_prepare
|
|
java-pkg_jar-from --into lib/ log4j-12-api-2
|
|
java-pkg_jar-from --into lib/ mchange-commons
|
|
|
|
# Test sources interfere with Javadoc generation on JDK 11
|
|
# Remove since the tests will never be run
|
|
rm -r src/java/com/mchange/v2/c3p0/test ||
|
|
die "Failed to remove unused test sources"
|
|
}
|
|
|
|
src_compile() {
|
|
eant jar $(usev doc javadoc) \
|
|
-Dant.build.javac.source="$(java-pkg_get-source)" \
|
|
-Dant.build.javac.target="$(java-pkg_get-target)"
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_newjar "build/${P}.jar"
|
|
einstalldocs
|
|
|
|
use doc && java-pkg_dojavadoc build/apidocs
|
|
use examples && java-pkg_doexamples src/java/com/mchange/v2/c3p0/example
|
|
use source && java-pkg_dosrc src/java/com/mchange/v2
|
|
}
|