blob: 0f6024c6b9b9e37cef333dd89d42d1bed4d125fe (
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
62
63
64
65
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils flag-o-matic multilib
DESCRIPTION="Elliptic Curve Method for Integer Factorization"
HOMEPAGE="http://ecm.gforge.inria.fr/"
SRC_URI="https://gforge.inria.fr/frs/download.php/32159/${P}.tar.gz"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+blas +custom-tune gwnum -openmp static-libs test"
DEPEND="
dev-libs/gmp:0=
blas? ( sci-libs/gsl )
gwnum? ( sci-mathematics/gwnum )
openmp? ( sys-devel/gcc:*[openmp] )"
RDEPEND="${DEPEND}"
# can't be both enabled
REQUIRED_USE="gwnum? ( !openmp )"
S=${WORKDIR}/ecm-${PV}
MAKEOPTS+=" -j1"
src_prepare() {
sed -e '/libecm_la_LIBADD/s:$: -lgmp:g' -i Makefile.am || die
eautoreconf
}
src_configure() {
use gwnum && local myconf="--with-gwnum="${EPREFIX}"/usr/$(get_libdir)"
# --enable-shellcmd is broken
econf \
--enable-shared \
$(use_enable static-libs static) \
$(use_enable openmp) \
${myconf}
}
src_compile() {
append-ldflags "-Wl,-z,noexecstack"
if use custom-tune; then
use amd64 && cd x86_64
use x86 && cd pentium4
emake
cd .. && make bench_mulredc || die
sed -i -e 's:#define TUNE_MULREDC_TABLE://#define TUNE_MULREDC_TABLE:g' `readlink ecm-params.h` || die
sed -i -e 's:#define TUNE_SQRREDC_TABLE://#define TUNE_SQRREDC_TABLE:g' `readlink ecm-params.h` || die
./bench_mulredc | tail -n 4 >> `readlink ecm-params.h` || die
fi
default
}
src_install() {
default
mkdir -p "${ED}/usr/include/${PN}/"
cp "${S}"/*.h "${ED}/usr/include/${PN}" || die "Failed to copy headers" # needed by other apps like YAFU
}
|