diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-05 18:14:30 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-05 18:14:30 +0000 |
commit | e6f36c103c4031845be67cc218a39d6e76374a0f (patch) | |
tree | 86d59daa95794bcf433aae4b2d9bf943dbdfe483 /dropbear/dropbear_0.40.oe | |
parent | 3ef3f90db5cf95e49a5da9a216a397a9494b901c (diff) |
Fix the dropbear builds when we have an external libtomcrypt laying around.
BKrev: 4048c386I5NHiWpdkqKo2LG9tv0F8w
Diffstat (limited to 'dropbear/dropbear_0.40.oe')
-rw-r--r-- | dropbear/dropbear_0.40.oe | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dropbear/dropbear_0.40.oe b/dropbear/dropbear_0.40.oe index e69de29bb2..2f36738fe3 100644 --- a/dropbear/dropbear_0.40.oe +++ b/dropbear/dropbear_0.40.oe @@ -0,0 +1,15 @@ +DESCRIPTION="Dropbear SSH Implementation" +LICENSE="MIT" +DEPENDS=virtual/libc zlib ncurses + +SRC_URI="http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \ + file://${FILESDIR}/configure.patch;patch=1" +S="${WORKDIR}/${P}" + +inherit autotools + +CFLAGS_prepend = "-I. " +LD=${CC} +do_install_prepend () { + install -d ${D}${sbindir} ${D}${bindir} +} |