usr/src/cmd/tcpdump/install-sfw
author Jon Tibble <meths@btinternet.com>
Sun, 17 Feb 2013 18:37:25 +0000
branchoi_151a
changeset 208 a7a3296ee4c7
parent 3 ad3552f8e1ef
permissions -rw-r--r--
Bump tcpdump to 4.1.1

#!/usr/bin/ksh93
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

#
# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
#
#ident	"@(#)install-sfw	1.2	10/11/01 SMI"

# stop at first error
set -o errexit

VERS=4.1.1
PKGVERS=tcpdump-${VERS}
PREFIX=${ROOT}/usr
INFODIR=${PREFIX}/info
MANDIR=${PREFIX}/share/man

MANSCRIPT=../sunman-stability
source $SRC/tools/install.subr

cd ${PKGVERS}

_install M tcpdump.1 ${MANDIR}/man1/tcpdump.1 444

_install E tcpdump ${PREFIX}/sbin/tcpdump 555

exit 0