diff options
Diffstat (limited to 'net-misc/nxssh/nxssh-1.3.0_beta2.ebuild')
-rw-r--r-- | net-misc/nxssh/nxssh-1.3.0_beta2.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-misc/nxssh/nxssh-1.3.0_beta2.ebuild b/net-misc/nxssh/nxssh-1.3.0_beta2.ebuild new file mode 100644 index 000000000000..d19faa2c450e --- /dev/null +++ b/net-misc/nxssh/nxssh-1.3.0_beta2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxssh/nxssh-1.3.0_beta2.ebuild,v 1.1 2003/11/13 21:08:27 stuart Exp $ + +MY_P="${PN}-1.3.0-3" +DESCRIPTION="Modified openssh client, used by nxclient" +HOMEPAGE="http://www.nomachine.com/" +SRC_URI="http://www.nomachine.com/download/beta/nxclient-sources-beta2//${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="tcpd pam kerberos" + +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 +} |