diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 02:14:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 02:14:41 +0000 |
commit | 88e395472d2c0656e0d9a758f2ba39069b5c88c6 (patch) | |
tree | 067cfebaec20b3825171c51ae2f6cb8f68afb653 | |
parent | Removing the ~mips keywords from all ebuilds since it should never have been ... (diff) | |
download | gentoo-2-88e395472d2c0656e0d9a758f2ba39069b5c88c6.tar.gz gentoo-2-88e395472d2c0656e0d9a758f2ba39069b5c88c6.tar.bz2 gentoo-2-88e395472d2c0656e0d9a758f2ba39069b5c88c6.zip |
Fix by solar to prevent stack overflow in build util #99487.
(Portage version: 2.0.51.22-r2)
-rw-r--r-- | dev-libs/libtommath/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libtommath/files/digest-libtommath-0.36 | 1 | ||||
-rw-r--r-- | dev-libs/libtommath/libtommath-0.36.ebuild | 18 |
3 files changed, 26 insertions, 2 deletions
diff --git a/dev-libs/libtommath/ChangeLog b/dev-libs/libtommath/ChangeLog index 48fb824801df..fd7653f10ad2 100644 --- a/dev-libs/libtommath/ChangeLog +++ b/dev-libs/libtommath/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libtommath -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.12 2005/03/17 00:08:00 vapier Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.13 2005/08/10 02:14:40 vapier Exp $ + +*libtommath-0.36 (10 Aug 2005) + + 10 Aug 2005; Mike Frysinger <vapier@gentoo.org> +libtommath-0.36.ebuild: + Fix by solar to prevent stack overflow in build util #99487. *libtommath-0.35 (17 Mar 2005) diff --git a/dev-libs/libtommath/files/digest-libtommath-0.36 b/dev-libs/libtommath/files/digest-libtommath-0.36 new file mode 100644 index 000000000000..ca35fa04a92c --- /dev/null +++ b/dev-libs/libtommath/files/digest-libtommath-0.36 @@ -0,0 +1 @@ +MD5 cd4f9305e1b721b3c3eb7bcdc25abfc6 ltm-0.36.tar.bz2 1924150 diff --git a/dev-libs/libtommath/libtommath-0.36.ebuild b/dev-libs/libtommath/libtommath-0.36.ebuild new file mode 100644 index 000000000000..d079c46c659a --- /dev/null +++ b/dev-libs/libtommath/libtommath-0.36.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36.ebuild,v 1.1 2005/08/10 02:14:40 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="~amd64 ~ppc ~x86" +IUSE="" + +src_install() { + make install DESTDIR="${D}" || die + dodoc changes.txt *.pdf + docinto demo ; dodoc demo/* +} |