blob: 8a5516307b34f1c182e50ff784a0f73b5864e125 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
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="http://dev.gentooexperimental.org/~tommy/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-p2p/freenet
>=virtual/jdk-1.4
!net-p2p/NativeThread"
RDEPEND=""
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/Makefile.patch
}
src_compile() {
append-ldflags -fPIC
tc-export CC
emake || die
}
src_install() {
into /opt/freenet
dolib.so libNativeThread.so
}
|