Nils Freydank
a08ae23212
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B Signed-off-by: Nils Freydank <holgersson@posteo.de>
71 lines
1.8 KiB
Bash
71 lines
1.8 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Note: For distfiles verification see https://nuetzlich.net/gocryptfs/releases.
|
|
|
|
EAPI=7
|
|
|
|
EGO_PN="github.com/rfjakob/${PN}"
|
|
|
|
inherit golang-vcs-snapshot
|
|
|
|
DESCRIPTION="Encrypted overlay filesystem written in Go"
|
|
HOMEPAGE="https://nuetzlich.net/gocryptfs https://github.com/rfjakob/gocryptfs/releases"
|
|
SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}_v${PV}_src-deps.tar.gz -> ${P}.tar.gz"
|
|
|
|
# in detail:
|
|
# BSD vendor/golang.org/x/sys/LICENSE
|
|
# BSD vendor/golang.org/x/crypto/LICENSE
|
|
# BSD vendor/golang.org/x/sync/LICENSE
|
|
# BSD: vendor/github.com/hanwen/go-fuse/LICENSE
|
|
# BSD-2: vendor/github.com/pkg/xattr/LICENSE
|
|
# Apache-2.0: vendor/github.com/rfjakob/eme/LICENSE
|
|
LICENSE="Apache-2.0 BSD BSD-2 MIT"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="debug libressl +man pie +ssl"
|
|
|
|
BDEPEND="man? ( dev-go/go-md2man )"
|
|
RDEPEND="
|
|
sys-fs/fuse
|
|
ssl? (
|
|
!libressl? ( dev-libs/openssl:0= )
|
|
libressl? ( dev-libs/libressl:0= )
|
|
)
|
|
"
|
|
|
|
QA_PRESTRIPPED="usr/bin/.*"
|
|
|
|
G="${WORKDIR}/${P}"
|
|
S="${G}/src/${EGO_PN}"
|
|
|
|
src_compile() {
|
|
export GOPATH="${G}"
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
export CGO_LDFLAGS="${LDFLAGS}"
|
|
local myldflags=(
|
|
"$(usex !debug '-s -w' '')"
|
|
-X "main.GitVersion=v${PV}"
|
|
-X "'main.GitVersionFuse=[vendored]'"
|
|
-X "main.BuildDate=$(date -u '+%Y-%m-%d')"
|
|
)
|
|
local mygoargs=(
|
|
-v -work -x
|
|
"-buildmode=$(usex pie pie exe)"
|
|
"-asmflags=all=-trimpath=${S}"
|
|
"-gcflags=all=-trimpath=${S}"
|
|
-ldflags "${myldflags[*]}"
|
|
-tags "$(usex !ssl 'without_openssl' 'none')"
|
|
)
|
|
go build "${mygoargs[@]}" || die
|
|
use man && go-md2man -in Documentation/MANPAGE.md -out gocryptfs.1
|
|
}
|
|
|
|
src_install() {
|
|
dobin gocryptfs
|
|
use debug && dostrip -x /usr/bin/gocryptfs
|
|
use man && doman gocryptfs.1
|
|
}
|