usr/src/cmd/ntpd/install-sfw
author Jon Tibble <meths@btinternet.com>
Fri, 17 Jan 2014 19:32:42 +0000
branchoi_151a
changeset 252 600924158051
parent 14 ebdd963f7d5e
permissions -rwxr-xr-x
Bump ntpd to 4.2.7p411
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     1
#!/usr/bin/ksh93 -e
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     2
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     3
# CDDL HEADER START
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     4
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     5
# The contents of this file are subject to the terms of the
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     6
# Common Development and Distribution License (the "License").
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     7
# You may not use this file except in compliance with the License.
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     8
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
     9
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    10
# or http://www.opensolaris.org/os/licensing.
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    11
# See the License for the specific language governing permissions
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    12
# and limitations under the License.
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    13
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    14
# When distributing Covered Code, include this CDDL HEADER in each
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    15
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    16
# If applicable, add the following below this CDDL HEADER, with the
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    17
# fields enclosed by brackets "[]" replaced with your own identifying
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    18
# information: Portions Copyright [yyyy] [name of copyright owner]
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    19
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    20
# CDDL HEADER END
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    21
#
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    22
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    23
#
14
ebdd963f7d5e Import sfw build 140
Cyril Plisko <cyril.plisko@grigale.com>
parents: 9
diff changeset
    24
# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    25
#
14
ebdd963f7d5e Import sfw build 140
Cyril Plisko <cyril.plisko@grigale.com>
parents: 9
diff changeset
    26
#ident	"@(#)install-sfw	1.3	10/04/22 SMI"
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    27
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    28
set -o errexit
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    29
PKGVERS=$1
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    30
ETCDIR=${ROOT}/etc
9
502b128296a2 Import sfw build 135
Cyril Plisko <cyril.plisko@grigale.com>
parents: 0
diff changeset
    31
SECDIR=${ETCDIR}/security
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    32
SYSCONFDIR=${ETCDIR}/inet
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    33
BINDIR=${ROOT}/usr/sbin
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    34
LIBDIR=${ROOT}/usr/lib/inet
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    35
MANDIR=${ROOT}/usr/share/man
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    36
MAN1MDIR=${MANDIR}/man1m
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    37
MAN4DIR=${MANDIR}/man4
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    38
VARDIR=${ROOT}/var/ntp
14
ebdd963f7d5e Import sfw build 140
Cyril Plisko <cyril.plisko@grigale.com>
parents: 9
diff changeset
    39
MANIFESTDIR=${ROOT}/lib/svc/manifest/network
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    40
METHODDIR=${ROOT}/lib/svc/method
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    41
HTMLDIR=${ROOT}/usr/share/doc/ntp
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    42
AUTHHDIR=${ROOT}/usr/lib/help/auths/locale/C
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    43
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    44
source ${SRC}/tools/install.subr
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    45
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    46
cd ${PKGVERS}
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    47
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    48
# distribution executables
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    49
_install E ntpd/ntpd ${LIBDIR}/ntpd 0555
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    50
_install S scripts/ntp-wait/ntp-wait ${LIBDIR}/ntp-wait 0555
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    51
_install E ntpdate/ntpdate ${BINDIR}/ntpdate 0555
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    52
_install S scripts/ntptrace/ntptrace ${BINDIR}/ntptrace 0555
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    53
_install E ntpdc/ntpdc ${BINDIR}/ntpdc 0555
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    54
_install L ntpdc ${BINDIR}/xntpdc
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    55
_install E ntpq/ntpq ${BINDIR}/ntpq 0555
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    56
_install E util/ntp-keygen ${BINDIR}/ntp-keygen 0555
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    57
_install E util/ntptime ${BINDIR}/ntptime 0555
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    58
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    59
# distribution html
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    60
_install N html/access.html ${HTMLDIR}/access.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    61
_install N html/accopt.html ${HTMLDIR}/accopt.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    62
_install N html/assoc.html ${HTMLDIR}/assoc.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    63
_install N html/audio.html ${HTMLDIR}/audio.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    64
_install N html/authentic.html ${HTMLDIR}/authentic.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    65
_install N html/authopt.html ${HTMLDIR}/authopt.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    66
_install N html/autokey.html ${HTMLDIR}/autokey.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    67
_install N html/bugs.html ${HTMLDIR}/bugs.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    68
_install N html/build.html ${HTMLDIR}/build.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    69
_install N html/clock.html ${HTMLDIR}/clock.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    70
_install N html/clockopt.html ${HTMLDIR}/clockopt.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    71
_install N html/cluster.html ${HTMLDIR}/cluster.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    72
_install N html/comdex.html ${HTMLDIR}/comdex.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    73
_install N html/config.html ${HTMLDIR}/config.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    74
_install N html/confopt.html ${HTMLDIR}/confopt.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    75
_install N html/copyright.html ${HTMLDIR}/copyright.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    76
_install N html/debug.html ${HTMLDIR}/debug.html 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    77
_install N html/decode.html ${HTMLDIR}/decode.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    78
_install N html/discipline.html ${HTMLDIR}/discipline.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    79
_install N html/discover.html ${HTMLDIR}/discover.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    80
_install N html/extern.html ${HTMLDIR}/extern.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    81
_install N html/filter.html ${HTMLDIR}/filter.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    82
_install N html/hints.html ${HTMLDIR}/hints.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    83
_install N html/history.html ${HTMLDIR}/history.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    84
_install N html/howto.html ${HTMLDIR}/howto.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    85
_install N html/huffpuff.html ${HTMLDIR}/huffpuff.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    86
_install N html/index.html ${HTMLDIR}/index.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    87
_install N html/kern.html ${HTMLDIR}/kern.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
    88
