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