commit:     0ca6bb861126138b2c31564621e7f62777a1e391
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  4 14:41:59 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 14:41:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ca6bb86

dev-libs/libmpack: drop 1.0.5-r3

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-libs/libmpack/libmpack-1.0.5-r3.ebuild | 68 ------------------------------
 1 file changed, 68 deletions(-)

diff --git a/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild 
b/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild
deleted file mode 100644
index 961da8a30902..000000000000
--- a/dev-libs/libmpack/libmpack-1.0.5-r3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools 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"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-libtool.patch # 778899
-)
-
-src_prepare() {
-       default
-
-       # Respect users CFLAGS
-       sed -e 's/-ggdb//g' -i Makefile.in || die
-       sed -e 's/-O3//g' -i .config/release.mk || die
-
-       eautoreconf
-}
-
-src_compile() {
-       local myemakeargs=(
-               "VERBOSE=1"
-               "PREFIX=${EPREFIX}/usr"
-               "CC=$(tc-getCC)"
-               "config=release"
-               "LIBDIR=${EPREFIX}/usr/$(get_libdir)"
-               "INCDIR=${EPREFIX}/usr/include"
-       )
-
-       emake "${myemakeargs[@]}" lib-bin
-}
-
-src_test() {
-       emake VERBOSE=1 XLDFLAGS="-shared" test
-}
-
-src_install() {
-       local myemakeargs=(
-               "VERBOSE=1"
-               "PREFIX=${EPREFIX}/usr"
-               "DESTDIR=${D}"
-               "LIBDIR=${EPREFIX}/usr/$(get_libdir)"
-               "INCDIR=${EPREFIX}/usr/include"
-               "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
-}

Reply via email to