commit:     302e456b13f823d488c464117ebe38b492f7f448
Author:     Valérian Rousset <tharvik <AT> users <DOT> noreply <DOT> github 
<DOT> com>
AuthorDate: Fri Jan 27 00:56:13 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 20 09:21:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=302e456b

net-libs/nativebiginteger: add 2.1.0

Signed-off-by: Valérian Rousset <tharvik <AT> users.noreply.github.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nativebiginteger/Manifest                 |  1 +
 .../nativebiginteger/nativebiginteger-2.1.0.ebuild | 71 ++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/net-libs/nativebiginteger/Manifest 
b/net-libs/nativebiginteger/Manifest
index f1d5b2e50549..0cfcbc81806b 100644
--- a/net-libs/nativebiginteger/Manifest
+++ b/net-libs/nativebiginteger/Manifest
@@ -1,2 +1,3 @@
 DIST i2psource_1.6.1.tar.bz2 33043548 BLAKE2B 
dd7394ec596b016e76e9d74ee06c5db12bce50a859b0bd1194b0d3dd30cb1c2b9116abf3fdf9847c0b89b71a2a2b553f999fd29901567ddd5e4462c43d25c866
 SHA512 
c7c26ce10e159bc1f46b55ad2ef9773f24cb647d2ac01ff6acbb08c7020cb488fd1aeb9bb2d50122d2e87e0606f8fe46d2cc4360fa5df62bb1e9af0ce5e9a52a
 DIST i2psource_1.7.0.tar.bz2 33300522 BLAKE2B 
dcb83477f6d066b707632f8db44bc811558b0bc52368ce992aaf14d0d21acc1fb9bce1dfa8171fca8cf3819765f0b7993ae4a2566a6f65786cca84c02ea4336a
 SHA512 
a27c448246538f152355ecfdf781e39bf9e57b5d0f7ea139ce06d800ce3eed7fa4e375210e6545da2a75245b45282bc8d8e7453d96729f940c34daa75bdc588f
+DIST i2psource_2.1.0.tar.bz2 32817295 BLAKE2B 
d37463522143c02e04c96d58578312b536ab5e2842e5647dbe5ba3d5c139329c447f16de7e326ef48ef4c6b3c11631e23300b5327cc31d9da5288240f86c926f
 SHA512 
e8639c2b2869d3c7856b598d4cd3505458ed5cab5dce3570cafdaec3ccd77dbaec35787cccc6782acc75adb423b7baaab724ac3c98e5b91b41cf4c76f3614355

diff --git a/net-libs/nativebiginteger/nativebiginteger-2.1.0.ebuild 
b/net-libs/nativebiginteger/nativebiginteger-2.1.0.ebuild
new file mode 100644
index 000000000000..ac10184a706c
--- /dev/null
+++ b/net-libs/nativebiginteger/nativebiginteger-2.1.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2018-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="test"
+
+inherit java-pkg-2 toolchain-funcs
+
+DESCRIPTION="jbigi library used by net-vpn/i2p"
+HOMEPAGE="https://geti2p.net";
+SRC_URI="https://files.i2p-projekt.de/${PV}/i2psource_${PV}.tar.bz2";
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+DEPEND="
+       dev-libs/gmp:0=
+       >=virtual/jdk-1.8:*
+"
+RDEPEND="
+       >=virtual/jre-1.8:*
+"
+
+S="${WORKDIR}/i2p-${PV}"
+
+src_prepare() {
+       java-pkg-2_src_prepare
+       java-pkg_clean
+}
+
+src_compile() {
+       local compile_lib
+       compile_lib() {
+               local name="${1}"
+               local file="${2}"
+               shift 2
+
+               "$(tc-getCC)" "${@}" ${CFLAGS} $(java-pkg_get-jni-cflags) \
+                       ${LDFLAGS} -shared -fPIC "-Wl,-soname,lib${name}.so" \
+                       "${file}" -o "lib${name}.so"
+       }
+
+       cd "${S}/core/c/jbigi/jbigi" || die "unable to cd to jbigi"
+       compile_lib jbigi src/jbigi.c -Iinclude -lgmp ||
+               die "unable to build jbigi"
+
+       if use amd64 || use x86; then
+               cd "${S}/core/c/jcpuid" || die "unable to cd to jcpuid"
+               compile_lib jcpuid src/jcpuid.c -Iinclude ||
+                       die "unable to build jcpuid"
+       fi
+}
+
+src_test() {
+       cd core/java/src || die "unable to cd to java/src"
+
+       ejavac -encoding UTF-8 net/i2p/util/NativeBigInteger.java ||
+               die "unable to build tests"
+       "$(java-config -J)" -Djava.library.path="${S}/core/c/jbigi/jbigi" 
net/i2p/util/NativeBigInteger ||
+               die "unable to pass tests"
+}
+
+src_install() {
+       java-pkg_doso core/c/jbigi/jbigi/libjbigi.so
+
+       if use amd64 || use x86; then
+               java-pkg_doso core/c/jcpuid/libjcpuid.so
+       fi
+}

Reply via email to