diff options
| author | Qing He <qing.he@intel.com> | 2010-07-30 13:18:49 +0800 | 
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-06 18:28:27 +0100 | 
| commit | 0bb1016de129f3d3cb02b4ae67554ecdcd368df4 (patch) | |
| tree | d5746fb39be1bb963c9c181a248c5e33464fad26 | |
| parent | 680f8bf8ae8a850327d68fb24c7ee0c8631d2e45 (diff) | |
| download | openembedded-core-0bb1016de129f3d3cb02b4ae67554ecdcd368df4.tar.gz openembedded-core-0bb1016de129f3d3cb02b4ae67554ecdcd368df4.tar.bz2 openembedded-core-0bb1016de129f3d3cb02b4ae67554ecdcd368df4.zip | |
usbutils: upgrade to version 0.86
from 0.72
changes:
  - package new usbutils.pc
  - move binaries into /usr/{bin,sbin} as default. udev uses only
    usb.ids instead of binaries
  - remove DEFAULT_PREFERENCE
  - symbolic link /usr/sbin/lsusb to /usr/bin, lsusb can be used by
    non-root, inspired by Debian
  - separate usb.ids to a new package usbutils-ids, for finer grained
    control, inspired by pciutils, also usbutils RDEPENDS on
    usbutils-ids
  - don't rm ${S}/libusb any more, since usbutils now doesn't bundle
    an included libusb
Signed-off-by: Qing He <qing.he@intel.com>
| -rw-r--r-- | meta/packages/usbutils/usbutils_0.72.bb | 21 | ||||
| -rw-r--r-- | meta/packages/usbutils/usbutils_0.86.bb | 24 | 
2 files changed, 24 insertions, 21 deletions
| diff --git a/meta/packages/usbutils/usbutils_0.72.bb b/meta/packages/usbutils/usbutils_0.72.bb deleted file mode 100644 index 0dbd799993..0000000000 --- a/meta/packages/usbutils/usbutils_0.72.bb +++ /dev/null @@ -1,21 +0,0 @@ -DESCRIPTION = "Host side USB console utilities." -SECTION = "base" -DEPENDS += "libusb" -LICENSE = "GPL" -PRIORITY = "optional" -DEFAULT_PREFERENCE = "1" - -SRC_URI = "${SOURCEFORGE_MIRROR}/linux-usb/usbutils-${PV}.tar.gz" -S = "${WORKDIR}/usbutils-${PV}" - -inherit autotools - -EXTRA_OECONF = "--program-prefix=" -sbindir = "/sbin" -bindir = "/bin" - -FILES_${PN} += "${datadir}/usb*" - -do_configure_prepend() { -	rm -rf ${S}/libusb -} diff --git a/meta/packages/usbutils/usbutils_0.86.bb b/meta/packages/usbutils/usbutils_0.86.bb new file mode 100644 index 0000000000..8e4a3da453 --- /dev/null +++ b/meta/packages/usbutils/usbutils_0.86.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "Host side USB console utilities." +HOMEPAGE = "http://www.linux-usb.org" +SECTION = "base" +PRIORITY = "optional" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" + +DEPENDS = "libusb zlib" +RDEPENDS_${PN} = "${PN}-ids" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/linux-usb/usbutils-${PV}.tar.gz" + +inherit autotools + +do_install_append() { +	ln -s ../sbin/lsusb ${D}${bindir}/lsusb +} + +PACKAGES += "${PN}-ids" + +FILES_${PN} += "${datadir}/pkgconfig" +FILES_${PN}-ids = "${datadir}/usb*" | 
