Difference between revisions of "Bluez"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://www.kernel.org/pub/linux/bluetooth/bluez-{{Bluez-libs-Version}}.tar.gz |} ---- {{Package-Introduct...)
 
m (Optional)
 
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.kernel.org/pub/linux/bluetooth/bluez-{{Bluez-libs-Version}}.tar.gz
+
| http://www.kernel.org/pub/linux/bluetooth/bluez-{{Bluez-Version}}.tar.gz
 
|}
 
|}
  
Line 10: Line 10:
  
 
== Dependencies ==
 
== Dependencies ==
 +
 +
=== Optional ===
 +
* [[D-BUS]]
 +
* [[Glib2]]
 +
* [[ALSA]]
 +
* [[GStreamer]]
 +
* [[libusb]]
 +
* [[libsndfile]]
 +
* [[Libnl]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 15: Line 24:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr &&
+
  ./configure --prefix=/usr --sysconfdir=/etc \
 +
    --localstatedir=/var &&
 
  make
 
  make
  
Line 28: Line 38:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 +
USE_ARCH=32 ./configure --prefix=/usr --sysconfdir=/etc \
 +
    --localstatedir=/var &&
 
  make
 
  make
  
Line 39: Line 51:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
 +
USE_ARCH=n32 ./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib32 --localstatedir=/var &&
 
  make
 
  make
  
Line 50: Line 64:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 +
USE_ARCH=64 ./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib64 --localstatedir=/var &&
 
  make
 
  make
  
Line 57: Line 73:
 
  make install
 
  make install
  
= Contents =
+
[[Category:Network Utilities]]
 
 
{| style="text-align: left;"
 
|-valign="top"
 
! Installed Programs:
 
| None
 
|-valign="top"
 
! Installed Libraries:
 
| libbluetooth.{a,la,so}
 
|-valign="top"
 
! Installed Directory:
 
| /usr/include/bluetooth
 
|}
 

Latest revision as of 09:12, 22 April 2010

Download Source: http://www.kernel.org/pub/linux/bluetooth/bluez-4.80.tar.gz

Introduction to Bluez

Bluez is an implementation of the Bluetooth™ wireless standards specifications for Linux

Project Homepage: http://www.bluez.org/

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc \
    --localstatedir=/var &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
USE_ARCH=32 ./configure --prefix=/usr --sysconfdir=/etc \
    --localstatedir=/var &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
USE_ARCH=n32 ./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib32 --localstatedir=/var &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
USE_ARCH=64 ./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib64 --localstatedir=/var &&
make

Install the package

make install