source: scripts/scripts/untested/blfs-scripts/blfs-howl.sh @ 0b402ff

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 0b402ff was 0b402ff, checked in by Jim Gifford <clfs@…>, 18 years ago

r698@server (orig r696): ryan | 2005-11-13 00:00:47 -0800

r704@rei: lfs | 2005-11-13 19:01:08 +1100
Import updates for untested blfs-scripts



  • Property mode set to 100755
File size: 1005 bytes
Line 
1#!/bin/bash
2
3### howl ###
4
5cd ${SRC}
6LOG=howl-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12if [ ! "${libdirname}" = "lib" ]; then
13   extra_conf="--libdir=/usr/${libdirname}"
14fi
15
16unpack_tarball howl-${HOWL_VER}
17cd ${PKGDIR}
18
19max_log_init howl ${HOWL_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
20CC="${CC-gcc} ${ARCH_CFLAGS}" \
21CXX="${CXX-g++} ${ARCH_CFLAGS}" \
22CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
23CXXFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
24./configure --prefix=/usr ${extra_conf} \
25   --mandir=/usr/share/man \
26   --infodir=/usr/share/info \
27   >> ${LOGFILE} 2>&1 &&
28echo " o Configure OK" &&
29
30min_log_init ${BUILDLOGS} &&
31make \
32   >> ${LOGFILE} 2>&1 &&
33echo " o Build OK" &&
34
35min_log_init ${INSTLOGS} &&
36make install \
37   >> ${LOGFILE} 2>&1 &&
38echo " o ALL OK" || barf
39
40cat <<EOF
41------------------------------------------------------
42  No startup scripts have been created for either
43  mDNSResponder or nifd. Please create them.
44------------------------------------------------------
45
Note: See TracBrowser for help on using the repository browser.