diff options
author | 2001-06-03 19:54:17 +0000 | |
---|---|---|
committer | 2001-06-03 19:54:17 +0000 | |
commit | 8041b17fadd1b0c525c4513d00dae836ce6ef73d (patch) | |
tree | 0f08af33ce2623459cf18b3b8aa4c097100aacb4 /net-misc/openssh | |
parent | Somehow this didn't get committed... (diff) | |
download | gentoo-2-8041b17fadd1b0c525c4513d00dae836ce6ef73d.tar.gz gentoo-2-8041b17fadd1b0c525c4513d00dae836ce6ef73d.tar.bz2 gentoo-2-8041b17fadd1b0c525c4513d00dae836ce6ef73d.zip |
DEPEND->RDEPEND fix (DEPEND was listed twice), and a --without-libwrap fix
Diffstat (limited to 'net-misc/openssh')
-rw-r--r-- | net-misc/openssh/openssh-2.9_p1-r1.ebuild (renamed from net-misc/openssh/openssh-2.9_p1.ebuild) | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net-misc/openssh/openssh-2.9_p1.ebuild b/net-misc/openssh/openssh-2.9_p1-r1.ebuild index 35b1157ce645..3085af695317 100644 --- a/net-misc/openssh/openssh-2.9_p1.ebuild +++ b/net-misc/openssh/openssh-2.9_p1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-2.9_p1.ebuild,v 1.3 2001/06/01 22:07:00 grant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-2.9_p1-r1.ebuild,v 1.1 2001/06/03 19:54:17 drobbins Exp $ P=openssh-2.9p1 A=${P}.tar.gz @@ -15,7 +15,7 @@ DEPEND="virtual/glibc sys-devel/perl sys-apps/groff pam? ( >=sys-libs/pam-0.73 ) >=dev-libs/openssl-0.9.6" -DEPEND="virtual/glibc +RDEPEND="virtual/glibc pam? ( >=sys-libs/pam-0.73 ) >=dev-libs/openssl-0.9.6" @@ -23,8 +23,10 @@ src_compile() { local myconf if [ "`use tcpd`" ] then - myconf="--with-tcp-wrappers" - fi + myconf="--with-tcp-wrappers" + else + myconf="--without-tcp-wrappers" + fi if [ "`use pam`" ] then myconf="${myconf} --with-pam" |