summaryrefslogtreecommitdiffstats
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
parent08c5754785ed390d3bbbe458edba7c55a391700e (diff)
bluez stuff, thx Markus Becker
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1434 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/Config.in4
-rw-r--r--package/Makefile2
-rw-r--r--package/bluez-libs/Config.in8
-rw-r--r--package/bluez-libs/Makefile87
-rw-r--r--package/bluez-libs/ipkg/bluez-libs.control7
-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
8 files changed, 209 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 89eef84bd..e3662b776 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -151,6 +151,10 @@ comment "Kernel related ---"
source "package/fuse/Config.in" # kmod-fuse
source "package/shfs/Config.in" # kmod-shfs
+comment "Bluetooth related"
+source "package/bluez-libs/Config.in"
+source "package/bluez-utils/Config.in"
+
comment "Extra stuff"
source "package/sdk/Config.in"
diff --git a/package/Makefile b/package/Makefile
index e7fb53568..f1687c4e7 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -9,6 +9,8 @@ package-$(BR2_PACKAGE_ARPWATCH) += arpwatch
package-$(BR2_PACKAGE_ASTERISK) += asterisk
package-$(BR2_PACKAGE_ASTERISK) += atftp
package-$(BR2_PACKAGE_BIND) += bind
+package-$(BR2_PACKAGE_BLUEZ_LIBS) += bluez-libs
+package-$(BR2_PACKAGE_BLUEZ_UTILS) += bluez-utils
package-$(BR2_PACKAGE_BRIDGE) += bridge
package-$(BR2_PACKAGE_BUSYBOX) += busybox
package-$(BR2_PACKAGE_BWM) += bwm
diff --git a/package/bluez-libs/Config.in b/package/bluez-libs/Config.in
new file mode 100644
index 000000000..2079771d8
--- /dev/null
+++ b/package/bluez-libs/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_BLUEZ_LIBS
+ tristate "bluez-libs"
+ default m if CONFIG_DEVEL
+ help
+ Bluez libs.
+
+ http://bluez.org
+
diff --git a/package/bluez-libs/Makefile b/package/bluez-libs/Makefile
new file mode 100644
index 000000000..6a6559084
--- /dev/null
+++ b/package/bluez-libs/Makefile
@@ -0,0 +1,87 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=bluez-libs
+PKG_VERSION:=2.17
+PKG_RELEASE:=2
+PKG_MD5SUM:=7b81dc86a48b89600eee235c6c940c51
+
+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_LIBS,bluez-libs,$(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-png=$(STAGING_DIR)/usr \
+ )
+ 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_LIBS):
+ install -d -m0755 $(IDIR_BLUEZ_LIBS)/usr/lib
+ cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libbluetooth.so.* $(IDIR_BLUEZ_LIBS)/usr/lib/
+ $(RSTRIP) $(IDIR_BLUEZ_LIBS)
+ $(IPKG_BUILD) $(IDIR_BLUEZ_LIBS) $(PACKAGE_DIR)
+
+$(STAGING_DIR)/usr/lib/libbluetooth.so: $(PKG_BUILD_DIR)/.built
+ mkdir -p $(STAGING_DIR)/usr/include/bluetooth
+ cp -fpR $(PKG_INSTALL_DIR)/usr/include/bluetooth/*.h $(STAGING_DIR)/usr/include/bluetooth
+ mkdir -p $(STAGING_DIR)/usr/lib
+ cp -fp $(PKG_INSTALL_DIR)/usr/lib/libbluetooth.{a,so*} $(STAGING_DIR)/usr/lib/
+
+install-dev: $(STAGING_DIR)/usr/lib/libbluetooth.so
+
+uninstall-dev:
+ rm -rf $(STAGING_DIR)/usr/lib/libbluetooth.{a,so*}
+
+compile: install-dev
+clean: uninstall-dev
diff --git a/package/bluez-libs/ipkg/bluez-libs.control b/package/bluez-libs/ipkg/bluez-libs.control
new file mode 100644
index 000000000..e7d0974c0
--- /dev/null
+++ b/package/bluez-libs/ipkg/bluez-libs.control
@@ -0,0 +1,7 @@
+Package: bluez-libs
+Priority: optional
+Section: net
+Maintainer: Markus Becker <mab@comnets.uni-bremen.de>
+Source: http://bluez.org
+Description: Bluez libs
+Depends: kmod-bluetooth
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