summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-10 02:09:48 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-10 02:09:48 +0000
commit6ce740dce47411daa39816d3ac0d193c469922da (patch)
treed5af1e00da81d3f8ecb4e269019eac172da2f855 /dev-libs
parentMarked Stable on AMD64. (diff)
downloadgentoo-2-6ce740dce47411daa39816d3ac0d193c469922da.tar.gz
gentoo-2-6ce740dce47411daa39816d3ac0d193c469922da.tar.bz2
gentoo-2-6ce740dce47411daa39816d3ac0d193c469922da.zip
Version bump as notified by Tom St Denis.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/tomsfastmath/ChangeLog7
-rw-r--r--dev-libs/tomsfastmath/files/digest-tomsfastmath-0.051
-rw-r--r--dev-libs/tomsfastmath/tomsfastmath-0.05.ebuild24
3 files changed, 31 insertions, 1 deletions
diff --git a/dev-libs/tomsfastmath/ChangeLog b/dev-libs/tomsfastmath/ChangeLog
index bf5dfc511c27..b964c2300a25 100644
--- a/dev-libs/tomsfastmath/ChangeLog
+++ b/dev-libs/tomsfastmath/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/tomsfastmath
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/tomsfastmath/ChangeLog,v 1.1 2005/03/17 00:40:36 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/tomsfastmath/ChangeLog,v 1.2 2005/08/10 02:09:48 vapier Exp $
+
+*tomsfastmath-0.05 (10 Aug 2005)
+
+ 10 Aug 2005; Mike Frysinger <vapier@gentoo.org> +tomsfastmath-0.05.ebuild:
+ Version bump as notified by Tom St Denis.
*tomsfastmath-0.03 (16 Mar 2005)
diff --git a/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.05 b/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.05
new file mode 100644
index 000000000000..772d5e8cd235
--- /dev/null
+++ b/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.05
@@ -0,0 +1 @@
+MD5 0b4a0e82c06c5377368c2f6718b7f5f2 tfm-0.05.zip 318329
diff --git a/dev-libs/tomsfastmath/tomsfastmath-0.05.ebuild b/dev-libs/tomsfastmath/tomsfastmath-0.05.ebuild
new file mode 100644
index 000000000000..609fd0b40969
--- /dev/null
+++ b/dev-libs/tomsfastmath/tomsfastmath-0.05.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2005 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.1 2005/08/10 02:09:48 vapier 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=""
+
+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/*
+}