2014-02-10 16:59:40 +01:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2013-11-11 19:34:13 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-02-10 16:59:40 +01:00
|
|
|
# $Header: $
|
2013-11-11 19:34:13 +01:00
|
|
|
|
2014-02-10 16:59:40 +01:00
|
|
|
EAPI="5"
|
2013-11-11 19:34:13 +01:00
|
|
|
|
|
|
|
inherit autotools-multilib 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"
|
2014-03-19 04:59:10 +01:00
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
|
2013-11-11 19:34:13 +01:00
|
|
|
IUSE="doc examples static-libs"
|
|
|
|
|
|
|
|
DEPEND="sys-devel/libtool"
|
|
|
|
RDEPEND=""
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}/${P}-makefile.patch"
|
|
|
|
|
|
|
|
# need libtool for cross compilation. Bug #376643
|
|
|
|
cat <<-EOF > configure.ac
|
|
|
|
AC_INIT(libtommath, 0)
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
LT_INIT
|
|
|
|
AC_CONFIG_FILES(Makefile)
|
|
|
|
AC_OUTPUT
|
|
|
|
EOF
|
|
|
|
touch NEWS README AUTHORS ChangeLog Makefile.am
|
|
|
|
eautoreconf
|
|
|
|
# export LT="${S}"/libtool
|
|
|
|
multilib_copy_sources
|
|
|
|
}
|
|
|
|
|
|
|
|
_emake() {
|
|
|
|
cd ${BUILD_DIR}
|
|
|
|
emake CC="$(tc-getCC)" -f makefile.shared \
|
|
|
|
IGNORE_SPEED=1 \
|
|
|
|
LIBPATH="${EPREFIX}/usr/$(get_libdir)" \
|
|
|
|
INCPATH="${EPREFIX}/usr/include" \
|
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
multilib_foreach_abi _emake
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
multilib_foreach_abi _emake DESTDIR="${ED}" install
|
|
|
|
# We only link against -lc, so drop the .la file.
|
|
|
|
find "${ED}" -name '*.la' -delete
|
|
|
|
|
|
|
|
dodoc changes.txt
|
|
|
|
|
|
|
|
use doc && dodoc *.pdf
|
|
|
|
|
|
|
|
if use examples ; then
|
|
|
|
docinto demo
|
|
|
|
dodoc demo/*.c
|
|
|
|
fi
|
|
|
|
}
|