diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-18 14:05:42 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-18 14:05:42 +0200 |
commit | 54d055e9ebdb2ff79557ae136685701c085f425f (patch) | |
tree | 150f5ca8ee16d6dbf091823f16c7592d25ee9c34 /sci-mathematics | |
parent | sci-mathematics/yafu: Drop unmaintained live ebuild (diff) | |
download | gentoo-54d055e9ebdb2ff79557ae136685701c085f425f.tar.gz gentoo-54d055e9ebdb2ff79557ae136685701c085f425f.tar.bz2 gentoo-54d055e9ebdb2ff79557ae136685701c085f425f.zip |
sci-mathematics/gmp-ecm: Drop unmaintained live ebuild
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild b/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild deleted file mode 100644 index 2a431acc63f7..000000000000 --- a/sci-mathematics/gmp-ecm/gmp-ecm-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Elliptic Curve Method for Integer Factorization" -HOMEPAGE="http://ecm.gforge.inria.fr/" -#SRC_URI="https://gforge.inria.fr/frs/download.php/30965/${P}.tar.gz" -ESVN_REPO_URI="svn://scm.gforge.inria.fr/svnroot/ecm/trunk" - -inherit autotools flag-o-matic subversion - -LICENSE="GPL-3 LGPL-3" -SLOT="0" -KEYWORDS="" -IUSE="blas -openmp test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-libs/gmp:0= - blas? ( sci-libs/gsl ) - openmp? ( sys-devel/gcc:*[openmp] )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/ecm-${PV} - -MAKEOPTS+=" -j1" - -src_prepare() { - eautoreconf -} - -src_configure() { - # --enable-shellcmd is broken - econf $(use_enable openmp) $myconf -} - -src_compile() { - append-ldflags "-Wl,-z,noexecstack" - # the custom-tune bits are obsoleted with sane defaults - default -} - -src_install() { - default - mkdir -p "${D}/usr/include/${PN}/" - cp "${S}"/*.h "${D}/usr/include/${PN}" || die "Failed to copy headers" # needed by other apps like YAFU -} |