diff options
Diffstat (limited to 'net-misc/sshstart/sshstart-2.7.ebuild')
-rw-r--r-- | net-misc/sshstart/sshstart-2.7.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net-misc/sshstart/sshstart-2.7.ebuild b/net-misc/sshstart/sshstart-2.7.ebuild new file mode 100644 index 00000000..d8048c0f --- /dev/null +++ b/net-misc/sshstart/sshstart-2.7.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header $ + +EAPI="4" +RESTRICT="mirror" +inherit base vcs-snapshot + +DESCRIPTION="Start ssh-agent/ssh-add only if you really use ssh or friends" +HOMEPAGE="https://github.com/vaeth/sshstart/" +SRC_URI="http://github.com/vaeth/${PN}/tarball/release-${PV} -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+keychain" +RDEPEND="app-shells/push + keychain? ( net-misc/keychain )" +DEPEND="" + +src_install() { + dobin sshstart + dodoc README +} |