# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit flag-o-matic multilib-minimal toolchain-funcs DESCRIPTION="Lossy speech compression library and tool" HOMEPAGE="https://packages.qa.debian.org/libg/libgsm.html" SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="gsm" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" S="${WORKDIR}/${PN}-$(ver_rs 2 '-pl' )" PATCHES=( "${FILESDIR}"/${P}-shared.patch "${FILESDIR}"/${PN}-1.0.12-memcpy.patch "${FILESDIR}"/${PN}-1.0.12-64bit.patch ) DOCS=( ChangeLog MACHINES MANIFEST README ) src_prepare() { default sed -e 's/\$(GSM_INSTALL_LIB)\/libgsm.a //g' -i Makefile || die multilib_copy_sources } src_configure() { # From upstream Makefile. Define this if your host multiplies # floats faster than integers, e.g. on a SPARCstation. use sparc && append-flags -DUSE_FLOAT_MUL -DFAST } multilib_src_compile() { emake -j1 CCFLAGS="${CFLAGS} -c -DNeedFunctionPrototypes=1" \ LD="$(tc-getCC)" AR="$(tc-getAR)" CC="$(tc-getCC)" RANLIB="$(tc-getRANLIB)" } multilib_src_install() { dodir /usr/bin /usr/$(get_libdir) /usr/include/gsm /usr/share/man/man{1,3} emake -j1 INSTALL_ROOT="${ED}"/usr \ LD="$(tc-getCC)" AR="$(tc-getAR)" CC="$(tc-getCC)" RANLIB="$(tc-getRANLIB)" \ GSM_INSTALL_LIB="${ED}"/usr/$(get_libdir) \ GSM_INSTALL_INC="${ED}"/usr/include/gsm \ GSM_INSTALL_MAN="${ED}"/usr/share/man/man3 \ TOAST_INSTALL_MAN="${ED}"/usr/share/man/man1 \ install dolib.so lib/libgsm.so* dosym ../gsm/gsm.h /usr/include/libgsm/gsm.h }