diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 20:58:32 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:55:21 +0100 |
commit | f02a425517c717aa7ed015e11d7ee326c75aea52 (patch) | |
tree | e1764474fd1cf56f777ccacd73d4add9ab064af8 /dev-libs/libmpack | |
parent | dev-libs/libhid: drop 0.2.17 (diff) | |
download | gentoo-f02a425517c717aa7ed015e11d7ee326c75aea52.tar.gz gentoo-f02a425517c717aa7ed015e11d7ee326c75aea52.tar.bz2 gentoo-f02a425517c717aa7ed015e11d7ee326c75aea52.zip |
dev-libs/libmpack: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-libs/libmpack')
-rw-r--r-- | dev-libs/libmpack/libmpack-1.0.5-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dev-libs/libmpack/libmpack-1.0.5-r1.ebuild b/dev-libs/libmpack/libmpack-1.0.5-r1.ebuild new file mode 100644 index 000000000000..f50ff445c44d --- /dev/null +++ b/dev-libs/libmpack/libmpack-1.0.5-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Simple implementation of msgpack in C" +HOMEPAGE="https://github.com/libmpack/libmpack" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 ~x64-macos" + +src_prepare() { + default + + # Make compiling verbose + sed -e 's/@$(LIBTOOL)/$(LIBTOOL)/g' -i Makefile || die + + # Respect users CFLAGS + sed -e 's/-ggdb//g' -i Makefile || die + sed -e 's/-O3//g' -i .config/release.mk || die +} + +src_compile() { + local myemakeargs=( + "PREFIX=/usr" + "CC=$(tc-getCC)" + "config=release" + "LIBDIR=/usr/$(get_libdir)" + ) + + emake "${myemakeargs[@]}" lib-bin +} + +src_test() { + emake XLDFLAGS="-shared" test +} + +src_install() { + local myemakeargs=( + "PREFIX=/usr" + "DESTDIR=${ED}" + "LIBDIR=/usr/$(get_libdir)" + "XLDFLAGS=-shared" + ) + + emake "${myemakeargs[@]}" install + + if [[ ${CHOST} == *-darwin* ]] ; then + local file="libmpack.0.0.0.dylib" + install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${file}" "${ED}/usr/$(get_libdir)/${file}" || die "Failed to adjust install_name" + fi + + find "${ED}" -name '*.la' -delete || die +} |