You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/yafu/yafu-1.33-r1.ebuild

56 lines
1.9 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-1.33-r1.ebuild,v 1.2 2012/11/28 08:12:53 patrick Exp $
EAPI=4
DESCRIPTION="Yet another factoring utility"
HOMEPAGE="http://sourceforge.net/projects/yafu/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
inherit eutils
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# nfs is overloaded, so using less confusing sieve here
IUSE="+sieve"
DEPEND="dev-libs/gmp
sci-mathematics/gmp-ecm
sieve? ( sci-mathematics/msieve
sci-mathematics/ggnfs )"
RDEPEND="${DEPEND}"
src_prepare() {
# 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:' Makefile || die "Failed to rectify things"
sed -i -e 's:CFLAGS = -g:#CFLAGS = -g:' Makefile || die "Failed to rectify things"
}
src_compile() {
# hmm, not that useful:
#VAR="TIMING=1 "
if use sieve; then
VAR+="NFS=1"
fi
if use amd64; then
emake $VAR x86_64 || die "Failed to build"
fi
if use x86; then
emake $VAR x86 || die "Failed to build"
fi
}
src_install() {
mkdir -p "${D}/usr/bin/"
cp "${S}/yafu" "${D}/usr/bin/" || die "Failed to install"
mkdir -p "${D}/usr/share/doc/${PN}"
cp "${S}/docfile.txt" "${D}/usr/share/doc/${PN}/yafu.txt" || die "Failed to install"
cp "${S}/README" "${D}/usr/share/doc/${PN}/" || die "Failed to install"
cp "${S}/yafu.ini" "${D}/usr/share/doc/${PN}/yafu.ini.example" || die "Failed to install"
}