commit: 9402dc50f3cfb5c17fe9750383704fc8c276a4d2 Author: Mark Harmstone <mark <AT> harmstone <DOT> com> AuthorDate: Wed Jul 31 19:30:24 2024 +0000 Commit: Mark Harmstone <mark <AT> harmstone <DOT> com> CommitDate: Wed Jul 31 19:30:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9402dc50
sys-fs/fsverity-utils: fix errors in ebuild Signed-off-by: Mark Harmstone <mark <AT> harmstone.com> sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild index b1d55cd06..9dbcd8b68 100644 --- a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild +++ b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild @@ -16,17 +16,19 @@ fi DESCRIPTION="Userspace utility for file-level integrity/authenticity verification" HOMEPAGE="https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git" -LICENSE="GPL-2" +LICENSE="MIT" SLOT="0" DEPEND="dev-libs/openssl:=" RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" src_compile() { - emake CC="$(tc-getCC)" + emake CC="$(tc-getCC)" PKGCONF="$(tc-getPKG_CONFIG)" } src_install() { - emake install CC="$(tc-getCC)" DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" + emake install CC="$(tc-getCC)" PKGCONF="$(tc-getPKG_CONFIG)" DESTDIR="${D}" \ + PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" }
