blob: f7d1128f3c8e772b4b2064a97d3a3817e79fbe21 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/tomsfastmath/tomsfastmath-0.05.ebuild,v 1.3 2006/03/19 22:34:45 halcy0n Exp $
DESCRIPTION="portable fixed precision math library geared towards doing one thing very fast"
HOMEPAGE="http://libtomcrypt.org/tfm/"
SRC_URI="http://libtomcrypt.org/tfm/files/tfm-${PV}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 arm ppc x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
src_compile() {
emake IGNORE_SPEED=1 || die
}
src_install() {
dolib.a libtfm.a || die "dolib.a"
insinto /usr/include
doins tfm.h || die "doinc"
dodoc changes.txt doc/*.pdf
docinto demo ; dodoc demo/*
}
|