_install N html/kernpps.html ${HTMLDIR}/kernpps.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    89
_install N html/keygen.html ${HTMLDIR}/keygen.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    90
_install N html/leap.html ${HTMLDIR}/leap.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    91
_install N html/miscopt.html ${HTMLDIR}/miscopt.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    92
_install N html/monopt.html ${HTMLDIR}/monopt.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    93
_install N html/msyslog.html ${HTMLDIR}/msyslog.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    94
_install N html/ntp_conf.html ${HTMLDIR}/ntp_conf.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    95
_install N html/ntp-wait.html ${HTMLDIR}/ntp-wait.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    96
_install N html/ntpd.html ${HTMLDIR}/ntpd.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    97
_install N html/ntpdate.html ${HTMLDIR}/ntpdate.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    98
_install N html/ntpdc.html ${HTMLDIR}/ntpdc.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
    99
_install N html/ntpdsim_new.html ${HTMLDIR}/ntpdsim_new.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   100
_install N html/ntpdsim.html ${HTMLDIR}/ntpdsim.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   101
_install N html/ntpq.html ${HTMLDIR}/ntpq.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   102
_install N html/ntptime.html ${HTMLDIR}/ntptime.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   103
_install N html/ntptrace.html ${HTMLDIR}/ntptrace.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   104
_install N html/orphan.html ${HTMLDIR}/orphan.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   105
_install N html/parsedata.html ${HTMLDIR}/parsedata.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   106
_install N html/parsenew.html ${HTMLDIR}/parsenew.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   107
_install N html/poll.html ${HTMLDIR}/poll.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   108
_install N html/pps.html ${HTMLDIR}/pps.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   109
_install N html/prefer.html ${HTMLDIR}/prefer.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   110
_install N html/quick.html ${HTMLDIR}/quick.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   111
_install N html/rate.html ${HTMLDIR}/rate.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   112
_install N html/rdebug.html ${HTMLDIR}/rdebug.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   113
_install N html/refclock.html ${HTMLDIR}/refclock.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   114
_install N html/release.html ${HTMLDIR}/release.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   115
_install N html/select.html ${HTMLDIR}/select.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   116
_install N html/sitemap.html ${HTMLDIR}/sitemap.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   117
_install N html/sntp.html ${HTMLDIR}/sntp.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   118
_install N html/stats.html ${HTMLDIR}/stats.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   119
_install N html/tickadj.html ${HTMLDIR}/tickadj.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   120
_install N html/warp.html ${HTMLDIR}/warp.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   121
_install N html/xleave.html ${HTMLDIR}/xleave.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   122
_install N html/drivers/driver1.html ${HTMLDIR}/drivers/driver1.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   123
_install N html/drivers/driver10.html ${HTMLDIR}/drivers/driver10.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   124
_install N html/drivers/driver11.html ${HTMLDIR}/drivers/driver11.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   125
_install N html/drivers/driver12.html ${HTMLDIR}/drivers/driver12.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   126
_install N html/drivers/driver16.html ${HTMLDIR}/drivers/driver16.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   127
_install N html/drivers/driver18.html ${HTMLDIR}/drivers/driver18.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   128
_install N html/drivers/driver19.html ${HTMLDIR}/drivers/driver19.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   129
_install N html/drivers/driver20.html ${HTMLDIR}/drivers/driver20.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   130
_install N html/drivers/driver22.html ${HTMLDIR}/drivers/driver22.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   131
_install N html/drivers/driver26.html ${HTMLDIR}/drivers/driver26.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   132
_install N html/drivers/driver27.html ${HTMLDIR}/drivers/driver27.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   133
_install N html/drivers/driver28.html ${HTMLDIR}/drivers/driver28.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   134
_install N html/drivers/driver29.html ${HTMLDIR}/drivers/driver29.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   135
_install N html/drivers/driver3.html ${HTMLDIR}/drivers/driver3.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   136
_install N html/drivers/driver30.html ${HTMLDIR}/drivers/driver30.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   137
_install N html/drivers/driver31.html ${HTMLDIR}/drivers/driver31.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   138
_install N html/drivers/driver32.html ${HTMLDIR}/drivers/driver32.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   139
_install N html/drivers/driver33.html ${HTMLDIR}/drivers/driver33.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   140
_install N html/drivers/driver34.html ${HTMLDIR}/drivers/driver34.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   141
_install N html/drivers/driver35.html ${HTMLDIR}/drivers/driver35.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   142
_install N html/drivers/driver36.html ${HTMLDIR}/drivers/driver36.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   143
_install N html/drivers/driver37.html ${HTMLDIR}/drivers/driver37.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   144
_install N html/drivers/driver38.html ${HTMLDIR}/drivers/driver38.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   145
_install N html/drivers/driver39.html ${HTMLDIR}/drivers/driver39.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   146
_install N html/drivers/driver4.html ${HTMLDIR}/drivers/driver4.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   147
_install N html/drivers/driver40.html ${HTMLDIR}/drivers/driver40.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   148
_install N html/drivers/driver42.html ${HTMLDIR}/drivers/driver42.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   149
_install N html/drivers/driver43.html ${HTMLDIR}/drivers/driver43.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   150
_install N html/drivers/driver44.html ${HTMLDIR}/drivers/driver44.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   151
_install N html/drivers/driver45.html ${HTMLDIR}/drivers/driver45.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   152
_install N html/drivers/driver5.html ${HTMLDIR}/drivers/driver5.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   153
_install N html/drivers/driver6.html ${HTMLDIR}/drivers/driver6.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   154
_install N html/drivers/driver7.html ${HTMLDIR}/drivers/driver7.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   155
_install N html/drivers/driver8.html ${HTMLDIR}/drivers/driver8.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   156
_install N html/drivers/driver9.html ${HTMLDIR}/drivers/driver9.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   157
_install N html/drivers/icons/home.gif ${HTMLDIR}/drivers/icons/home.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   158
_install N html/drivers/icons/mail2.gif ${HTMLDIR}/drivers/icons/mail2.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   159
_install N html/drivers/mx4200data.html ${HTMLDIR}/drivers/mx4200data.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   160
_install N html/drivers/oncore-shmem.html ${HTMLDIR}/drivers/oncore-shmem.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   161
_install N html/drivers/scripts/footer.txt ${HTMLDIR}/drivers/scripts/footer.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   162
_install N html/drivers/scripts/style.css ${HTMLDIR}/drivers/scripts/style.css 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   163
_install N html/drivers/tf582_4.html ${HTMLDIR}/drivers/tf582_4.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   164
_install N html/hints/a-ux ${HTMLDIR}/hints/a-ux 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   165
_install N html/hints/aix ${HTMLDIR}/hints/aix 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   166
_install N html/hints/bsdi ${HTMLDIR}/hints/bsdi 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   167
_install N html/hints/changes ${HTMLDIR}/hints/changes 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   168
_install N html/hints/decosf1 ${HTMLDIR}/hints/decosf1 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   169
_install N html/hints/decosf2 ${HTMLDIR}/hints/decosf2 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   170
_install N html/hints/freebsd ${HTMLDIR}/hints/freebsd 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   171
_install N html/hints/hpux ${HTMLDIR}/hints/hpux 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   172
_install N html/hints/linux ${HTMLDIR}/hints/linux 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   173
_install N html/hints/mpeix ${HTMLDIR}/hints/mpeix 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   174
_install N html/hints/notes-xntp-v3 ${HTMLDIR}/hints/notes-xntp-v3 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   175
_install N html/hints/parse ${HTMLDIR}/hints/parse 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   176
_install N html/hints/refclocks ${HTMLDIR}/hints/refclocks 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   177
_install N html/hints/rs6000 ${HTMLDIR}/hints/rs6000 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   178
_install N html/hints/sco.html ${HTMLDIR}/hints/sco.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   179
_install N html/hints/sgi ${HTMLDIR}/hints/sgi 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   180
_install N html/hints/solaris-dosynctodr.html ${HTMLDIR}/hints/solaris-dosynctodr.html 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   181
_install N html/hints/solaris.html ${HTMLDIR}/hints/solaris.html 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   182
_install N html/hints/solaris.xtra.4023118 ${HTMLDIR}/hints/solaris.xtra.4023118 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   183
_install N html/hints/solaris.xtra.4095849 ${HTMLDIR}/hints/solaris.xtra.4095849 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   184
_install N html/hints/solaris.xtra.patchfreq ${HTMLDIR}/hints/solaris.xtra.patchfreq 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   185
_install N html/hints/solaris.xtra.S99ntpd ${HTMLDIR}/hints/solaris.xtra.S99ntpd 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   186
_install N html/hints/sun4 ${HTMLDIR}/hints/sun4 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   187
_install N html/hints/svr4_package ${HTMLDIR}/hints/svr4_package 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   188
_install N html/hints/svr4-dell ${HTMLDIR}/hints/svr4-dell 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   189
_install N html/hints/todo ${HTMLDIR}/hints/todo 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   190
_install N html/hints/vxworks.html ${HTMLDIR}/hints/vxworks.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   191
_install N html/hints/winnt.html ${HTMLDIR}/hints/winnt.html 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   192
_install N html/icons/home.gif ${HTMLDIR}/icons/home.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   193
_install N html/icons/mail2.gif ${HTMLDIR}/icons/mail2.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   194
_install N html/pic/9400n.jpg ${HTMLDIR}/pic/9400n.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   195
_install N html/pic/alice11.gif ${HTMLDIR}/pic/alice11.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   196
_install N html/pic/alice13.gif ${HTMLDIR}/pic/alice13.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   197
_install N html/pic/alice15.gif ${HTMLDIR}/pic/alice15.gif 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   198
_install N html/pic/alice23.gif ${HTMLDIR}/pic/alice23.gif 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   199
_install N html/pic/alice31.gif ${HTMLDIR}/pic/alice31.gif 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   200
_install N html/pic/alice32.gif ${HTMLDIR}/pic/alice32.gif 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   201
_install N html/pic/alice35.gif ${HTMLDIR}/pic/alice35.gif 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   202
_install N html/pic/alice38.gif ${HTMLDIR}/pic/alice38.gif 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   203
_install N html/pic/alice44.gif ${HTMLDIR}/pic/alice44.gif 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   204
_install N html/pic/alice47.gif ${HTMLDIR}/pic/alice47.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   205
_install N html/pic/alice51.gif ${HTMLDIR}/pic/alice51.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   206
_install N html/pic/alice61.gif ${HTMLDIR}/pic/alice61.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   207
_install N html/pic/barnstable.gif ${HTMLDIR}/pic/barnstable.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   208
_install N html/pic/beaver.gif ${HTMLDIR}/pic/beaver.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   209
_install N html/pic/boom3.gif ${HTMLDIR}/pic/boom3.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   210
_install N html/pic/boom3a.gif ${HTMLDIR}/pic/boom3a.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   211
_install N html/pic/boom4.gif ${HTMLDIR}/pic/boom4.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   212
_install N html/pic/broad.gif ${HTMLDIR}/pic/broad.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   213
_install N html/pic/bustardfly.gif ${HTMLDIR}/pic/bustardfly.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   214
_install N html/pic/c51.jpg ${HTMLDIR}/pic/c51.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   215
_install N html/pic/description.jpg ${HTMLDIR}/pic/description.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   216
_install N html/pic/discipline.gif ${HTMLDIR}/pic/discipline.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   217
_install N html/pic/dogsnake.gif ${HTMLDIR}/pic/dogsnake.gif 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   218
_install N html/pic/driver29.gif ${HTMLDIR}/pic/driver29.gif 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   219
_install N html/pic/driver43_1.gif ${HTMLDIR}/pic/driver43_1.gif 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   220
_install N html/pic/driver43_2.jpg ${HTMLDIR}/pic/driver43_2.jpg 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   221
_install N html/pic/fg6021.gif ${HTMLDIR}/pic/fg6021.gif 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   222
_install N html/pic/fg6039.jpg ${HTMLDIR}/pic/fg6039.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   223
_install N html/pic/fig_3_1.gif ${HTMLDIR}/pic/fig_3_1.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   224
_install N html/pic/flatheads.gif ${HTMLDIR}/pic/flatheads.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   225
_install N html/pic/flt1.gif ${HTMLDIR}/pic/flt1.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   226
_install N html/pic/flt2.gif ${HTMLDIR}/pic/flt2.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   227
_install N html/pic/flt3.gif ${HTMLDIR}/pic/flt3.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   228
_install N html/pic/flt4.gif ${HTMLDIR}/pic/flt4.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   229
_install N html/pic/flt5.gif ${HTMLDIR}/pic/flt5.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   230
_install N html/pic/flt6.gif ${HTMLDIR}/pic/flt6.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   231
_install N html/pic/flt7.gif ${HTMLDIR}/pic/flt7.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   232
_install N html/pic/flt8.gif ${HTMLDIR}/pic/flt8.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   233
_install N html/pic/flt9.gif ${HTMLDIR}/pic/flt9.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   234
_install N html/pic/freq1211.gif ${HTMLDIR}/pic/freq1211.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   235
_install N html/pic/gadget.jpg ${HTMLDIR}/pic/gadget.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   236
_install N html/pic/gps167.jpg ${HTMLDIR}/pic/gps167.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   237
_install N html/pic/group.gif ${HTMLDIR}/pic/group.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   238
_install N html/pic/hornraba.gif ${HTMLDIR}/pic/hornraba.gif 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   239
_install N html/pic/igclock.gif ${HTMLDIR}/pic/igclock.gif 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   240
_install N html/pic/neoclock4x.gif ${HTMLDIR}/pic/neoclock4x.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   241
_install N html/pic/offset1211.gif ${HTMLDIR}/pic/offset1211.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   242
_install N html/pic/oncore_evalbig.gif ${HTMLDIR}/pic/oncore_evalbig.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   243
_install N html/pic/oncore_remoteant.jpg ${HTMLDIR}/pic/oncore_remoteant.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   244
_install N html/pic/oncore_utplusbig.gif ${HTMLDIR}/pic/oncore_utplusbig.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   245
_install N html/pic/oz2.gif ${HTMLDIR}/pic/oz2.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   246
_install N html/pic/panda.gif ${HTMLDIR}/pic/panda.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   247
_install N html/pic/pd_om006.gif ${HTMLDIR}/pic/pd_om006.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   248
_install N html/pic/pd_om011.gif ${HTMLDIR}/pic/pd_om011.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   249
_install N html/pic/peer.gif ${HTMLDIR}/pic/peer.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   250
_install N html/pic/pogo.gif ${HTMLDIR}/pic/pogo.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   251
_install N html/pic/pogo1a.gif ${HTMLDIR}/pic/pogo1a.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   252
_install N html/pic/pogo3a.gif ${HTMLDIR}/pic/pogo3a.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   253
_install N html/pic/pogo4.gif ${HTMLDIR}/pic/pogo4.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   254
_install N html/pic/pogo5.gif ${HTMLDIR}/pic/pogo5.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   255
_install N html/pic/pogo6.gif ${HTMLDIR}/pic/pogo6.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   256
_install N html/pic/pogo7.gif ${HTMLDIR}/pic/pogo7.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   257
_install N html/pic/pogo8.gif ${HTMLDIR}/pic/pogo8.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   258
_install N html/pic/pzf509.jpg ${HTMLDIR}/pic/pzf509.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   259
_install N html/pic/pzf511.jpg ${HTMLDIR}/pic/pzf511.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   260
_install N html/pic/rabbit.gif ${HTMLDIR}/pic/rabbit.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   261
_install N html/pic/radio2.jpg ${HTMLDIR}/pic/radio2.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   262
_install N html/pic/sheepb.jpg ${HTMLDIR}/pic/sheepb.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   263
_install N html/pic/stack1a.jpg ${HTMLDIR}/pic/stack1a.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   264
_install N html/pic/sx5.gif ${HTMLDIR}/pic/sx5.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   265
_install N html/pic/thunderbolt.jpg ${HTMLDIR}/pic/thunderbolt.jpg 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   266
_install N html/pic/tonea.gif ${HTMLDIR}/pic/tonea.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   267
_install N html/pic/tribeb.gif ${HTMLDIR}/pic/tribeb.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   268
_install N html/pic/wingdorothy.gif ${HTMLDIR}/pic/wingdorothy.gif 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   269
_install N html/scripts/accopt.txt ${HTMLDIR}/scripts/accopt.txt 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   270
_install N html/scripts/audio.txt ${HTMLDIR}/scripts/audio.txt 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   271
_install N html/scripts/authopt.txt ${HTMLDIR}/scripts/authopt.txt 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   272
_install N html/scripts/clockopt.txt ${HTMLDIR}/scripts/clockopt.txt 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   273
_install N html/scripts/command.txt ${HTMLDIR}/scripts/command.txt 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   274
_install N html/scripts/config.txt ${HTMLDIR}/scripts/config.txt 0444
252
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   275
_install N html/scripts/confopt.txt ${HTMLDIR}/scripts/confopt.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   276
_install N html/scripts/external.txt ${HTMLDIR}/scripts/external.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   277
_install N html/scripts/footer.txt ${HTMLDIR}/scripts/footer.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   278
_install N html/scripts/hand.txt ${HTMLDIR}/scripts/hand.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   279
_install N html/scripts/install.txt ${HTMLDIR}/scripts/install.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   280
_install N html/scripts/manual.txt ${HTMLDIR}/scripts/manual.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   281
_install N html/scripts/misc.txt ${HTMLDIR}/scripts/misc.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   282
_install N html/scripts/miscopt.txt ${HTMLDIR}/scripts/miscopt.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   283
_install N html/scripts/monopt.txt ${HTMLDIR}/scripts/monopt.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   284
_install N html/scripts/refclock.txt ${HTMLDIR}/scripts/refclock.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   285
_install N html/scripts/special.txt ${HTMLDIR}/scripts/special.txt 0444
600924158051 Bump ntpd to 4.2.7p411
Jon Tibble <meths@btinternet.com>
parents: 14
diff changeset
   286
