usr/src/cmd/which/install-sfw
changeset 70 ccbc04dc744d
parent 69 b0fbf23cc5cb
child 71 121736d79438
equal deleted inserted replaced
69:b0fbf23cc5cb 70:ccbc04dc744d
     1 #!/bin/ksh -p
       
     2 #
       
     3 # CDDL HEADER START
       
     4 #
       
     5 # The contents of this file are subject to the terms of the
       
     6 # Common Development and Distribution License (the "License").
       
     7 # You may not use this file except in compliance with the License.
       
     8 #
       
     9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
    10 # or http://www.opensolaris.org/os/licensing.
       
    11 # See the License for the specific language governing permissions
       
    12 # and limitations under the License.
       
    13 #
       
    14 # When distributing Covered Code, include this CDDL HEADER in each
       
    15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    16 # If applicable, add the following below this CDDL HEADER, with the
       
    17 # fields enclosed by brackets "[]" replaced with your own identifying
       
    18 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    19 #
       
    20 # CDDL HEADER END
       
    21 #
       
    22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
       
    23 # Use is subject to license terms.
       
    24 #
       
    25 #ident	"@(#)install-sfw	1.1	07/06/04 SMI"
       
    26 
       
    27 VERS=2.16
       
    28 
       
    29 GNUPREFIX=usr/gnu
       
    30 GNUBINDIR=${GNUPREFIX}/bin
       
    31 GNUSHAREDIR=${GNUPREFIX}/share
       
    32 GNUMANDIR=${GNUSHAREDIR}/man
       
    33 GNUMAN1DIR=${GNUMANDIR}/man1
       
    34 
       
    35 ROOTGNUBINDIR=${ROOT}/${GNUBINDIR}
       
    36 ROOTGNUMAN1DIR=${ROOT}/${GNUMAN1DIR}
       
    37 
       
    38 PREFIX=${ROOT}/usr
       
    39 SHAREDIR=${PREFIX}/share
       
    40 INFODIR=${SHAREDIR}/info
       
    41 
       
    42 MANSCRIPT=../sunman-stability
       
    43 . ${SRC}/tools/install.subr
       
    44 
       
    45 cd which-${VERS}
       
    46 
       
    47 _install E which ${ROOTGNUBINDIR}/which 555
       
    48 _install M which.1 ${ROOTGNUMAN1DIR}/which.1 444
       
    49 _install N which.info ${INFODIR}/which.info 444
       
    50 
       
    51 exit 0