commit: 7f6529a2533ed410816d79c4e514de5eddc2f449 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Tue Dec 29 08:54:24 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Tue Dec 29 08:59:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6529a2
app-emulation/conmon: use CC variable and system go-md2man Closes: https://bugs.gentoo.org/762376 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> app-emulation/conmon/conmon-2.0.22.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-emulation/conmon/conmon-2.0.22.ebuild b/app-emulation/conmon/conmon-2.0.22.ebuild index e8b2c72ef57..22d66f80a27 100644 --- a/app-emulation/conmon/conmon-2.0.22.ebuild +++ b/app-emulation/conmon/conmon-2.0.22.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + EGIT_COMMIT="9c34a8663b85e479e0c083801e89a2b2835228ed" DESCRIPTION="An OCI container runtime monitor" HOMEPAGE="https://github.com/containers/conmon" @@ -29,9 +31,12 @@ src_prepare() { -e 's| $(PKG_CONFIG) --exists libsystemd | false |' \ -i Makefile || die fi + sed -e 's|make -C tools|$(MAKE) -C tools|' -i Makefile || die + sed -e 's|^GOMD2MAN = .*|GOMD2MAN = go-md2man|' -i docs/Makefile || die } src_compile() { + tc-export CC emake GIT_COMMIT="${EGIT_COMMIT}" \ all }
