commit: 1d5b22ec60e28c5d5cc23c1917b0263a24b1e9b2
Author: Simon van der Maas <svdm-gentoo <AT> protonmail <DOT> com>
AuthorDate: Tue Feb 16 20:59:44 2021 +0000
Commit: Simon van der Maas <svdm-gentoo <AT> protonmail <DOT> com>
CommitDate: Tue Feb 16 20:59:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d5b22ec
app-misc/lf: fixed ebuild
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Simon van der Maas <svdm-gentoo <AT> protonmail.com>
app-misc/lf/lf-20.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/app-misc/lf/lf-20.ebuild b/app-misc/lf/lf-20.ebuild
index e75901ce..36aa78f3 100644
--- a/app-misc/lf/lf-20.ebuild
+++ b/app-misc/lf/lf-20.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit go-module golang-build
+inherit go-module
EGO_SUM=(
"github.com/gdamore/encoding v1.0.0"
@@ -40,9 +40,11 @@ S="${WORKDIR}/lf-r${PV}"
EGO_PN=github.com/gokcehan/lf
src_compile() {
- go build
+ go build -x || die
}
src_install() {
dobin "lf"
+ einstalldocs
+ doman "lf.1"
}