From 0dec4ae2ef6849adc9e6903c557abe2c1cdecd7e Mon Sep 17 00:00:00 2001 From: wbx Date: Thu, 14 Jul 2005 11:45:22 +0000 Subject: bluez stuff, thx Markus Becker git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1434 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/bluez-utils/Config.in | 11 ++++ package/bluez-utils/Makefile | 83 ++++++++++++++++++++++++++++ package/bluez-utils/ipkg/bluez-utils.control | 7 +++ 3 files changed, 101 insertions(+) create mode 100644 package/bluez-utils/Config.in create mode 100644 package/bluez-utils/Makefile create mode 100644 package/bluez-utils/ipkg/bluez-utils.control (limited to 'package/bluez-utils') 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 +Source: http://bluez.org +Description: Bluez libs +Depends: kmod-bluetooth, bluez-libs -- cgit v1.2.3