summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-18 14:05:14 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-18 14:05:14 +0200
commit0115733449ace2a81ffc6eaa3ebff033da1bbf34 (patch)
tree54c234cf304af8b68b1c5b33b3240be9e17e5ec1 /sci-mathematics
parentsci-astronomy/casa-data: Drop unmaintained live ebuild (diff)
downloadgentoo-0115733449ace2a81ffc6eaa3ebff033da1bbf34.tar.gz
gentoo-0115733449ace2a81ffc6eaa3ebff033da1bbf34.tar.bz2
gentoo-0115733449ace2a81ffc6eaa3ebff033da1bbf34.zip
sci-mathematics/yafu: 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/yafu/yafu-9999.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sci-mathematics/yafu/yafu-9999.ebuild b/sci-mathematics/yafu/yafu-9999.ebuild
deleted file mode 100644
index 76173ba1c425..000000000000
--- a/sci-mathematics/yafu/yafu-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
-
-inherit subversion versionator
-
-DESCRIPTION="Yet another factoring utility"
-HOMEPAGE="https://sourceforge.net/projects/yafu/"
-#SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
-ESVN_REPO_URI="https://svn.code.sf.net/p/yafu/code/"
-
-SLOT="0"
-LICENSE="public-domain"
-
-DEPEND="
- dev-libs/gmp:0=
- sci-mathematics/gmp-ecm"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- cd trunk
- # This is not nice. But then the Makefile is quite special :)
- sed -i -e 's:../gmp/include:gmp:' Makefile || die "Failed to rectify things"
- sed -i -e 's:../gmp-ecm/include:gmp-ecm:' Makefile || die "Failed to rectify things"
- sed -i -e 's:LIBS += -L../:# LIBS += -L../:g' Makefile || die "Failed to rectify things"
- sed -i -e 's:\"config.h\":<gmp-ecm/config.h>:g' top/driver.c || die "Failed to rectify things"
- sed -i -e 's:# LIBS += -L../msieve/lib/linux/x86_64:LIBS += -lmsieve -lz -ldl:' Makefile || die "Failed to rectify things"
- sed -i -e 's:CFLAGS = -g:#CFLAGS = -g:' Makefile || die "Failed to rectify things"
- sed -i -e '/$(LIBS)$/s:$(CC):$(CC) $(LDFLAGS):g' Makefile || die
-
- # proper ggnfs default path
- sed -i -e 's~strcpy(fobj->nfs_obj.ggnfs_dir,"./");~strcpy(fobj->nfs_obj.ggnfs_dir,"/usr/bin/");~' factor/factor_common.c || die "Failed to rectify things"
-}
-
-src_compile() {
- local VAR=""
- cd trunk
- # hmm, not that useful:
- #VAR="TIMING=1 "
- use amd64 && emake $VAR x86_64
- use x86 && emake $VAR x86
-}
-
-src_install() {
- dobin "${S}/yafu"
- dodoc docfile.txt README yafu.ini
-}