diff options
author | 2005-10-20 21:25:37 +0000 | |
---|---|---|
committer | 2005-10-20 21:25:37 +0000 | |
commit | 8c3533e7e541b13ad47b9253862d351f65edc42a (patch) | |
tree | 0def7a9cd5e1d47e3bd4a0e163c4ebc776982dfd /net-misc | |
parent | Update to nxcomp-1.5.0 (diff) | |
download | gentoo-2-8c3533e7e541b13ad47b9253862d351f65edc42a.tar.gz gentoo-2-8c3533e7e541b13ad47b9253862d351f65edc42a.tar.bz2 gentoo-2-8c3533e7e541b13ad47b9253862d351f65edc42a.zip |
Bump to 1.5.0 (from 1.4.0-r1)
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/nxssh/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/nxssh/files/digest-nxssh-1.5.0 | 2 | ||||
-rw-r--r-- | net-misc/nxssh/nxssh-1.5.0.ebuild | 49 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-misc/nxssh/ChangeLog b/net-misc/nxssh/ChangeLog index f9b4d3b82b1c..07b61b6d8040 100644 --- a/net-misc/nxssh/ChangeLog +++ b/net-misc/nxssh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/nxssh # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/nxssh/ChangeLog,v 1.13 2005/02/17 12:54:15 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxssh/ChangeLog,v 1.14 2005/10/20 21:25:37 agriffis Exp $ + +*nxssh-1.5.0 (20 Oct 2005) + + 20 Oct 2005; Aron Griffis <agriffis@gentoo.org> +nxssh-1.5.0.ebuild: + Bump to 1.5.0 (from 1.4.0-r1) 17 Feb 2005; Stuart Herbert <stuart@gentoo.org> nxssh-1.4.0-r1.ebuild: Bug 62567: missing dep; Manuzhai <mail@manuzhai.nl> diff --git a/net-misc/nxssh/files/digest-nxssh-1.5.0 b/net-misc/nxssh/files/digest-nxssh-1.5.0 new file mode 100644 index 000000000000..cb19c925b13e --- /dev/null +++ b/net-misc/nxssh/files/digest-nxssh-1.5.0 @@ -0,0 +1,2 @@ +MD5 cab094a88acb299cc1e89dfb2c6a95eb nxcomp-1.5.0-65.tar.gz 496878 +MD5 b5d0a97f8010f5e4047cccce971f2101 nxssh-1.5.0-21.tar.gz 866277 diff --git a/net-misc/nxssh/nxssh-1.5.0.ebuild b/net-misc/nxssh/nxssh-1.5.0.ebuild new file mode 100644 index 000000000000..6447cea02459 --- /dev/null +++ b/net-misc/nxssh/nxssh-1.5.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxssh/nxssh-1.5.0.ebuild,v 1.1 2005/10/20 21:25:37 agriffis Exp $ + +inherit multilib flag-o-matic + +DESCRIPTION="Modified openssh client, used by nxclient" +HOMEPAGE="http://www.nomachine.com/" + +IUSE="ipv6 pam tcpd" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +SRC_URI="http://web04.nomachine.com/download/1.5.0/sources/nxssh-$PV-21.tar.gz" + +DEPEND=" + =net-misc/nxcomp-1.5* + dev-libs/openssl + virtual/libc + sys-libs/zlib + tcpd? ( sys-apps/tcp-wrappers ) + pam? ( sys-libs/pam )" + +S=${WORKDIR}/${PN} + +src_compile() { + append-ldflags -L/usr/NX/$(get_libdir) + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc/ssh \ + --mandir=/usr/share/man \ + --libexecdir=/usr/lib/misc \ + --datadir=/usr/share/openssh \ + --disable-suid-ssh \ + --with-privsep-path=/var/empty \ + --with-privsep-user=sshd \ + --with-md5-passwords \ + $(use_with tcpd tcp-wrappers) \ + $(use_with pam) \ + $(use_with !ipv6 ipv4-default) \ + || die "configure nxssh failed" + emake || die "emake nxssh failed" +} + +src_install() { + into /usr/NX + dobin nxssh +} |