diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-16 18:48:01 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-16 18:48:01 +0000 |
commit | 87ba52f3aff9b49f78f26324e97a1979509f0b6c (patch) | |
tree | ae7cd599176850ae7d0b386617eb5dbb572686db | |
parent | 76318983d0b28072e6b3fb4c41cd404b2206c35b (diff) |
fix btscanner dependency and add (temporary) fix for gdbm
BKrev: 40a7b761NYY62725wRcBRxyrwGeHPQ
-rw-r--r-- | btscanner/btscanner_1.0.oe | 5 | ||||
-rw-r--r-- | gdbm/gdbm_1.8.3.oe | 10 |
2 files changed, 8 insertions, 7 deletions
diff --git a/btscanner/btscanner_1.0.oe b/btscanner/btscanner_1.0.oe index 30dde2bcfa..c1380275d1 100644 --- a/btscanner/btscanner_1.0.oe +++ b/btscanner/btscanner_1.0.oe @@ -1,9 +1,8 @@ HOMEPAGE = "http://www.pentest.co.uk/cgi-bin/viewcat.cgi?cat=downloads§ion=01_bluetooth" -DESCRIPTION = "extract as information from a Bluetooth device pairing" +DESCRIPTION = "Extract information from near Bluetooth devices" SECTION = "libs" PRIORITY = "optional" -SECTION = "libs" -DEPENDS = "virtual/libc virtual/libbluetooth virtual/libsdp virtual/libgdbm ncurses" +DEPENDS = "virtual/libbluetooth virtual/libsdp gdbm ncurses" SRC_URI = "http://www.pentest.co.uk/src/btscanner-${PV}.tar.gz \ file://${FILESDIR}/configure.patch;patch=1" diff --git a/gdbm/gdbm_1.8.3.oe b/gdbm/gdbm_1.8.3.oe index 9b12b0120f..04e174e166 100644 --- a/gdbm/gdbm_1.8.3.oe +++ b/gdbm/gdbm_1.8.3.oe @@ -1,14 +1,16 @@ -DEPENDS = "virtual/libc" -PROVIDES = "virtual/libgdbm" +DESCRIPTION = "GNU dbm is a set of database routines that use extensible hashing." SECTION = "libs" -DESCRIPTION = "GNU dbm is a set of database routines \ -that use extensible hashing." +PRIORITY = "optional" SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \ file://${FILESDIR}/makefile.patch;patch=1" inherit autotools +do_configure_prepend() { + rm -f aclocal.m4 +} + do_stage () { oe_libinstall -so -a libgdbm ${STAGING_LIBDIR} install -m 0644 ${S}/gdbm.h ${STAGING_INCDIR}/ |