diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-10-05 09:49:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-10-05 09:49:26 +0200 |
commit | 7348d99aedd9eefe0111cbb697eb34286d135757 (patch) | |
tree | 5dbe27da7b3cf0c2d86f7083bbb472fddc9d04a8 /net-libs/NativeThread | |
parent | package.mask: Last rite net-libs/openslp (diff) | |
download | gentoo-7348d99aedd9eefe0111cbb697eb34286d135757.tar.gz gentoo-7348d99aedd9eefe0111cbb697eb34286d135757.tar.bz2 gentoo-7348d99aedd9eefe0111cbb697eb34286d135757.zip |
net-libs/NativeThread: Drop old (EAPI=0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-libs/NativeThread')
-rw-r--r-- | net-libs/NativeThread/Manifest | 1 | ||||
-rw-r--r-- | net-libs/NativeThread/NativeThread-0_pre20080330.ebuild | 34 | ||||
-rw-r--r-- | net-libs/NativeThread/files/Makefile.patch | 22 |
3 files changed, 0 insertions, 57 deletions
diff --git a/net-libs/NativeThread/Manifest b/net-libs/NativeThread/Manifest index bd6f2598b433..adf5712647fc 100644 --- a/net-libs/NativeThread/Manifest +++ b/net-libs/NativeThread/Manifest @@ -1,2 +1 @@ -DIST NativeThread-0_pre20080330.tar.bz2 2707 BLAKE2B d1b97be9b8b6ae33f716202b7acb246101175d2445a9f92fbada99969471ae06495f94cd03b9de9666af11e1e36506ba979f19707871c6e615dfc8887eb8171a SHA512 c6c4b26e82c02cb4039718e8085f54fad3d2492b3905dbd91b8798c1140a819cf1fab1b8346ab2524e0619d2921b4ae9de6ffa9c18138bccd965e67c28b05ed7 DIST NativeThread-0_pre20190914.tar.bz2 3163 BLAKE2B b16aa3ceb3ea18ea13962e53d68fa2eac1854b9141055de251eedf0c9a2cc284e68f3f2601f49d1ac1d7fcef9fc502bf1877161fdb43b1b941a3b9983829e4a9 SHA512 ff0902b874c72f0e15f35374d0a409271ba236343cf24bc708bc7a72677a9a582013bfb7a1e8fdd2aabb741bb5dc04dc901ff4c09841a85324194644d40c58e6 diff --git a/net-libs/NativeThread/NativeThread-0_pre20080330.ebuild b/net-libs/NativeThread/NativeThread-0_pre20080330.ebuild deleted file mode 100644 index 219fd6f55fdc..000000000000 --- a/net-libs/NativeThread/NativeThread-0_pre20080330.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils flag-o-matic java-pkg-2 toolchain-funcs - -DESCRIPTION="NativeThread for priorities on linux for freenet" -HOMEPAGE="http://www.freenetproject.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=net-p2p/freenet-0.7 - >=virtual/jdk-1.4" -RDEPEND="" - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/Makefile.patch -} - -src_compile() { - append-flags -fPIC - tc-export CC - emake || die -} - -src_install() { - dolib.so lib${PN}.so || die -} diff --git a/net-libs/NativeThread/files/Makefile.patch b/net-libs/NativeThread/files/Makefile.patch deleted file mode 100644 index e1f0209a6f3f..000000000000 --- a/net-libs/NativeThread/files/Makefile.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- Makefile 2008-03-03 13:59:06.000000000 +0100 -+++ Makefile.new 2008-03-30 16:27:12.000000000 +0200 -@@ -1,14 +1,14 @@ --CC = gcc - INC = $(JAVA_HOME)/include --CFLAGS = -Wall -O3 -fPIC --LDFLAGS = -shared -Wl,-soname,libnative.so -I$(INC) -I$(INC)/linux -+CFLAGS += -Wall -+LDFLAGS += -shared -Wl,-soname,libnative.so -I$(INC) -I$(INC)/linux - LIBS = -lc - - all: clean libNativeThread.so - - NativeThread.class: -- javac java/NativeThread.java -- mv java/NativeThread.class freenet/support/io/ -+ javac -classpath /usr/share/freenet/lib/freenet.jar NativeThread.java -+ mkdir -p freenet/support/io -+ mv NativeThread.class freenet/support/io/ - - libNativeThread.so: NativeThread.c NativeThread.h - $(CC) $(CFLAGS) -o libNativeThread.so $(LDFLAGS) NativeThread.c $(LIBS) |