diff options
-rw-r--r-- | recipes/sdr/hamlib_1.2.9.bb | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/recipes/sdr/hamlib_1.2.9.bb b/recipes/sdr/hamlib_1.2.9.bb deleted file mode 100644 index 353a0e5968..0000000000 --- a/recipes/sdr/hamlib_1.2.9.bb +++ /dev/null @@ -1,50 +0,0 @@ -DESCRIPTION = "The Ham Radio Control Libraries, Hamlib for short, is a development effort to provide a consistent interface for programmers wanting to incorporate radio control in their programs" -LICENSE = "GPLv2" - -DEPENDS = "swig-native perl python virtual/libusb0 tcl gnuradio" - -SRC_URI = "${SOURCEFORGE_MIRROR}/hamlib/hamlib-${PV}.tar.gz" - -PR = "r1" - -inherit autotools - -EXTRA_OECONF = "--with-perl-inc=${STAGING_LIBDIR}/perl/5.8.8/CORE" -# This is a hack, someone with some more time should fix the autofoo -do_configure() { - oe_runconf -} - -PARALLEL_MAKE = "" - -do_compile_prepend() { - mkdir -p ${STAGING_LIBDIR}/.libs - ln -sf ${STAGING_LIBDIR}/libusb* ${STAGING_LIBDIR}/.libs/ - for i in $(find ${S} -name "Makefile") ; do - sed -i -e 's:${STAGING_LIBDIR_NATIVE}:${STAGING_LIBDIR}:g' \ - -e s:-L/usr/local/lib::g \ - -e 's:\"$(CC)\":\"${CC}\" LD=\"${LD}\" LDFLAGS=\"${LDFLAGS}\":g' \ - -e s:${STAGING_INCDIR_NATIVE}/python2.6:${STAGING_INCDIR}/python2.6:g $i - done -} - -# There's one perl module that doesn't honour CFLAGS :( -INSANE_SKIP_${PN} = True -FILES_${PN} = "${bindir} ${sbindir} ${libdir}/hamlib* ${libdir}/p*/ ${libdir}/tcl" -FILES_${PN}-dbg += "${libdir}/perl/*/auto/Hamlib/.debug/" - -python populate_packages_prepend () { - hamlib_libdir = bb.data.expand('${libdir}', d) - hamlib_libdir_dbg = bb.data.expand('${libdir}/.debug', d) - do_split_packages(d, hamlib_libdir, '^lib(.*)\.so$', 'lib%s-dev', 'hamlib %s development package', extra_depends='${PN}-dev', allow_links=True) - do_split_packages(d, hamlib_libdir, '^lib(.*)\.la$', 'lib%s-dev', 'hamlib %s development package', extra_depends='${PN}-dev') - do_split_packages(d, hamlib_libdir, '^lib(.*)\.a$', 'lib%s-dev', 'hamlib %s development package', extra_depends='${PN}-dev') - do_split_packages(d, hamlib_libdir, '^lib(.*)\.so\.*', 'lib%s', 'hamlib %s library', extra_depends='', allow_links=True) -} - -AUTOTOOLS_STAGE_PKGCONFIG = "1" - - - -SRC_URI[md5sum] = "9515288826284d6c8dd569354dacc8e0" -SRC_URI[sha256sum] = "ba75e64e1b6d5ffaa41e2063e475eca5b35ad68cb4ee6e888e0fc73bd6fa9fba" |