blob: 88a1c6790c41491e2c79ae9d0e6b98fc48cf184b (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/neartree/neartree-2.1.4.ebuild,v 1.1 2010/02/03 20:23:57 jlec Exp $
EAPI="3"
inherit eutils flag-o-matic toolchain-funcs
MY_PN=NearTree
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Function library efficiently solving the Nearest Neighbor Problem(known as the post office problem)"
HOMEPAGE="http://neartree.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}/${MY_PN}.zip -> ${P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/cvector"
DEPEND="${RDEPEND}"
S="${WORKDIR}"
src_prepare() {
epatch "${FILESDIR}"/${PV}-FLAGS.patch
epatch "${FILESDIR}"/${PV}-gcc4.3.patch
epatch "${FILESDIR}"/${PV}-iterator.patch
epatch "${FILESDIR}"/${PV}-test.patch
sed \
-e "s:GENTOOLIBDIR:$(get_libdir):g" \
-e "s:/usr:${EPREFIX}/usr:g" \
-i Makefile
}
src_compile() {
emake \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
all || die
}
src_test() {
emake \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
tests || die
}
src_install() {
dobin bin/* || die "failed to install bins"
dolib.a lib/.libs/*.a || die "failed to install libs"
insinto /usr/include
doins *.h || die "failed to install includes"
dodoc README_NearTree.txt || die
dohtml *.html || die
}
|