diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-03 12:36:15 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-03 12:36:15 +0000 |
commit | 8bbe074d6d324f9891df8d9b1f713ecc3bfa52b0 (patch) | |
tree | 4355bcf0c0e808b8537ca42a29ef2433e3b89a32 /dev-libs/libtommath/libtommath-0.36-r1.ebuild | |
parent | version bump. crypto herd takes control too (diff) | |
download | gentoo-2-8bbe074d6d324f9891df8d9b1f713ecc3bfa52b0.tar.gz gentoo-2-8bbe074d6d324f9891df8d9b1f713ecc3bfa52b0.tar.bz2 gentoo-2-8bbe074d6d324f9891df8d9b1f713ecc3bfa52b0.zip |
Fix installation of libraries on multilib-strict.
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'dev-libs/libtommath/libtommath-0.36-r1.ebuild')
-rw-r--r-- | dev-libs/libtommath/libtommath-0.36-r1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-libs/libtommath/libtommath-0.36-r1.ebuild b/dev-libs/libtommath/libtommath-0.36-r1.ebuild index 9a0603ec33b7..b27027c1cec5 100644 --- a/dev-libs/libtommath/libtommath-0.36-r1.ebuild +++ b/dev-libs/libtommath/libtommath-0.36-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36-r1.ebuild,v 1.1 2006/03/03 03:24:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.36-r1.ebuild,v 1.2 2006/03/03 12:36:15 flameeyes Exp $ -inherit eutils +inherit eutils multilib DESCRIPTION="highly optimized and portable routines for integer based number theoretic applications" HOMEPAGE="http://math.libtomcrypt.org/" @@ -23,11 +23,11 @@ src_unpack() { } src_compile() { - emake -f makefile.shared IGNORE_SPEED=1 || die + emake -f makefile.shared IGNORE_SPEED=1 LIBPATH="/usr/$(get_libdir)" || die } src_install() { - make -f makefile.shared install DESTDIR="${D}" || die + make -f makefile.shared install DESTDIR="${D}" LIBPATH="/usr/$(get_libdir)" || die dodoc changes.txt *.pdf docinto demo ; dodoc demo/* } |