commit: 760b6698478893fa6438c8ea86ad72146af815b9
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 23 16:37:54 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Jan 23 16:40:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=760b6698
app-admin/serf: avoid zip dependency for bug 606926
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/serf/serf-0.8.0.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/app-admin/serf/serf-0.8.0.ebuild b/app-admin/serf/serf-0.8.0.ebuild
index a28a225..a8b7fc5 100644
--- a/app-admin/serf/serf-0.8.0.ebuild
+++ b/app-admin/serf/serf-0.8.0.ebuild
@@ -78,8 +78,11 @@ src_prepare() {
src_compile() {
export GOPATH="${S}"
go install -v -work -x ${EGO_BUILD_FLAGS}
"github.com/mitchellh/gox/..." || die
- PATH=${PATH}:${S}/bin XC_ARCH=$(go env GOARCH) XC_OS=$(go env GOOS) \
- emake -C "${S}/src/${EGO_PN}" bin
+ # The dev target sets causes build.sh to set appropriate XC_OS
+ # and XC_ARCH, and skips generation of an unused zip file,
+ # avoiding a dependency on app-arch/zip.
+ PATH=${PATH}:${S}/bin \
+ emake -C "${S}/src/${EGO_PN}" dev
}
src_install() {