zx2c4 14/04/20 22:36:41 Modified: pass-9999.ebuild ChangeLog Log: Use upstream makefile. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A5DE03AE)
Revision Changes Path 1.6 app-admin/pass/pass-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-9999.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-9999.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/pass-9999.ebuild?r1=1.5&r2=1.6 Index: pass-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/pass-9999.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- pass-9999.ebuild 22 Mar 2014 19:38:36 -0000 1.5 +++ pass-9999.ebuild 20 Apr 2014 22:36:41 -0000 1.6 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-9999.ebuild,v 1.5 2014/03/22 19:38:36 zx2c4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/pass-9999.ebuild,v 1.6 2014/04/20 22:36:41 zx2c4 Exp $ EAPI=4 @@ -13,7 +13,7 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="" -IUSE="+git X zsh-completion fish-completion elibc_Darwin" +IUSE="+git X +bash-completion zsh-completion fish-completion elibc_Darwin" RDEPEND=" app-crypt/gnupg @@ -22,6 +22,7 @@ git? ( dev-vcs/git ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) + bash-completion? ( app-shells/bash-completion ) zsh-completion? ( app-shells/zsh ) fish-completion? ( app-shells/fish ) " @@ -43,21 +44,9 @@ } src_install() { - newbin src/password-store.sh pass - doman man/pass.1 - dodoc README - newbashcomp src/completion/pass.bash-completion ${PN} - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins src/completion/pass.zsh-completion _pass - fi - if use fish-completion ; then - insinto /usr/share/fish/completions - newins src/completion/pass.fish-completion pass.fish - fi - if use elibc_Darwin ; then - insinto /usr/share/pass - newins src/platform/darwin.sh platform.sh - fi - + local COMPS=( ) + use bash-completion && COMPS+=( "FORCE_BASHCOMP=1" ) + use zsh-completion && COMPS+=( "FORCE_ZSHCOMP=1" ) + use fish-completion && COMPS+=( "FORCE_FISHCOMP=1" ) + emake DESTDIR="${D}" "${COMPS[@]}" install } 1.10 app-admin/pass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/pass/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 13 Apr 2014 15:44:38 -0000 1.9 +++ ChangeLog 20 Apr 2014 22:36:41 -0000 1.10 @@ -1,6 +1,9 @@ # ChangeLog for app-admin/pass # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v 1.9 2014/04/13 15:44:38 zx2c4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/pass/ChangeLog,v 1.10 2014/04/20 22:36:41 zx2c4 Exp $ + + 20 Apr 2014; Jason A. Donenfeld <zx...@gentoo.org> pass-9999.ebuild: + Use upstream makefile. *pass-1.5 (13 Apr 2014)