mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 16:24:05 +02:00
update bluez-utils to new upstream release (v2.24)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2938 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
0c898970f3
commit
304926a835
@ -3,9 +3,9 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=bluez-utils
|
PKG_NAME:=bluez-utils
|
||||||
PKG_VERSION:=2.17
|
PKG_VERSION:=2.24
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=42be19b0029a83824358baa0106da947
|
PKG_MD5SUM:=
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://bluez.sourceforge.net/download
|
PKG_SOURCE_URL:=http://bluez.sourceforge.net/download
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
@ -18,7 +18,6 @@ include $(TOPDIR)/package/rules.mk
|
|||||||
|
|
||||||
$(eval $(call PKG_template,BLUEZ_UTILS,bluez-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,BLUEZ_UTILS,bluez-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.source: $(DL_DIR)/$(PKG_SOURCE)
|
$(PKG_BUILD_DIR)/.source: $(DL_DIR)/$(PKG_SOURCE)
|
||||||
zcat $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
zcat $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
||||||
touch $(BLUEZLIBS_DIR)/.source
|
touch $(BLUEZLIBS_DIR)/.source
|
||||||
@ -27,37 +26,46 @@ $(PKG_BUILD_DIR)/.configured:
|
|||||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
sys_lib_dlsearch_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \
|
|
||||||
sys_lib_search_path_spec="$(STAGING_DIR)/lib $(STAGING_DIR)/usr/lib" \
|
|
||||||
./configure \
|
./configure \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
--program-prefix="" \
|
--program-prefix="" \
|
||||||
--program-suffix="" \
|
--program-suffix="" \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--exec-prefix=/usr \
|
--exec-prefix=/usr \
|
||||||
--bindir=/usr/bin \
|
--bindir=/usr/bin \
|
||||||
--datadir=/usr/share \
|
--datadir=/usr/share \
|
||||||
--includedir=/usr/include \
|
--includedir=/usr/include \
|
||||||
--infodir=/usr/share/info \
|
--infodir=/usr/share/info \
|
||||||
--libdir=/usr/lib \
|
--libdir=/usr/lib \
|
||||||
--libexecdir=/usr/lib \
|
--libexecdir=/usr/lib \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--mandir=/usr/share/man \
|
--mandir=/usr/share/man \
|
||||||
--sbindir=/usr/sbin \
|
--sbindir=/usr/sbin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
$(DISABLE_LARGEFILE) \
|
$(DISABLE_LARGEFILE) \
|
||||||
$(DISABLE_NLS) \
|
$(DISABLE_NLS) \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--without-x \
|
--disable-dbus \
|
||||||
--with-bluez=$(STAGING_DIR)/usr/include \
|
--disable-fuse \
|
||||||
--with-usb=$(STAGING_DIR)/usr/include \
|
--disable-obex \
|
||||||
--without-glib \
|
--disable-alsa \
|
||||||
|
--disable-cups \
|
||||||
|
--disable-pcmcia \
|
||||||
|
--disable-initscripts \
|
||||||
|
--disable-bccmd \
|
||||||
|
--disable-avctrl \
|
||||||
|
--disable-hid2hci \
|
||||||
|
--disable-dfutool \
|
||||||
|
--disable-bcm203x \
|
||||||
|
--disable-bluepin \
|
||||||
|
--with-bluez=$(STAGING_DIR)/usr/include \
|
||||||
|
--with-usb=$(STAGING_DIR)/usr/include \
|
||||||
)
|
)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
@ -67,7 +75,6 @@ $(PKG_BUILD_DIR)/.built:
|
|||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
all install
|
all install
|
||||||
rm -f $(PKG_INSTALL_DIR)/usr/bin/bluepin
|
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(IPKG_BLUEZ_UTILS):
|
$(IPKG_BLUEZ_UTILS):
|
||||||
@ -79,7 +86,6 @@ $(IPKG_BLUEZ_UTILS):
|
|||||||
cp -fp $(PKG_INSTALL_DIR)/../hcid/hcid.conf $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
cp -fp $(PKG_INSTALL_DIR)/../hcid/hcid.conf $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
||||||
cp -fp $(PKG_INSTALL_DIR)/../rfcomm/rfcomm.conf $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
cp -fp $(PKG_INSTALL_DIR)/../rfcomm/rfcomm.conf $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
||||||
install -m0700 ./files/givepin $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
install -m0700 ./files/givepin $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
||||||
|
|
||||||
$(RSTRIP) $(IDIR_BLUEZ_UTILS)
|
$(RSTRIP) $(IDIR_BLUEZ_UTILS)
|
||||||
$(IPKG_BUILD) $(IDIR_BLUEZ_UTILS) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_BLUEZ_UTILS) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user