diff -u old/git-crypt-0.6.0.ebuild new/git-crypt-0.6.0.ebuild --- old/git-crypt-0.6.0.ebuild 2019-07-02 17:24:25.893281676 -0400 +++ new/git-crypt-0.6.0.ebuild 2019-07-02 17:38:55.396661511 -0400 @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -12,9 +12,13 @@ KEYWORDS="~amd64 ~x86" RDEPEND="dev-vcs/git" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} dev-libs/libxslt" + +src_compile() { + ENABLE_MAN=yes emake || die "emake failed" +} src_install() { mkdir -p "${D}"/usr/bin - emake PREFIX="${D}"/usr install + ENABLE_MAN=yes emake PREFIX="${D}"/usr install }