summaryrefslogtreecommitdiffstats
path: root/package/bluez-utils
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-14 11:45:22 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-14 11:45:22 +0000
commit0dec4ae2ef6849adc9e6903c557abe2c1cdecd7e (patch)
tree117cc4ea2362cf7bb3a0b08595415c47aa41654c /package/bluez-utils
parent08c5754785ed390d3bbbe458edba7c55a391700e (diff)
bluez stuff, thx Markus Becker
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1434 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/bluez-utils')
-rw-r--r--package/bluez-utils/Config.in11
-rw-r--r--package/bluez-utils/Makefile83
-rw-r--r--package/bluez-utils/ipkg/bluez-utils.control7
3 files changed, 101 insertions, 0 deletions
diff --git a/package/bluez-utils/Config.in b/package/bluez-utils/Config.in
new file mode 100644
index 000000000..039ff5d26
--- /dev/null
+++ b/package/bluez-utils/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_BLUEZ_UTILS
+ tristate "bluez-utils"
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_GLIB
+ select BR2_PACKAGE_BLUEZ_LIBS
+ help
+ Bluez utils.
+
+ http://bluez.org
+
+ Depends: libpthread, bluez-libs
diff --git a/package/bluez-utils/Makefile b/package/bluez-utils/Makefile
new file mode 100644
index 000000000..40ab27980
--- /dev/null
+++ b/package/bluez-utils/Makefile
@@ -0,0 +1,83 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=bluez-utils
+PKG_VERSION:=2.17
+PKG_RELEASE:=2
+PKG_MD5SUM:=42be19b0029a83824358baa0106da947
+
+PKG_SOURCE_URL:=http://bluez.sourceforge.net/download
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_CAT:=zcat
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,BLUEZ_UTILS,bluez-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+
+$(PKG_BUILD_DIR)/.source: $(DL_DIR)/$(PKG_SOURCE)
+ zcat $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $(BLUEZLIBS_DIR)/.source
+
+$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
+ (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
+ LDFLAGS="-L$(STAGING_DIR)/usr/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 \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ $(DISABLE_LARGEFILE) \
+ $(DISABLE_NLS) \
+ --enable-shared \
+ --enable-static \
+ --disable-rpath \
+ --without-x \
+ --with-bluez=$(STAGING_DIR)/usr/include \
+ --with-usb=$(STAGING_DIR)/usr/include \
+ --without-glib \
+ )
+ touch $@
+
+$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
+ rm -rf $(PKG_INSTALL_DIR)
+ mkdir -p $(PKG_INSTALL_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ all install
+ touch $@
+
+$(IPKG_BLUEZ_UTILS):
+ install -d -m0755 $(IDIR_BLUEZ_UTILS)/usr/bin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/bin/* $(IDIR_BLUEZ_UTILS)/usr/bin/
+ install -d -m0755 $(IDIR_BLUEZ_UTILS)/usr/sbin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/* $(IDIR_BLUEZ_UTILS)/usr/sbin/
+ install -d -m0755 $(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/
+
+ $(RSTRIP) $(IDIR_BLUEZ_UTILS)
+ $(IPKG_BUILD) $(IDIR_BLUEZ_UTILS) $(PACKAGE_DIR)
+
diff --git a/package/bluez-utils/ipkg/bluez-utils.control b/package/bluez-utils/ipkg/bluez-utils.control
new file mode 100644
index 000000000..7592cbfdd
--- /dev/null
+++ b/package/bluez-utils/ipkg/bluez-utils.control
@@ -0,0 +1,7 @@
+Package: bluez-utils
+Priority: optional
+Section: net
+Maintainer: Markus Becker <mab@comnets.uni-bremen.de>
+Source: http://bluez.org
+Description: Bluez libs
+Depends: kmod-bluetooth, bluez-libs