blob: 2110b27f395bbc1d68f26e7b03a83959a9ef857e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/neartree/neartree-3.1.1.ebuild,v 1.2 2011/12/15 21:39:19 jlec Exp $
EAPI=4
inherit base flag-o-matic multilib toolchain-funcs versionator
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}/${PN}/${MY_P}/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
RDEPEND="dev-libs/cvector"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/${MY_P}
PATCHES=(
"${FILESDIR}"/${PV}-test.patch
"${FILESDIR}"/${PV}-gentoo.patch
"${FILESDIR}"/${PV}-notest.patch
)
src_prepare() {
base_src_prepare
sed \
-e "s:GENTOOLIBDIR:$(get_libdir):g" \
-e "s:/usr:${EPREFIX}/usr:g" \
-i Makefile || die
tc-export CC CXX
}
src_compile() {
emake all
}
src_install() {
default
if ! use static-libs; then
rm "${ED}"/usr/$(get_libdir)/*.{a,la} || die
fi
dodoc README_NearTree.txt
dohtml *.html
}
|