app-emulation/runc: fix ebuild for cross-compilation

This commit is contained in:
Nick Owens 2016-06-22 11:34:39 -07:00
parent 406a5ac977
commit 1f415cbdbf

View File

@ -2,21 +2,22 @@
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
# $Id$ # $Id$
EAPI=6 EAPI=5
inherit eutils multilib GITHUB_URI="github.com/opencontainers/runc"
COREOS_GO_PACKAGE="${GITHUB_URI}"
inherit eutils multilib coreos-go
DESCRIPTION="runc container cli tools" DESCRIPTION="runc container cli tools"
HOMEPAGE="http://runc.io" HOMEPAGE="http://runc.io"
GITHUB_URI="github.com/opencontainers/runc"
if [[ ${PV} == *9999* ]]; then if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://${GITHUB_URI}.git" EGIT_REPO_URI="git://${GITHUB_URI}.git"
inherit git-r3 inherit git-r3
else else
SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64" KEYWORDS="amd64 arm64"
fi fi
LICENSE="Apache-2.0" LICENSE="Apache-2.0"
@ -27,6 +28,12 @@ DEPEND=">=dev-lang/go-1.4:="
RDEPEND="seccomp? ( sys-libs/libseccomp )" RDEPEND="seccomp? ( sys-libs/libseccomp )"
src_compile() { src_compile() {
# fix up cross-compiling variables
export GOARCH=$(go_get_arch)
export CGO_ENABLED=1
export CC=$(tc-getCC)
export CXX=$(tc-getCXX)
# Taken from app-emulation/docker-1.7.0-r1 # Taken from app-emulation/docker-1.7.0-r1
export CGO_CFLAGS="-I${ROOT}/usr/include" export CGO_CFLAGS="-I${ROOT}/usr/include"
export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)" export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)"