diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2021-05-06 19:47:19 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-05-06 20:03:28 +0200 |
commit | 0cb01dda01fd39f8a62415b2636c78861509dcec (patch) | |
tree | 2ba719d980adf60ef19cad088a048f6a1700b34c /dev-java/jffi | |
parent | dev-python/dash-table: add to tree (diff) | |
download | gentoo-0cb01dda01fd39f8a62415b2636c78861509dcec.tar.gz gentoo-0cb01dda01fd39f8a62415b2636c78861509dcec.tar.bz2 gentoo-0cb01dda01fd39f8a62415b2636c78861509dcec.zip |
dev-java/jffi: eapi7, java 1.8, fixed javah issue
Closes: https://bugs.gentoo.org/788352
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jffi')
-rw-r--r-- | dev-java/jffi/files/jffi-1.2.8-makefile.patch | 8 | ||||
-rw-r--r-- | dev-java/jffi/jffi-1.2.9-r1.ebuild (renamed from dev-java/jffi/jffi-1.2.9.ebuild) | 30 |
2 files changed, 20 insertions, 18 deletions
diff --git a/dev-java/jffi/files/jffi-1.2.8-makefile.patch b/dev-java/jffi/files/jffi-1.2.8-makefile.patch index 7f9f07a500c5..cdc28a662b51 100644 --- a/dev-java/jffi/files/jffi-1.2.8-makefile.patch +++ b/dev-java/jffi/files/jffi-1.2.8-makefile.patch @@ -1,5 +1,5 @@ ---- jni/GNUmakefile -+++ jni/GNUmakefile +--- a/jni/GNUmakefile ++++ b/jni/GNUmakefile @@ -41,6 +41,7 @@ JFFI_BUILD_DIR = $(BUILD_DIR)/jffi @@ -37,8 +37,8 @@ ifeq ($(OS), darwin) build_ffi = \ ---- libtest/GNUmakefile -+++ libtest/GNUmakefile +--- a/libtest/GNUmakefile ++++ b/libtest/GNUmakefile @@ -44,8 +44,8 @@ # Compiler/linker flags from: # http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html diff --git a/dev-java/jffi/jffi-1.2.9.ebuild b/dev-java/jffi/jffi-1.2.9-r1.ebuild index 4eff1caf02bb..6c6b7d259e42 100644 --- a/dev-java/jffi/jffi-1.2.9.ebuild +++ b/dev-java/jffi/jffi-1.2.9-r1.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 JAVA_PKG_IUSE="doc source test" -inherit epatch java-pkg-2 java-ant-2 versionator +inherit java-pkg-2 java-ant-2 DESCRIPTION="An optimized Java interface to libffi" HOMEPAGE="https://github.com/jnr/jffi" @@ -18,16 +18,18 @@ KEYWORDS="amd64 ~arm64 ppc64 x86 ~ppc-macos ~x64-macos" CDEPEND="dev-libs/libffi:0=" RDEPEND="${CDEPEND} - >=virtual/jre-1.6" + >=virtual/jre-1.8:*" +# java 1.8 is needed because javah is called which is not in newer jdks DEPEND="${CDEPEND} - >=virtual/jdk-1.6 - virtual/pkgconfig + virtual/jdk:1.8 test? ( dev-java/ant-junit4:0 dev-java/junit:4 )" +BDEPEND="virtual/pkgconfig" + PATCHES=( "${FILESDIR}"/${PN}-1.2.8-makefile.patch "${FILESDIR}"/${PN}-1.2.8-junit-4.11.patch @@ -35,10 +37,10 @@ PATCHES=( RESTRICT="test" -java_prepare() { - cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die +src_prepare() { + default - epatch "${PATCHES[@]}" + cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die # misc fixes for Darwin if [[ ${CHOST} == *-darwin* ]] ; then @@ -59,7 +61,7 @@ java_prepare() { jni/GNUmakefile || die fi - find "${WORKDIR}" -iname '*.jar' -delete || die + java-pkg_clean } JAVA_ANT_REWRITE_CLASSPATH="yes" @@ -71,9 +73,9 @@ src_compile() { package com.kenai.jffi; public final class Version { private Version() {} - public static final int MAJOR = $(get_version_component_range 1); - public static final int MINOR = $(get_version_component_range 2); - public static final int MICRO = $(get_version_component_range 3); + public static final int MAJOR = $(ver_cut 1); + public static final int MINOR = $(ver_cut 2); + public static final int MICRO = $(ver_cut 3); } EOF @@ -92,7 +94,7 @@ src_compile() { SRC_DIR=jni JNI_DIR=jni BUILD_DIR=build/jni - VERSION=$(get_version_component_range 1-2) + VERSION=$(ver_cut 1-2) USE_SYSTEM_LIBFFI=1 CCACHE= -f jni/GNUmakefile @@ -114,7 +116,7 @@ src_install() { local libname=".so" [[ ${CHOST} == *-darwin* ]] && libname=.jnilib - java-pkg_doso build/jni/lib${PN}-$(get_version_component_range 1-2)${libname} + java-pkg_doso build/jni/lib${PN}-$(ver_cut 1-2)${libname} # must by after _doso to have JAVA_PKG_LIBDEST set cat > boot.properties <<-EOF |