diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-17 21:48:17 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-17 21:48:17 +0000 |
commit | fc804566047635ff176e630284f2f836ebcd39df (patch) | |
tree | cfa21944642adb4135621d358b6a9560bcee40dc | |
parent | ad592bd57e781dd941828dd1663e8cf4530782d6 (diff) |
Eck, it helps to add liboop to lsh's DEPENDS.
BKrev: 4058c7a19_mmudT2eDnvTnYj2AX0oQ
-rw-r--r-- | lsh/lsh_1.4.3.oe | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lsh/lsh_1.4.3.oe b/lsh/lsh_1.4.3.oe index e69de29bb2..7983bf24fe 100644 --- a/lsh/lsh_1.4.3.oe +++ b/lsh/lsh_1.4.3.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "lsh is a GNU GPL-licensed implementation of the SSH \ +(version 2) protocol. It includes a server, a client, and some \ +utility programs." +DEPENDS = "virtual/libc zlib gmp liboop" +RDEPENDS = "libc6 zlib gmp liboop" + +SRC_URI = "http://www.lysator.liu.se/~nisse/archive/lsh-${PV}.tar.gz" +S = "${WORKDIR}/lsh-${PV}" + +inherit autotools +configopts = " --enable-debug-alloc Enable memory allocation sanity checks \ + --enable-debug-trace Enable tracing support \ + --enable-gcov Instrument for gcov (requires a modern gcc) \ + --without-pty Disable pty support \ + --disable-srp Disable the (experimental) support for SRP \ + --disable-kerberos Don't support kerberos \ + --disable-pam Don't support PAM \ + --disable-datafellows-workarounds \ + --enable-initgroups-workaround \ + --disable-tcp-forward Disable tcp forwarding \ + --disable-x11-forward Disable x11 forwarding (proxy only) \ + --disable-agent-forward Disable auth-agent forwarding (proxy only) \ + --disable-ipv6 Disable IPv6 support \ + --disable-utmp Disable utmp and wtmp support \ + --without-zlib Don't use zlib compression \ + --with-tcpwrappers Use tcp-wrappers for filtering connections \ + --with-sshd1=PROGRAM support fallback to SSH1 daemon \ + --with-scheme=PROGRAM Use a particular scheme implementation \ + --without-system-argp Don't use the system's argp \ + --with-include-path A colon-separated list of directories to search for \ + --with-lib-path A colon-separated list of directories to search for \ + --with-x use the X Window System" +EXTRA_OECONF = "--disable-srp --disable-kerberos --disable-pam \ + --without-x" |