66 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 1999-2022 Gentoo Authors
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
EAPI=7
 | 
						|
 | 
						|
DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
 | 
						|
HOMEPAGE="https://www.mongodb.com"
 | 
						|
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar.gz"
 | 
						|
 | 
						|
LICENSE="Apache-2.0"
 | 
						|
SLOT="0"
 | 
						|
KEYWORDS="~amd64 ~arm64 ~riscv"
 | 
						|
IUSE="kerberos sasl ssl"
 | 
						|
 | 
						|
DEPEND="dev-lang/go:=
 | 
						|
	kerberos? ( app-crypt/mit-krb5 )
 | 
						|
	sasl? ( dev-libs/cyrus-sasl )
 | 
						|
	ssl? ( dev-libs/openssl:0= )"
 | 
						|
 | 
						|
# Do not complain about CFLAGS etc since go projects do not use them.
 | 
						|
QA_FLAGS_IGNORED='.*'
 | 
						|
 | 
						|
EGO_PN="github.com/mongodb/mongo-tools"
 | 
						|
S="${WORKDIR}/src/${EGO_PN}"
 | 
						|
 | 
						|
src_unpack() {
 | 
						|
	mkdir -p "${S%/*}" || die
 | 
						|
	default
 | 
						|
	mv ${P} "${S}" || die
 | 
						|
}
 | 
						|
 | 
						|
src_compile() {
 | 
						|
	local myconf=()
 | 
						|
 | 
						|
	if use kerberos; then
 | 
						|
		myconf+=(gssapi)
 | 
						|
	fi
 | 
						|
 | 
						|
	if use sasl; then
 | 
						|
		myconf+=(sasl)
 | 
						|
	fi
 | 
						|
 | 
						|
	if use ssl; then
 | 
						|
		myconf+=(ssl)
 | 
						|
	fi
 | 
						|
 | 
						|
	# build pie to avoid text relocations wrt #582854
 | 
						|
	local buildmode="pie"
 | 
						|
 | 
						|
	# skip on ppc64 wrt #610984
 | 
						|
	if use ppc64; then
 | 
						|
		buildmode="default"
 | 
						|
	fi
 | 
						|
 | 
						|
	mkdir -p bin || die
 | 
						|
	for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop; do
 | 
						|
		echo "Building $i"
 | 
						|
		GO111MODULE='off' GOROOT="$(go env GOROOT)" GOPATH="${WORKDIR}" go build -buildmode="${buildmode}" -o "bin/$i" \
 | 
						|
			-ldflags "-X ${EGO_PN}/common/options.VersionStr=${PV}" -x --tags "${myconf[*]}" "$i/main/$i.go" || die
 | 
						|
	done
 | 
						|
}
 | 
						|
 | 
						|
src_install() {
 | 
						|
	dobin bin/*
 | 
						|
}
 |