blob: b1073f7e8a3faa615498c4073630771e546a728e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic java-pkg-2 toolchain-funcs
DESCRIPTION="NativeThread for priorities on linux for freenet"
HOMEPAGE="https://www.freenetproject.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
CDEPEND="
dev-java/jna:4
"
DEPEND="net-p2p/freenet
>=virtual/jdk-1.8:*"
RDEPEND=">=virtual/jre-1.8:*"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}/${P}-javah.patch"
)
src_prepare() {
default
}
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
}
|