source: scripts/blfs-scripts/blfs-ntp.sh @ 0f496c0

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 0f496c0 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: 660 bytes
Line 
1#!/bin/sh
2#
3# NTP
4#
5cd ${SRC}
6LOG=ntp-blfs.log
7
8set_libdirname
9setup_multiarch
10
11unpack_tarball ntp-${NTP_VER} &&
12cd ${PKGDIR}
13
14# Fix issues when compiling with gcc4 (shouldn't hurt for gcc versions)
15apply_patch ntp-4.2.0-gcc4
16
17max_log_init ntp ${NTP_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
18CC="${CC-gcc} ${ARCH_CFLAGS}" \
19./configure --prefix=/usr --bindir=/usr/sbin --sysconfdir=/etc \
20   --with-crypto \
21   >> ${LOGFILE} 2>&1 &&
22echo " o Configure OK" &&
23
24min_log_init ${BUILDLOGS} &&
25make ${PMFLAGS} LDFLAGS="-s" \
26   >> ${LOGFILE} 2>&1 &&
27echo " o Build OK" &&
28
29min_log_init ${INSTLOGS} &&
30make install \
31   >> ${LOGFILE} 2>&1 &&
32echo " o ALL OK" || barf
33
Note: See TracBrowser for help on using the repository browser.