diff --git a/app-portage/golop/golop-0.0.1-r1.ebuild b/app-portage/golop/golop-0.0.1-r1.ebuild new file mode 100644 index 0000000000000..461b2e016c8d1 --- /dev/null +++ b/app-portage/golop/golop-0.0.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +EGO_PN=github.com/klausman/golop + +if [[ ${PV} = *9999* ]]; then + inherit golang-vcs +else + KEYWORDS="~amd64 ~x86" + EGIT_COMMIT=v${PV} + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot +fi +inherit golang-build prefix + +DESCRIPTION="A pure Go re-implementation of genlop" +HOMEPAGE="https://github.com/klausman/golop" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" +DEPEND="" +RDEPEND="" + +src_prepare() { + sed -i -e 's@/var/log/emerge.log@'"${EPREFIX}"'&@g' src/github.com/klausman/golop/main.go || die + default +} + +src_install() { + dobin ${PN} + + declare -a DOCS + DOCS+=( src/${EGO_PN}/README.md ) + einstalldocs +} diff --git a/app-portage/golop/golop-9999.ebuild b/app-portage/golop/golop-9999.ebuild index 9e60869091a0a..461b2e016c8d1 100644 --- a/app-portage/golop/golop-9999.ebuild +++ b/app-portage/golop/golop-9999.ebuild @@ -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="6" @@ -12,7 +12,7 @@ else SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" inherit golang-vcs-snapshot fi -inherit golang-build +inherit golang-build prefix DESCRIPTION="A pure Go re-implementation of genlop" HOMEPAGE="https://github.com/klausman/golop" @@ -22,6 +22,11 @@ IUSE="" DEPEND="" RDEPEND="" +src_prepare() { + sed -i -e 's@/var/log/emerge.log@'"${EPREFIX}"'&@g' src/github.com/klausman/golop/main.go || die + default +} + src_install() { dobin ${PN}