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.
35 lines
793 B
35 lines
793 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=4
|
|
DESCRIPTION="George Woltman's GWNUM library"
|
|
HOMEPAGE="http://www.mersenne.org/freesoft/"
|
|
# Sourcecode split out from prime95, we don't need the full lib
|
|
SRC_URI="http://gentooexperimental.org/~patrick/${P}.tar.bz2"
|
|
|
|
inherit eutils
|
|
|
|
LICENSE="gwnum BSD GPL-2+"
|
|
SLOT="0"
|
|
# Need to test if it actually compiles on x86
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
RESTRICT="bindist" #465566
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
# makefile doesn't return zero? || die fails :(
|
|
use amd64 && emake -f make64
|
|
use x86 && emake
|
|
}
|
|
|
|
src_install() {
|
|
mkdir "${D}/usr/lib" -p
|
|
cp gwnum.a gwnum.lib "${D}/usr/lib" || die
|
|
mkdir "${D}/usr/include" -p
|
|
cp *.h "${D}/usr/include" || die
|
|
}
|