From 6953f9bde6b2f327279fd6d21a0acda9465ea9b2 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 28 Oct 2021 01:46:20 +0100 Subject: dev-libs/libtommath: fix pkg-config libdir See: c90ab38e3577aae61fac2341b34ad593948de1cd Signed-off-by: Sam James --- dev-libs/libtommath/libtommath-1.2.0-r1.ebuild | 93 ++++++++++++++++++++++++++ dev-libs/libtommath/libtommath-1.2.0.ebuild | 92 ------------------------- 2 files changed, 93 insertions(+), 92 deletions(-) create mode 100644 dev-libs/libtommath/libtommath-1.2.0-r1.ebuild delete mode 100644 dev-libs/libtommath/libtommath-1.2.0.ebuild diff --git a/dev-libs/libtommath/libtommath-1.2.0-r1.ebuild b/dev-libs/libtommath/libtommath-1.2.0-r1.ebuild new file mode 100644 index 000000000000..7b117347f4e7 --- /dev/null +++ b/dev-libs/libtommath/libtommath-1.2.0-r1.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools toolchain-funcs + +DESCRIPTION="Optimized and portable routines for integer theoretic applications" +HOMEPAGE="https://www.libtom.net/" +SRC_URI="https://github.com/libtom/libtommath/releases/download/v${PV}/ltm-${PV}.tar.xz" + +LICENSE="Unlicense" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc examples static-libs" + +BDEPEND="sys-devel/libtool" + +PATCHES=( + "${FILESDIR}"/${P}-sparc.patch +) + +src_prepare() { + default + + # 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 || die + + eautoreconf + + export LIBTOOL="${S}"/libtool +} + +src_configure() { + econf $(use_enable static-libs static) +} + +_emake() { + emake \ + CC="$(tc-getCC)" \ + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" \ + IGNORE_SPEED=1 \ + DESTDIR="${ED}" \ + PREFIX="${EPREFIX}/usr" \ + LIBPATH="/usr/$(get_libdir)" \ + INCPATH="/usr/include" \ + "$@" +} + +src_compile() { + _emake -f makefile.shared +} + +src_test() { + # Tests must be built statically + # (i.e. without -f makefile.shared) + _emake test + + ./test || die +} + +src_install() { + _emake -f makefile.shared install + + if [[ ${CHOST} == *-darwin* ]] ; then + local path="usr/$(get_libdir)/libtommath.${PV}.dylib" + install_name_tool -id "${EPREFIX}/${path}" "${ED}/${path}" || die "Failed to adjust install_name" + fi + + # We only link against -lc, so drop the .la file. + find "${ED}" -name '*.la' -delete || die + if ! use static-libs ; then + find "${ED}" -name "*.a" -delete || die + fi + + dodoc changes.txt + + use doc && dodoc doc/*.pdf + + if use examples ; then + docinto demo + dodoc demo/*.c + fi +} diff --git a/dev-libs/libtommath/libtommath-1.2.0.ebuild b/dev-libs/libtommath/libtommath-1.2.0.ebuild deleted file mode 100644 index 50758fca838c..000000000000 --- a/dev-libs/libtommath/libtommath-1.2.0.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools toolchain-funcs - -DESCRIPTION="Optimized and portable routines for integer theoretic applications" -HOMEPAGE="https://www.libtom.net/" -SRC_URI="https://github.com/libtom/libtommath/releases/download/v${PV}/ltm-${PV}.tar.xz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc examples static-libs" - -BDEPEND="sys-devel/libtool" - -PATCHES=( - "${FILESDIR}"/${P}-sparc.patch -) - -src_prepare() { - default - - # 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 || die - - eautoreconf - - export LIBTOOL="${S}"/libtool -} - -src_configure() { - econf $(use_enable static-libs static) -} - -_emake() { - emake \ - CC="$(tc-getCC)" \ - AR="$(tc-getAR)" \ - RANLIB="$(tc-getRANLIB)" \ - IGNORE_SPEED=1 \ - DESTDIR="${ED}" \ - LIBPATH="/usr/$(get_libdir)" \ - INCPATH="/usr/include" \ - "$@" -} - -src_compile() { - _emake -f makefile.shared -} - -src_test() { - # Tests must be built statically - # (i.e. without -f makefile.shared) - _emake test - - ./test || die -} - -src_install() { - _emake -f makefile.shared install - - if [[ ${CHOST} == *-darwin* ]] ; then - local path="usr/$(get_libdir)/libtommath.${PV}.dylib" - install_name_tool -id "${EPREFIX}/${path}" "${ED}/${path}" || die "Failed to adjust install_name" - fi - - # We only link against -lc, so drop the .la file. - find "${ED}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${ED}" -name "*.a" -delete || die - fi - - dodoc changes.txt - - use doc && dodoc doc/*.pdf - - if use examples ; then - docinto demo - dodoc demo/*.c - fi -} -- cgit v1.2.3-65-gdbad