diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-17 00:40:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-17 00:40:36 +0000 |
commit | e61d36b4b6c61bb8c6ad20a3333cf6bd92e3b252 (patch) | |
tree | b12624c5186926e50589ed4513630fc2fb8dd926 /dev-libs/tomsfastmath | |
parent | Fixing bug #77340 thanks to Chris Rebert (diff) | |
download | gentoo-2-e61d36b4b6c61bb8c6ad20a3333cf6bd92e3b252.tar.gz gentoo-2-e61d36b4b6c61bb8c6ad20a3333cf6bd92e3b252.tar.bz2 gentoo-2-e61d36b4b6c61bb8c6ad20a3333cf6bd92e3b252.zip |
initial import
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-libs/tomsfastmath')
-rw-r--r-- | dev-libs/tomsfastmath/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/tomsfastmath/Manifest | 4 | ||||
-rw-r--r-- | dev-libs/tomsfastmath/files/digest-tomsfastmath-0.03 | 1 | ||||
-rw-r--r-- | dev-libs/tomsfastmath/metadata.xml | 15 | ||||
-rw-r--r-- | dev-libs/tomsfastmath/tomsfastmath-0.03.ebuild | 20 |
5 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/tomsfastmath/ChangeLog b/dev-libs/tomsfastmath/ChangeLog new file mode 100644 index 000000000000..bf5dfc511c27 --- /dev/null +++ b/dev-libs/tomsfastmath/ChangeLog @@ -0,0 +1,8 @@ +# 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 $ + +*tomsfastmath-0.03 (16 Mar 2005) + + 16 Mar 2005; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/dev-libs/tomsfastmath/Manifest b/dev-libs/tomsfastmath/Manifest new file mode 100644 index 000000000000..6ee923fbb949 --- /dev/null +++ b/dev-libs/tomsfastmath/Manifest @@ -0,0 +1,4 @@ +MD5 eb7503b97bbff32c2751fd9c1665ef3f ChangeLog 345 +MD5 8cbe245299db8ecd4ee45d433d33de48 metadata.xml 595 +MD5 e886d7d00bfc3343fe73e7838084fbea tomsfastmath-0.03.ebuild 594 +MD5 ae19a99d559ec8356a20eb9af462bf46 files/digest-tomsfastmath-0.03 57 diff --git a/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.03 b/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.03 new file mode 100644 index 000000000000..86704b1c60f8 --- /dev/null +++ b/dev-libs/tomsfastmath/files/digest-tomsfastmath-0.03 @@ -0,0 +1 @@ +MD5 6b3f24412a63ceeba4747b211915f05f tfm-0.03.zip 216043 diff --git a/dev-libs/tomsfastmath/metadata.xml b/dev-libs/tomsfastmath/metadata.xml new file mode 100644 index 000000000000..567e80ab8208 --- /dev/null +++ b/dev-libs/tomsfastmath/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>vapier@gentoo.org</email> +</maintainer> +<longdescription> +In a nutshell TomsFastMath is meant to be a portable fixed precision math +library geared towards doing one thing very fast. Exponentiations. The modular +kind. Like what you find in RSA and DH. Though TomsFastMath (TFM) is not +limited solely to doing RSA or DH. It's generic enough to be used for other +projects such as ECC as well. +</longdescription> +</pkgmetadata> diff --git a/dev-libs/tomsfastmath/tomsfastmath-0.03.ebuild b/dev-libs/tomsfastmath/tomsfastmath-0.03.ebuild new file mode 100644 index 000000000000..336f001444f7 --- /dev/null +++ b/dev-libs/tomsfastmath/tomsfastmath-0.03.ebuild @@ -0,0 +1,20 @@ +# 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.03.ebuild,v 1.1 2005/03/17 00:40:36 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 ~ppc ~x86" +IUSE="" + +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/* +} |