mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-31 21:18:09 -07:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: a8a26b1356
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
43 lines
757 B
Bash
43 lines
757 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic java-pkg-2 toolchain-funcs
|
|
|
|
DESCRIPTION="NativeThread for priorities on linux for freenet"
|
|
HOMEPAGE="https://github.com/hyphanet/contrib/blob/master/README"
|
|
SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
CDEPEND="dev-java/jna:4"
|
|
DEPEND="
|
|
net-p2p/freenet
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-javah.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default #780585
|
|
java-pkg-2_src_prepare
|
|
}
|
|
|
|
src_compile() {
|
|
append-flags -fPIC
|
|
tc-export CC
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
dolib.so lib${PN}.so
|
|
dosym lib${PN}.so /usr/$(get_libdir)/libnative.so
|
|
}
|