clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since b15e4602 was 617118d, checked in by Jim Gifford <clfs@…>, 19 years ago |
r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure
|
-
Property mode
set to
100755
|
File size:
982 bytes
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### dbus ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=dbus-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
| 13 | extra_conf="--libdir=/usr/${libdirname}"
|
---|
| 14 | fi
|
---|
| 15 |
|
---|
| 16 | if [ "Y" = "${MULTIARCH}" ]; then
|
---|
| 17 | # temporarily set PYTHON env var
|
---|
| 18 | export PYTHON=python${suffix}
|
---|
| 19 | fi
|
---|
| 20 |
|
---|
| 21 | unpack_tarball dbus-${DBUS_VER}
|
---|
| 22 | cd ${PKGDIR}
|
---|
| 23 |
|
---|
| 24 | max_log_init dbus ${DBUS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
| 25 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 26 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
---|
| 27 | CFLAGS="${TGT_CFLAGS}" \
|
---|
| 28 | CXXFLAGS="${TGT_CFLAGS}" \
|
---|
| 29 | ./configure --prefix=/usr ${extra_conf} \
|
---|
| 30 | --localstatedir=/var \
|
---|
| 31 | --sysconfdir=/etc \
|
---|
| 32 | --with-xml=libxml \
|
---|
| 33 | --mandir=/usr/share/man \
|
---|
| 34 | --infodir=/usr/share/info \
|
---|
| 35 | >> ${LOGFILE} 2>&1 &&
|
---|
| 36 | echo " o Configure OK" &&
|
---|
| 37 |
|
---|
| 38 | min_log_init ${BUILDLOGS} &&
|
---|
| 39 | make \
|
---|
| 40 | >> ${LOGFILE} 2>&1 &&
|
---|
| 41 | echo " o Build OK" &&
|
---|
| 42 |
|
---|
| 43 | min_log_init ${INSTLOGS} &&
|
---|
| 44 | make install \
|
---|
| 45 | >> ${LOGFILE} 2>&1 &&
|
---|
| 46 | echo " o ALL OK" || barf
|
---|
| 47 |
|
---|
| 48 | # Need to create a startup script
|
---|
Note:
See
TracBrowser
for help on using the repository browser.