_install N html/scripts/style.css ${HTMLDIR}/scripts/style.css 0444
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   287
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   288
cd ..
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   289
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   290
# man pages
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   291
_install N Solaris/ntptime.1m ${MAN1MDIR}/ntptime.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   292
_install N Solaris/ntp-keygen.1m ${MAN1MDIR}/ntp-keygen.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   293
_install N Solaris/ntpq.1m ${MAN1MDIR}/ntpq.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   294
_install N Solaris/ntpd.1m ${MAN1MDIR}/ntpd.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   295
_install N Solaris/ntpdc.1m ${MAN1MDIR}/ntpdc.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   296
_install N Solaris/ntpdate.1m ${MAN1MDIR}/ntpdate.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   297
_install N Solaris/ntptrace.1m ${MAN1MDIR}/ntptrace.1m 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   298
_install N Solaris/ntp.conf.4 ${MAN4DIR}/ntp.conf.4 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   299
_install N Solaris/ntprc.4 ${MAN4DIR}/ntprc.4 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   300
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   301
# example files
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   302
_install N Solaris/ntp.server ${SYSCONFDIR}/ntp.server 0644
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   303
_install N Solaris/ntp.client ${SYSCONFDIR}/ntp.client 0644
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   304
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   305
# smf service files
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   306
_install N Solaris/ntp.xml ${MANIFESTDIR}/ntp.xml 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   307
_install S Solaris/ntp ${METHODDIR}/ntp 0555
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   308
_install N Solaris/SmfValueNTP.html ${AUTHHDIR}/SmfValueNTP.html 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   309
_install N Solaris/SmfNTPStates.html ${AUTHHDIR}/SmfNTPStates.html 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   310
_install N Solaris/RtNTPMngmnt.html ${AUTHHDIR}/RtNTPMngmnt.html 0444
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   311
9
502b128296a2 Import sfw build 135
Cyril Plisko <cyril.plisko@grigale.com>
parents: 0
diff changeset
   312
_install N Solaris/auth_attr ${SECDIR}/auth_attr.d/ntp 0444
502b128296a2 Import sfw build 135
Cyril Plisko <cyril.plisko@grigale.com>
parents: 0
diff changeset
   313
_install N Solaris/prof_attr ${SECDIR}/prof_attr.d/ntp 0444
502b128296a2 Import sfw build 135
Cyril Plisko <cyril.plisko@grigale.com>
parents: 0
diff changeset
   314
0
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   315
b34509ac961f Import sfw repo b126
Cyril Plisko <cyril.plisko@grigale.com>
parents:
diff changeset
   316
exit 0