HAL: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 13: | Line 13: | ||
* [[Glib2]] | * [[Glib2]] | ||
* [[PolicyKit]] | * [[PolicyKit]] | ||
* [[Python]] | |||
=== Reccomended === | === Reccomended === | ||
* [[PCI Utilities]] | * [[PCI Utilities]] | ||
* [[usbutils]] | |||
=== Optional === | === Optional === | ||
* [[Parted]] | * [[Parted]] | ||
| Line 47: | Line 48: | ||
=== 32Bit === | === 32Bit === | ||
Compile the package: | |||
export USE_ARCH=32 && | |||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | |||
./configure --prefix=/usr --sysconfdir=/etc \ | |||
--libexecdir=/usr/lib/hal --localstatedir=/var && | |||
make | |||
Install the package | |||
make install && | |||
unset USE_ARCH | |||
=== N32 === | === N32 === | ||
export USE_ARCH=n32 && | |||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | |||
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \ | |||
--libexecdir=/usr/lib32/hal --localstatedir=/var && | |||
make | |||
Install the package | |||
make install && | |||
unset USE_ARCH | |||
=== 64Bit === | === 64Bit === | ||
export USE_ARCH=64 && | |||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | |||
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64 \ | |||
--libexecdir=/usr/lib64/hal --localstatedir=/var && | |||
make | |||
Install the package | |||
make install && | |||
unset USE_ARCH && | |||
install -v -m755 -d /var/run/hald | |||
Revision as of 16:45, 3 October 2006
| Download Source: | http://people.freedesktop.org/~david/dist/hal-0.5.8.1.tar.gz |
|---|
Dependencies
Required
Reccomended
Optional
HalDaemon User/Group
groupadd -g 19 haldaemon &&
useradd -c "HAL Daemon User" -d /dev/null \
-u 19 -g messagebus -s /bin/false polkit
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc \
--libexecdir=/usr/lib/hal --localstatedir=/var &&
make
Install the package
make install && install -v -m755 -d /var/run/hald
Multilib
32Bit
Compile the package:
export USE_ARCH=32 &&
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --sysconfdir=/etc \
--libexecdir=/usr/lib/hal --localstatedir=/var &&
make
Install the package
make install && unset USE_ARCH
N32
export USE_ARCH=n32 &&
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \
--libexecdir=/usr/lib32/hal --localstatedir=/var &&
make
Install the package
make install && unset USE_ARCH
64Bit
export USE_ARCH=64 &&
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64 \
--libexecdir=/usr/lib64/hal --localstatedir=/var &&
make
Install the package
make install && unset USE_ARCH && install -v -m755 -d /var/run/hald