diff options
Diffstat (limited to 'net-misc/nxssh')
-rw-r--r-- | net-misc/nxssh/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/nxssh/files/digest-nxssh-1.3.0 | 1 | ||||
-rw-r--r-- | net-misc/nxssh/files/digest-nxssh-1.4.0 | 1 | ||||
-rw-r--r-- | net-misc/nxssh/nxssh-1.3.0.ebuild | 49 | ||||
-rw-r--r-- | net-misc/nxssh/nxssh-1.4.0.ebuild | 51 |
5 files changed, 5 insertions, 103 deletions
diff --git a/net-misc/nxssh/ChangeLog b/net-misc/nxssh/ChangeLog index 60b59c9a2992..8b68d70e8804 100644 --- a/net-misc/nxssh/ChangeLog +++ b/net-misc/nxssh/ChangeLog @@ -1,6 +1,10 @@ # 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.11 2005/01/02 09:40:02 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxssh/ChangeLog,v 1.12 2005/01/02 10:30:57 stuart Exp $ + + 02 Jan 2005; Stuart Herbert <stuart@gentoo.org> -nxssh-1.3.0.ebuild, + -nxssh-1.4.0.ebuild: + Removed obsolete version *nxssh-1.4.0-r1 (02 Jan 2005) diff --git a/net-misc/nxssh/files/digest-nxssh-1.3.0 b/net-misc/nxssh/files/digest-nxssh-1.3.0 deleted file mode 100644 index 336dc71f3d78..000000000000 --- a/net-misc/nxssh/files/digest-nxssh-1.3.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 b01616aeeed597261c358eb65851966a nxssh-1.3.0-4.tar.gz 873914 diff --git a/net-misc/nxssh/files/digest-nxssh-1.4.0 b/net-misc/nxssh/files/digest-nxssh-1.4.0 deleted file mode 100644 index e908e074a3f8..000000000000 --- a/net-misc/nxssh/files/digest-nxssh-1.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 08025d674354a83d5f355f1c22a39fef nxssh-1.4.0-15.tar.gz 859179 diff --git a/net-misc/nxssh/nxssh-1.3.0.ebuild b/net-misc/nxssh/nxssh-1.3.0.ebuild deleted file mode 100644 index b8697173e15e..000000000000 --- a/net-misc/nxssh/nxssh-1.3.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# 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.3.0.ebuild,v 1.6 2005/01/02 09:40:02 stuart Exp $ - -MY_P="${PN}-1.3.0-4" -DESCRIPTION="Modified openssh client, used by nxclient" -HOMEPAGE="http://www.nomachine.com/" -SRC_URI="http://www.nomachine.com/download/nxsources/nxssh/${MY_P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="x86 ~ppc -sparc -mips -alpha" -DEPEND="" -# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: -#RDEPEND="" -IUSE="ipv6 kerberos pam tcpd" - -S=${WORKDIR}/${PN} - -src_compile() { - local myconf - - use tcpd || myconf="${myconf} --without-tcp-wrappers" - use tcpd && myconf="${myconf} --with-tcp-wrappers" - use pam || myconf="${myconf} --without-pam" - use pam && myconf="${myconf} --with-pam" - use ipv6 || myconf="${myconf} --with-ipv4-default" - - # app-crypt/mit-krb5 - use kerberos && myconf="${myconf} --with-kerberos5" - - ./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 \ - --host=${CHOST} ${myconf} || die "bad configure" - - DISTCC_HOSTS="localhost" CCACHE_DISABLE='1' emake || die "compile problem" -} - -src_install() { - exeinto /usr/NX/bin - doexe nxssh -} diff --git a/net-misc/nxssh/nxssh-1.4.0.ebuild b/net-misc/nxssh/nxssh-1.4.0.ebuild deleted file mode 100644 index 0dd2b0120ce1..000000000000 --- a/net-misc/nxssh/nxssh-1.4.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# 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.4.0.ebuild,v 1.2 2005/01/02 09:40:02 stuart Exp $ - -MY_P="${PN}-${PV}-15" -DESCRIPTION="Modified openssh client, used by nxclient" -HOMEPAGE="http://www.nomachine.com/" -SRC_URI="http://www.nomachine.com/download/snapshot/nxsources/${MY_P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="~x86 ~ppc -sparc -mips -alpha" -DEPEND=">=dev-libs/openssl-0.9.7d-r1 - >=sys-libs/glibc-2.3.3.20040420-r1 - >=sys-libs/zlib-1.2.1-r2" -# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: -#RDEPEND="" -IUSE="ipv6 kerberos pam tcpd" - -S=${WORKDIR}/${PN} - -src_compile() { - local myconf - - use tcpd || myconf="${myconf} --without-tcp-wrappers" - use tcpd && myconf="${myconf} --with-tcp-wrappers" - use pam || myconf="${myconf} --without-pam" - use pam && myconf="${myconf} --with-pam" - use ipv6 || myconf="${myconf} --with-ipv4-default" - - # app-crypt/mit-krb5 - use kerberos && myconf="${myconf} --with-kerberos5" - - ./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 \ - --host=${CHOST} ${myconf} || die "bad configure" - - emake || die "compile problem" -} - -src_install() { - exeinto /usr/NX/bin - doexe nxssh -} |