diff options
author | Michael Palimaka <kensington@gentoo.org> | 2013-07-09 16:35:47 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2013-07-09 16:35:47 +0000 |
commit | 906371f7755783e803948d8d0338f78579b9b224 (patch) | |
tree | e90417e8598b07fdc1ff79d3d4485ad9a2ceea52 /dev-libs/libtommath/libtommath-0.42.0.ebuild | |
parent | Remove old. (diff) | |
download | gentoo-2-906371f7755783e803948d8d0338f78579b9b224.tar.gz gentoo-2-906371f7755783e803948d8d0338f78579b9b224.tar.bz2 gentoo-2-906371f7755783e803948d8d0338f78579b9b224.zip |
Remove old.
(Portage version: 2.1.12.12/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'dev-libs/libtommath/libtommath-0.42.0.ebuild')
-rw-r--r-- | dev-libs/libtommath/libtommath-0.42.0.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-libs/libtommath/libtommath-0.42.0.ebuild b/dev-libs/libtommath/libtommath-0.42.0.ebuild deleted file mode 100644 index 982029b6c524..000000000000 --- a/dev-libs/libtommath/libtommath-0.42.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0.ebuild,v 1.11 2013/03/28 15:43:01 blueness Exp $ - -EAPI=4 - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="highly optimized and portable routines for integer based number theoretic applications" -HOMEPAGE="http://www.libtom.org/" -SRC_URI="http://www.libtom.org/files/ltm-${PV}.tar.bz2" - -LICENSE="WTFPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="doc examples static-libs" - -DEPEND="sys-devel/libtool" - -src_prepare() { - epatch "${FILESDIR}"/${P}-makefile.patch - - [[ ${CHOST} == *-darwin* ]] && \ - sed -i -e 's/libtool/glibtool/g' makefile.shared -} - -src_compile() { - emake CC=$(tc-getCC) -f makefile.shared IGNORE_SPEED=1 LIBPATH="${EPREFIX}/usr/$(get_libdir)" -} - -src_install() { - emake -f makefile.shared install DESTDIR="${ED}" LIBPATH="${EPREFIX}/usr/$(get_libdir)" INCPATH="${EPREFIX}/usr/include" - dodoc changes.txt - - use doc && dodoc *.pdf - - if use examples ; then - docinto demo - dodoc demo/*.c - fi - - use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete -} |