aboutsummaryrefslogtreecommitdiff
blob: ec2cc90521e97b394e93d113cbe79fee6d333cba (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

inherit git-r3 eutils fortran-2

DESCRIPTION="High quality system independent, open source libm"
HOMEPAGE="http://julialang.org/"
SRC_URI=""
EGIT_REPO_URI="git://github.com/JuliaLang/openlibm.git"

LICENSE="MIT freedist public-domain BSD"
SLOT="0"
KEYWORDS=""

IUSE="static-libs"

src_prepare() {
	epatch \
		"${FILESDIR}"/${PN}-respect-toolchain.patch
}

src_compile() {
	emake libopenlibm.so
	use static-libs && emake libopenlibm.a
}

src_test() {
	default
}

src_install() {
	dolib.so libopenlibm.so*
	use static-libs && dolib.a libopenlibm.a
	doheader include/{cdefs,types}-compat.h src/openlibm.h
	dodoc README.md
}