Gentoo Archives: gentoo-commits

From: Thomas Sachau <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/NativeThread/
Date: Sat, 14 Sep 2019 12:34:26
Message-Id: 1568464409.9dbc369eba1f1e22a6a572f1062b589029aae0ea.tommy@gentoo
1 commit: 9dbc369eba1f1e22a6a572f1062b589029aae0ea
2 Author: Thomas Sachau <tommy <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 14 12:33:29 2019 +0000
4 Commit: Thomas Sachau <tommy <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 14 12:33:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dbc369e
7
8 net-libs/NativeThread: Version bump, fixes bug 680878, fixes bug 670890
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.17
11 Signed-off-by: Thomas Sachau <tommy <AT> gentoo.org>
12
13 net-libs/NativeThread/Manifest | 1 +
14 .../NativeThread/NativeThread-0_pre20190914.ebuild | 32 ++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/net-libs/NativeThread/Manifest b/net-libs/NativeThread/Manifest
18 index 09c35ac99da..bd6f2598b43 100644
19 --- a/net-libs/NativeThread/Manifest
20 +++ b/net-libs/NativeThread/Manifest
21 @@ -1 +1,2 @@
22 DIST NativeThread-0_pre20080330.tar.bz2 2707 BLAKE2B d1b97be9b8b6ae33f716202b7acb246101175d2445a9f92fbada99969471ae06495f94cd03b9de9666af11e1e36506ba979f19707871c6e615dfc8887eb8171a SHA512 c6c4b26e82c02cb4039718e8085f54fad3d2492b3905dbd91b8798c1140a819cf1fab1b8346ab2524e0619d2921b4ae9de6ffa9c18138bccd965e67c28b05ed7
23 +DIST NativeThread-0_pre20190914.tar.bz2 3163 BLAKE2B b16aa3ceb3ea18ea13962e53d68fa2eac1854b9141055de251eedf0c9a2cc284e68f3f2601f49d1ac1d7fcef9fc502bf1877161fdb43b1b941a3b9983829e4a9 SHA512 ff0902b874c72f0e15f35374d0a409271ba236343cf24bc708bc7a72677a9a582013bfb7a1e8fdd2aabb741bb5dc04dc901ff4c09841a85324194644d40c58e6
24
25 diff --git a/net-libs/NativeThread/NativeThread-0_pre20190914.ebuild b/net-libs/NativeThread/NativeThread-0_pre20190914.ebuild
26 new file mode 100644
27 index 00000000000..ccecbccb7bc
28 --- /dev/null
29 +++ b/net-libs/NativeThread/NativeThread-0_pre20190914.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit eutils flag-o-matic java-pkg-2 multilib toolchain-funcs
37 +
38 +DESCRIPTION="NativeThread for priorities on linux for freenet"
39 +HOMEPAGE="http://www.freenetproject.org/"
40 +SRC_URI="mirror://gentoo/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND=">=net-p2p/freenet-0.7
48 + >=virtual/jdk-1.4"
49 +RDEPEND=""
50 +
51 +S="${WORKDIR}"
52 +
53 +src_compile() {
54 + append-flags -fPIC
55 + tc-export CC
56 + emake || die
57 +}
58 +
59 +src_install() {
60 + dolib.so lib${PN}.so || die
61 + dosym lib${PN}.so /usr/$(get_libdir)/libnative.so || die
62 +}