diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-03-04 01:30:25 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-03-04 01:30:25 +0000 |
commit | 8cc41c899b74e2703754cba5697840695230d79b (patch) | |
tree | f19b43a9d4c299f06097c5ae628d7c2fb39608c0 /net-misc/zssh | |
parent | Bump. Binaries now named urxvt{,c,d} so it won't conflict with rxvt package (... (diff) | |
download | gentoo-2-8cc41c899b74e2703754cba5697840695230d79b.tar.gz gentoo-2-8cc41c899b74e2703754cba5697840695230d79b.tar.bz2 gentoo-2-8cc41c899b74e2703754cba5697840695230d79b.zip |
moved to stable x86, at the behest of: Petter <tt@linux.nu> in bug #43451, and he thinks he's rough around the edges, but he's not
Diffstat (limited to 'net-misc/zssh')
-rw-r--r-- | net-misc/zssh/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/zssh/zssh-1.5a.ebuild | 31 |
2 files changed, 21 insertions, 18 deletions
diff --git a/net-misc/zssh/ChangeLog b/net-misc/zssh/ChangeLog index 94f569777531..dedb6fc7fee0 100644 --- a/net-misc/zssh/ChangeLog +++ b/net-misc/zssh/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/zssh -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/ChangeLog,v 1.4 2004/03/01 21:34:08 aliz Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/ChangeLog,v 1.5 2004/03/04 01:30:25 seemant Exp $ + + 03 Mar 2004; Seemant Kulleen <seemant@gentoo.org> zssh-1.5a.ebuild: + moved to stable x86, at the behest of: Petter <tt@linux.nu> in bug #43451, and + he thinks he's rough around the edges, but he's not *zssh-1.5a (20 Sep 2002) diff --git a/net-misc/zssh/zssh-1.5a.ebuild b/net-misc/zssh/zssh-1.5a.ebuild index 5be61ea310f4..c687043b0a68 100644 --- a/net-misc/zssh/zssh-1.5a.ebuild +++ b/net-misc/zssh/zssh-1.5a.ebuild @@ -1,20 +1,22 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/zssh-1.5a.ebuild,v 1.5 2003/09/05 22:13:37 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/zssh-1.5a.ebuild,v 1.6 2004/03/04 01:30:25 seemant Exp $ inherit eutils -IUSE="" +IUSE="readline nls" + S=${WORKDIR}/${P} DESCRIPTION="A ssh wrapper enabling zmodem up/download in ssh" -SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/zssh/zssh-1.5a.tgz" HOMEPAGE="http://zssh.sourceforge.net/" -KEYWORDS="~x86 sparc" -LICENSE="GPL-2" +SRC_URI="mirror://sourceforge/zssh/${P}.tgz" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc" DEPEND="virtual/glibc" -RDEPEND="virtual/glibc +RDEPEND="${DEPEND} net-misc/openssh net-misc/lrzsz" @@ -26,15 +28,12 @@ src_unpack() { } src_compile() { - local options - - use nls || options="${options} --disable-nls" - use readline || options="${options} --disable-readline" - - ./configure \ - --prefix=/usr \ - --host=${CHOST} \ - ${options} || die +# ./configure \ +# --prefix=/usr \ +# --host=${CHOST} \ + econf \ + `use_enable nls` \ + `use_enable readline` || die emake || die } |