source: scripts/blfs-scripts/blfs-tcp-wrappers.sh @ 617118d

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

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 695 bytes
Line 
1#!/bin/sh
2
3### tcp-wrappers ###
4
5cd ${SRC}
6LOG="tcp-wrappers-blfs.log"
7SELF=`basename ${0}`
8set_buildenv
9set_libdirname
10setup_multiarch
11
12unpack_tarball tcp_wrappers_${TCPWRAP_VER}
13cd ${PKGDIR}
14apply_patch tcp_wrappers-7.6-shared_lib_plus_plus-1
15apply_patch tcp_wrappers-7.6-gcc34-1
16
17if [ ! "${libdirname}" = "lib" ]; then
18   sed -i -e "s@/lib/@/${libdirname}/@g" Makefile
19fi
20
21max_log_init tcp-wrappers ${TCPWRAP_VER} "native (shared)" ${BUILDLOGS} ${LOG}
22make CC="${CC-gcc} ${ARCH_CFLAGS}" REAL_DAEMON_DIR=/usr/sbin \
23   STYLE=-DPROCESS_OPTIONS linux \
24   >> ${LOGFILE} 2>&1 &&
25echo " o Build OK" &&
26
27min_log_init ${INSTLOGS} &&
28make install \
29   >> ${LOGFILE} 2>&1 &&
30echo " o ALL OK" || barf
31
Note: See TracBrowser for help on using the repository browser.