net-mail/hydroxide: respect $(makeopts_jobs)

and also simplify docs installing

no revbump because the binary itsef doesn't change and the same files
are installed

Signed-off-by: Leonardo Hernández Hernández <leohdz172@outlook.com>
This commit is contained in:
Leonardo Hernández Hernández 2022-09-22 00:10:47 -05:00
parent 74d1ad6e9f
commit 950e0e64f3
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
3 changed files with 9 additions and 15 deletions

View File

@ -3,7 +3,7 @@
EAPI=8
inherit go-module
inherit go-module multiprocessing
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
@ -38,13 +38,11 @@ src_unpack() {
}
src_compile() {
ego build -v ./cmd/hydroxide
ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
}
src_install() {
local DOCS=( "README.md" )
einstalldocs
default
dobin "${PN}"
}

View File

@ -3,7 +3,7 @@
EAPI=8
inherit go-module
inherit go-module multiprocessing
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
@ -38,13 +38,11 @@ src_unpack() {
}
src_compile() {
ego build -v ./cmd/hydroxide
ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
}
src_install() {
local DOCS=( "README.md" )
einstalldocs
default
dobin "${PN}"
}

View File

@ -3,7 +3,7 @@
EAPI=8
inherit go-module
inherit go-module multiprocessing
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
@ -38,13 +38,11 @@ src_unpack() {
}
src_compile() {
ego build -v ./cmd/hydroxide
ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
}
src_install() {
local DOCS=( "README.md" )
einstalldocs
default
dobin "${PN}"
}