Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 363001 - net-misc/zssh-1.5c ready for ~amd64 keyword
Summary: net-misc/zssh-1.5c ready for ~amd64 keyword
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Unspecified (show other bugs)
Hardware: AMD64 Linux
: Normal enhancement
Assignee: No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it
URL:
Whiteboard:
Keywords: KEYWORDREQ
Depends on:
Blocks:
 
Reported: 2011-04-10 23:07 UTC by tidux
Modified: 2011-05-11 23:16 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description tidux 2011-04-10 23:07:13 UTC
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
Comment 1 Agostino Sarubbo gentoo-dev 2011-04-11 11:03:31 UTC
works for me.

(*) when add ~amd64 please add die after do* function(s) and econf not needs die =)
Comment 2 Michael Weber (RETIRED) gentoo-dev 2011-05-11 23:15:16 UTC
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
 }
Comment 3 Michael Weber (RETIRED) gentoo-dev 2011-05-11 23:16:37 UTC
+  11 May 2011; Michael Weber <xmw@gentoo.org> zssh-1.5c.ebuild:
+  added ~amd64 keyword (bug 363001, thanks to Agostino Sarubbo for testing)
+