diff options
-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}/ |