2019-03-22 00:08:59 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2013-11-11 19:34:13 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2019-03-22 00:08:59 +01:00
|
|
|
EAPI=7
|
2013-11-11 19:34:13 +01:00
|
|
|
|
2019-03-22 00:08:59 +01:00
|
|
|
inherit autotools multilib-minimal toolchain-funcs
|
2013-11-11 19:34:13 +01:00
|
|
|
|
2019-03-22 00:08:59 +01:00
|
|
|
DESCRIPTION="Optimized and portable routines for integer theoretic applications"
|
|
|
|
HOMEPAGE="http://www.libtom.net/"
|
2016-03-03 20:22:17 +01:00
|
|
|
SRC_URI="https://github.com/libtom/libtommath/releases/download/v${PV}/ltm-${PV}.tar.xz"
|
2013-11-11 19:34:13 +01:00
|
|
|
|
|
|
|
LICENSE="WTFPL-2"
|
|
|
|
SLOT="0"
|
2019-12-14 20:00:02 +01:00
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
2013-11-11 19:34:13 +01:00
|
|
|
IUSE="doc examples static-libs"
|
|
|
|
|
|
|
|
src_prepare() {
|
2018-04-14 14:49:46 +02:00
|
|
|
default
|
2013-11-11 19:34:13 +01:00
|
|
|
# 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
|
2019-03-22 00:08:59 +01:00
|
|
|
export LIBTOOL="${S}"/libtool
|
2013-11-11 19:34:13 +01:00
|
|
|
multilib_copy_sources
|
|
|
|
}
|
|
|
|
|
2016-03-01 14:58:34 +01:00
|
|
|
src_configure() {
|
|
|
|
econf $(use_enable static-libs static)
|
|
|
|
}
|
|
|
|
|
2013-11-11 19:34:13 +01:00
|
|
|
_emake() {
|
|
|
|
cd ${BUILD_DIR}
|
2018-04-14 14:49:46 +02:00
|
|
|
emake \
|
|
|
|
CC="$(tc-getCC)" \
|
|
|
|
AR="$(tc-getAR)" \
|
|
|
|
RANLIB="$(tc-getRANLIB)" \
|
|
|
|
-f makefile.shared \
|
2013-11-11 19:34:13 +01:00
|
|
|
IGNORE_SPEED=1 \
|
|
|
|
LIBPATH="${EPREFIX}/usr/$(get_libdir)" \
|
|
|
|
INCPATH="${EPREFIX}/usr/include" \
|
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
multilib_foreach_abi _emake
|
|
|
|
}
|
|
|
|
|
2018-04-14 14:49:46 +02:00
|
|
|
src_test() {
|
|
|
|
multilib_foreach_abi _emake test_standalone
|
|
|
|
multilib_foreach_abi ./test || die
|
|
|
|
}
|
|
|
|
|
2013-11-11 19:34:13 +01:00
|
|
|
src_install() {
|
2019-03-22 00:08:59 +01:00
|
|
|
multilib_foreach_abi _emake DESTDIR="${D}" install
|
2013-11-11 19:34:13 +01:00
|
|
|
# We only link against -lc, so drop the .la file.
|
2019-03-22 00:08:59 +01:00
|
|
|
find "${ED}" -name '*.la' -delete || die
|
|
|
|
if ! use static-libs ; then
|
|
|
|
find "${ED}" -name "*.a" -delete || die
|
|
|
|
fi
|
2013-11-11 19:34:13 +01:00
|
|
|
|
|
|
|
dodoc changes.txt
|
|
|
|
|
|
|
|
use doc && dodoc *.pdf
|
|
|
|
|
|
|
|
if use examples ; then
|
|
|
|
docinto demo
|
|
|
|
dodoc demo/*.c
|
|
|
|
fi
|
|
|
|
}
|