| 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/licence for details.
|
|---|
| 6 |
|
|---|
| 7 | include $(TOPDIR)/rules.mk
|
|---|
| 8 |
|
|---|
| 9 | PKG_NAME:= bluez-utils
|
|---|
| 10 | PKG_VERSION:= 2.24
|
|---|
| 11 | PKG_RELEASE:= 1
|
|---|
| 12 | PKG_MD5SUM:= 5f5488ff3d31bdb9cd36b7991fe68408
|
|---|
| 13 |
|
|---|
| 14 | PKG_SOURCE_URL:= http://bluez.sourceforge.net/download
|
|---|
| 15 | PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| 16 |
|
|---|
| 17 | include $(TOPDIR)/mk/package.mk
|
|---|
| 18 |
|
|---|
| 19 | $(eval $(call PKG_template,BLUEZ_UTILS,bluez-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 20 |
|
|---|
| 21 | $(WRKBUILD)/.configured:
|
|---|
| 22 | (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
|
|---|
| 23 | $(TARGET_CONFIGURE_OPTS) \
|
|---|
| 24 | CFLAGS="$(TARGET_CFLAGS)" \
|
|---|
| 25 | CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|---|
| 26 | LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
|---|
| 27 | ./configure \
|
|---|
| 28 | --target=$(GNU_TARGET_NAME) \
|
|---|
| 29 | --host=$(GNU_TARGET_NAME) \
|
|---|
| 30 | --build=$(GNU_HOST_NAME) \
|
|---|
| 31 | --program-prefix="" \
|
|---|
| 32 | --program-suffix="" \
|
|---|
| 33 | --prefix=/usr \
|
|---|
| 34 | --exec-prefix=/usr \
|
|---|
| 35 | --bindir=/usr/bin \
|
|---|
| 36 | --datadir=/usr/share \
|
|---|
| 37 | --includedir=/usr/include \
|
|---|
| 38 | --infodir=/usr/share/info \
|
|---|
| 39 | --libdir=/usr/lib \
|
|---|
| 40 | --libexecdir=/usr/lib \
|
|---|
| 41 | --localstatedir=/var \
|
|---|
| 42 | --mandir=/usr/share/man \
|
|---|
| 43 | --sbindir=/usr/sbin \
|
|---|
| 44 | --sysconfdir=/etc \
|
|---|
| 45 | --disable-nls \
|
|---|
| 46 | --enable-shared \
|
|---|
| 47 | --enable-static \
|
|---|
| 48 | --disable-rpath \
|
|---|
| 49 | --disable-dbus \
|
|---|
| 50 | --disable-fuse \
|
|---|
| 51 | --disable-obex \
|
|---|
| 52 | --disable-alsa \
|
|---|
| 53 | --disable-cups \
|
|---|
| 54 | --disable-pcmcia \
|
|---|
| 55 | --disable-initscripts \
|
|---|
| 56 | --disable-bccmd \
|
|---|
| 57 | --disable-avctrl \
|
|---|
| 58 | --disable-hid2hci \
|
|---|
| 59 | --disable-dfutool \
|
|---|
| 60 | --disable-bcm203x \
|
|---|
| 61 | --disable-bluepin \
|
|---|
| 62 | --with-bluez=$(STAGING_DIR)/usr/include \
|
|---|
| 63 | --with-usb=$(STAGING_DIR)/usr/include \
|
|---|
| 64 | )
|
|---|
| 65 | touch $@
|
|---|
| 66 |
|
|---|
| 67 | $(WRKBUILD)/.built:
|
|---|
| 68 | rm -rf $(WRKINST)
|
|---|
| 69 | mkdir -p $(WRKINST)
|
|---|
| 70 | $(MAKE) -C $(WRKBUILD) \
|
|---|
| 71 | DESTDIR="$(WRKINST)" \
|
|---|
| 72 | all install
|
|---|
| 73 | touch $@
|
|---|
| 74 |
|
|---|
| 75 | $(IPKG_BLUEZ_UTILS):
|
|---|
| 76 | install -d -m0755 $(IDIR_BLUEZ_UTILS)/usr/bin
|
|---|
| 77 | $(CP) $(WRKINST)/usr/bin/* $(IDIR_BLUEZ_UTILS)/usr/bin/
|
|---|
| 78 | install -d -m0755 $(IDIR_BLUEZ_UTILS)/usr/sbin
|
|---|
| 79 | $(CP) $(WRKINST)/usr/sbin/* $(IDIR_BLUEZ_UTILS)/usr/sbin/
|
|---|
| 80 | install -d -m0755 $(IDIR_BLUEZ_UTILS)/etc/bluetooth
|
|---|
| 81 | $(CP) $(WRKINST)/etc/bluetooth/{hcid,rfcomm}.conf \
|
|---|
| 82 | $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
|---|
| 83 | install -m0700 ./files/givepin $(IDIR_BLUEZ_UTILS)/etc/bluetooth/
|
|---|
| 84 | $(RSTRIP) $(IDIR_BLUEZ_UTILS)
|
|---|
| 85 | $(IPKG_BUILD) $(IDIR_BLUEZ_UTILS) $(PACKAGE_DIR)
|
|---|