Difference between revisions of "HAL"
From CBLFS
Jump to navigationJump to search (→HalDaemon User/Group) |
|||
Line 31: | Line 31: | ||
groupadd -g 19 haldaemon && | groupadd -g 19 haldaemon && | ||
useradd -c "HAL Daemon User" -d /dev/null \ | useradd -c "HAL Daemon User" -d /dev/null \ | ||
− | -u 19 -g | + | -u 19 -g haldaemon -s /bin/false haldaemon |
== Configuration Information == | == Configuration Information == |
Revision as of 17:11, 3 October 2006
Download Source: | http://people.freedesktop.org/~david/dist/hal-0.5.8.1.tar.gz |
---|
Contents
Dependencies
Required
Reccomended
Optional
HalDaemon User/Group
groupadd -g 19 haldaemon && useradd -c "HAL Daemon User" -d /dev/null \ -u 19 -g haldaemon -s /bin/false haldaemon
Configuration Information
If you have Parted installed and you would like to link HAL against libparted pass the following to configure:
--enable-parted
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