summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-04-29 23:46:36 +0000
committerMike Frysinger <vapier@gentoo.org>2003-04-29 23:46:36 +0000
commit67022c78ca0bbbe6fc5e798535bca56fd21d483f (patch)
tree9e1c7c790cf6c2fc804592b3ab8f856bfce9b07b /dev-libs
parentversion bump (diff)
downloadgentoo-2-67022c78ca0bbbe6fc5e798535bca56fd21d483f.tar.gz
gentoo-2-67022c78ca0bbbe6fc5e798535bca56fd21d483f.tar.bz2
gentoo-2-67022c78ca0bbbe6fc5e798535bca56fd21d483f.zip
initial ebuild
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libtommath/ChangeLog8
-rw-r--r--dev-libs/libtommath/Manifest2
-rw-r--r--dev-libs/libtommath/files/digest-libtommath-0.161
-rw-r--r--dev-libs/libtommath/libtommath-0.16.ebuild22
4 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/libtommath/ChangeLog b/dev-libs/libtommath/ChangeLog
new file mode 100644
index 000000000000..5e9b7c9682a3
--- /dev/null
+++ b/dev-libs/libtommath/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-libs/libtommath
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.1 2003/04/29 23:46:36 vapier Exp $
+
+*libtommath-0.16 (30 Apr 2003)
+
+ 30 Apr 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by me.
diff --git a/dev-libs/libtommath/Manifest b/dev-libs/libtommath/Manifest
new file mode 100644
index 000000000000..1ee074490975
--- /dev/null
+++ b/dev-libs/libtommath/Manifest
@@ -0,0 +1,2 @@
+MD5 997ef61df00f7f5a2ec937983e0aa71c libtommath-0.16.ebuild 480
+MD5 341f02807acfb7a48ff7ccf690835b54 files/digest-libtommath-0.16 61
diff --git a/dev-libs/libtommath/files/digest-libtommath-0.16 b/dev-libs/libtommath/files/digest-libtommath-0.16
new file mode 100644
index 000000000000..d2a98a52ee9b
--- /dev/null
+++ b/dev-libs/libtommath/files/digest-libtommath-0.16
@@ -0,0 +1 @@
+MD5 b21d0b49982f234c23d1d72900603c77 ltm-0.16.tar.bz2 292526
diff --git a/dev-libs/libtommath/libtommath-0.16.ebuild b/dev-libs/libtommath/libtommath-0.16.ebuild
new file mode 100644
index 000000000000..191790b6a6e1
--- /dev/null
+++ b/dev-libs/libtommath/libtommath-0.16.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.16.ebuild,v 1.1 2003/04/29 23:46:36 vapier Exp $
+
+DESCRIPTION="highly optimized and portable routines for integer based number theoretic applications"
+HOMEPAGE="http://math.libtomcrypt.org/"
+SRC_URI="http://math.libtomcrypt.org/files/ltm-${PV}.tar.bz2"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="x86"
+
+DEPEND="app-text/tetex"
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ emake install DESTDIR=${D} || die
+ dodoc changes.txt
+}