Files
guru/dev-libs/imsg-compat/imsg-compat-6.8.0.ebuild
Aisha Tammy d325b99fd6 dev-libs/imsg-compat: imsg utilities from openbsd
ported for linux

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
2020-12-12 19:18:21 -05:00

31 lines
722 B
Bash

# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="linux port of OpenBSD imsg"
HOMEPAGE="https://man.openbsd.org/imsg_init.3
https://github.com/bsd-ac/imsg-compat
"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bsd-ac/imsg-compat.git"
else
SRC_URI="https://github.com/bsd-ac/imsg-compat/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
LICENSE="ISC"
SLOT="0"
IUSE="static-libs test"
RESTRICT="!test? ( test )"
src_install() {
emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
if ! use static-libs ; then
find "${ED}"/usr/$(get_libdir) -name "*.a" -delete || die
fi
}