source: scripts_home/scripts/blfs-scripts/blfs-ntp.sh@ 1c9c5c3

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 1c9c5c3 was 1c9c5c3, checked in by Jim Gifford <clfs@…>, 19 years ago

r624@server (orig r622): jim | 2005-10-31 12:40:28 -0800
Rearranging Archive

  • 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.