zssh 1.5c is about eight years old, and is stable enough for Debian Squeeze. I added "net-misc/zssh **" to /etc/portage/package.accept_keywords and it's working fine. I recommend moving it to ~amd64. Reproducible: Always Steps to Reproduce: 1. # echo "net-misc/zssh **" >> /etc/portage/package.accept_keywords 2. # emerge zssh 3. $ zssh host.domain.tld Actual Results: works exactly as advertised
works for me. (*) when add ~amd64 please add die after do* function(s) and econf not needs die =)
Index: zssh-1.5c.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/zssh/zssh-1.5c.ebuild,v retrieving revision 1.3 diff -u -B -r1.3 zssh-1.5c.ebuild --- zssh-1.5c.ebuild 19 Feb 2011 19:00:16 -0000 1.3 +++ zssh-1.5c.ebuild 11 May 2011 23:15:08 -0000 @@ -10,7 +10,7 @@ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~ppc sparc x86" +KEYWORDS="~arm64 ~ppc sparc x86" IUSE="readline nls" DEPEND="" @@ -26,12 +26,12 @@ src_compile() { econf \ $(use_enable nls) \ - $(use_enable readline) || die 'configure failed' - emake || die 'make failed' + $(use_enable readline) + emake || die } src_install() { - dobin zssh ztelnet - doman zssh.1 ztelnet.1 - dodoc CHANGES FAQ README TODO + dobin zssh ztelnet || die + doman zssh.1 ztelnet.1 || die + dodoc CHANGES FAQ README TODO || die }
+ 11 May 2011; Michael Weber <xmw@gentoo.org> zssh-1.5c.ebuild: + added ~amd64 keyword (bug 363001, thanks to Agostino Sarubbo for testing) +