diff options
author | andy <andy@ndyk.de> | 2017-02-08 16:27:21 +0100 |
---|---|---|
committer | andy <andy@ndyk.de> | 2017-02-08 16:27:21 +0100 |
commit | e4ecf1901b7fc0c864dd68ccbce6a07cfe5f82fd (patch) | |
tree | 8778176f39b13252e92906d261a6476f158da4c9 /app-admin/gopass/gopass-1.0.0-r1.ebuild | |
parent | gopass: added bash/zsh completion, git snapshot and test useflags (diff) | |
download | andy-e4ecf1901b7fc0c864dd68ccbce6a07cfe5f82fd.tar.gz andy-e4ecf1901b7fc0c864dd68ccbce6a07cfe5f82fd.tar.bz2 andy-e4ecf1901b7fc0c864dd68ccbce6a07cfe5f82fd.zip |
gopass: 1.0.0-r1 added symlink to pass
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-admin/gopass/gopass-1.0.0-r1.ebuild')
-rw-r--r-- | app-admin/gopass/gopass-1.0.0-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-admin/gopass/gopass-1.0.0-r1.ebuild b/app-admin/gopass/gopass-1.0.0-r1.ebuild new file mode 100644 index 0000000..47b0643 --- /dev/null +++ b/app-admin/gopass/gopass-1.0.0-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit bash-completion-r1 + +EGO_PN=github.com/justwatchcom/${PN} + +if [[ ${PV} == 9999 ]]; then + inherit golang-vcs +else + KEYWORDS="~amd64 ~x86 ~arm" + EGIT_COMMIT="v${PV}" + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot +fi + +DESCRIPTION="The team password manager. Written in Go." +HOMEPAGE="https://www.justwatch.com/gopass" +LICENSE="MIT" +SLOT="0" +IUSE="X zsh-completion test symlink" +DEPEND=">=dev-lang/go-1.6:=" +RDEPEND=" + app-crypt/gnupg + X? ( x11-misc/xclip ) + zsh-completion? ( app-shells/gentoo-zsh-completions ) + dev-vcs/git + symlink? ( !app-admin/pass ) +" + +src_compile() { + cd "${S}"/src/${EGO_PN} || die + GOPATH="${S}" LDFLAGS="" emake build || die +} + +src_install() { + cd "${S}"/src/${EGO_PN} || die + emake DESTDIR="${D}" install + if use zsh-completion; then + emake zsh.completion || die + insinto /usr/share/zsh/site-functions + newins zsh.completion _${PN} + fi + emake bash.completion || die + newbashcomp bash.completion ${PN} + einstalldocs + + if use symlink ; then + dosym gopass /usr/bin/pass + fi +} + |