diff options
Diffstat (limited to 'build/mac')
23 files changed, 2862 insertions, 0 deletions
diff --git a/build/mac/English.lproj/GNUmakefile b/build/mac/English.lproj/GNUmakefile new file mode 100644 index 0000000..ab05fbe --- /dev/null +++ b/build/mac/English.lproj/GNUmakefile @@ -0,0 +1,8 @@ +TOPDIR = ../../.. +include $(TOPDIR)/src/include/builddefs + +LSRCFILES = Localizable.strings + +default install : + +include $(BUILDRULES) diff --git a/build/mac/English.lproj/Localizable.strings b/build/mac/English.lproj/Localizable.strings new file mode 100644 index 0000000..a65b152 --- /dev/null +++ b/build/mac/English.lproj/Localizable.strings @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> +<plist version="0.9"> +<dict> + <key>Starting Performance Co-Pilot</key> + <string>Starting Performance Co-Pilot</string> + <key>Stopping Performance Co-Pilot</key> + <string>Stopping Performance Co-Pilot</string> +</dict> +</plist> + diff --git a/build/mac/GNUmakefile b/build/mac/GNUmakefile new file mode 100644 index 0000000..0b8b57e --- /dev/null +++ b/build/mac/GNUmakefile @@ -0,0 +1,97 @@ +# +# Copyright (c) 2000,2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +TOPDIR = ../.. +include $(TOPDIR)/src/include/builddefs + +LDIRDIRT = pcp-* +LDIRT = $(wildcard pcp*.pkg) $(wildcard pcp*.dmg) \ + idb installer-files info description +SUBDIRS = English.lproj installer-resources +LSRCFILES = StartupParameters.plist build-installer \ + installer-description installer-info install-pcp uninstall-pcp + +default install install_pcp default_pcp : + +.PHONY: pack_pcp +pack_pcp : extrabits + @PACKAGE_VERSION=${PACKAGE_VERSION} \ + PACKAGE_MAJOR=${PACKAGE_MAJOR} \ + PACKAGE_MINOR=${PACKAGE_MINOR} \ + PACKAGE_BUILD=${PACKAGE_BUILD} \ + ./build-installer $(PACKAGE_MAKER) $(HDIUTIL) \ + $$DIST_ROOT ${PACKAGE_NAME} idb + +idb: $(DIST_MANIFEST) +# We need to do a fair bit of munging here +# Firstly, add a version number +# then swap source and destination +# ensure there is a mode and user/group for EVERY entry +# Add a 'rule' (eg replace) +# make destination relative +# make source relative to DIST_ROOT +# ensure that a symlink has a full path for the source (no change needed +# if source is already a full path) +# append the installer scripts + @echo Making idb... + @echo "# Version 1" > idb + @echo "# IDB for PCP" >> idb + @WA=`cd $(TOPDIR) ; pwd` ; \ + $(PCP_AWK_PROG) ' \ + $$1 == "d" { printf "%s %s %s %s %s src/ replace\n", $$1, $$2, $$3, $$4, $$5 ; next; } \ + $$1 == "l" { \ + str = ""; \ + if (substr($$2,1,1) != "/") { \ + i = split($$3, a, "/"); \ + for( n = 1; n < i; n++ ) { \ + str = str a[n] "/"; \ + } \ + } \ + printf "s 0 $(PCP_USER_INSTALL) $(PCP_GROUP_INSTALL) %s %s%s replace\n", $$3, str, $$2 ; \ + next; \ + } \ + $$5 ~ "'$$DIST_ROOT'" { \ + sub(".*'$$DIST_ROOT'", "", $$5); \ + } \ + { \ + printf "%s %s %s %s %s %s replace\n", $$1, $$2, $$3, $$4, $$6, $$5 ; \ + } \ + ' $$DIST_MANIFEST \ + | sed -e 's# '$$WA'/# #g' -e 's# /# #g' >> idb + @(bdir=`echo $(PCP_BINADM_DIR) | cut -c2-`; \ + echo "f 644 root wheel $$bdir/idb idb replace"; \ + echo "f 755 root wheel $$bdir/install-pcp install-pcp replace"; \ + echo "f 755 root wheel $$bdir/uninstall-pcp uninstall-pcp replace") >> idb + @echo "f 644 root wheel Library/StartupItems/pcp/StartupParameters.plist StartupParameters.plist replace" >> idb + @echo "d 755 root wheel Library/StartupItems/pcp/Resources . replace" >> idb + @echo "d 755 root wheel Library/StartupItems/pcp/Resources/English.lproj . replace" >> idb + @echo "f 644 root wheel Library/StartupItems/pcp/Resources/English.lproj/Localizable.strings English.lproj/Localizable.strings replace" >> idb + @echo "s 0 root wheel Library/StartupItems/pcp/pmcd etc/init.d/pmcd replace" >> idb + @echo "s 0 root wheel Library/StartupItems/pcp/pmie etc/init.d/pmie replace" >> idb +ifeq "$(HAVE_LIBMICROHTTPD)" "1" + @echo "s 0 root wheel Library/StartupItems/pcp/pmwebd etc/init.d/pmwebd replace" >> idb +endif + @echo "s 0 root wheel Library/StartupItems/pcp/pmproxy etc/init.d/pmproxy replace" >> idb + @echo "s 0 root wheel Library/StartupItems/pcp/pmlogger etc/init.d/pmlogger replace" >> idb + @echo idb created + +extrabits: idb + DIST_MANIFEST= $(INSTALL) -m 755 idb install-pcp uninstall-pcp \ + $(PCP_BINADM_DIR) + DIST_MANIFEST= $(INSTALL) -m 644 StartupParameters.plist \ + Library/StartupItems/pcp/StartupParameters.plist + DIST_MANIFEST= $(INSTALL) -m 644 English.lproj/Localizable.strings \ + Library/StartupItems/pcp/Resources/English.lproj/Localizable.strings + +include $(BUILDRULES) diff --git a/build/mac/StartupParameters.plist b/build/mac/StartupParameters.plist new file mode 100644 index 0000000..3dcfabb --- /dev/null +++ b/build/mac/StartupParameters.plist @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>Description</key> + <string>Performance Co-Pilot</string> + <key>OrderPreference</key> + <string>Late</string> + <key>Provides</key> + <array> + <string>PCP</string> + </array> +<!-- + <key>Requires</key> + <array> + <string>Disks</string> + <string>DirectoryServices</string> + </array> + <key>Uses</key> + <array> + <string>Network Time</string> + </array> +--> +</dict> +</plist> diff --git a/build/mac/build-installer b/build/mac/build-installer new file mode 100755 index 0000000..f56dd68 --- /dev/null +++ b/build/mac/build-installer @@ -0,0 +1,127 @@ +#! /bin/sh + +if [ ! -x "$1" -o ! -x "$2" -o ! -d "$3" -o -z "$4" -o ! -f "$5" ]; then + if [ ! -x "$1" ]; then + echo PackageMaker not executable + fi + if [ ! -x "$2" ]; then + echo hdiutil not executable + fi + if [ ! -d "$3" ]; then + echo "DIST_ROOT doesnt exist" + fi + if [ -z "$4" ]; then + echo Must supply a package name + fi + if [ ! -f "$5" ]; then + echo idb file not found + fi + echo "Usage: $0 /path/to/PackageMaker /path/to/hdiutil /path/to/DIST_ROOT package_name idb_file" + exit 1 +fi + +IFDIR="installer-files" +IRDIR="installer-resources" +PKGMKR=$1 +HDIUTIL=$2 +DIST_ROOT=$3 +PACKAGE=$4-$PACKAGE_VERSION-$PACKAGE_BUILD +PKG=$PACKAGE.pkg +DMG=$PACKAGE.dmg +TEMPDMG=$PACKAGE.tmp.dmg +HERE=`pwd` +IDB=$HERE/$5 + +prog=`basename $0` +tmp=`mktemp -d /tmp/pcp.XXXXXXXXX` || exit 1 +status=1 +trap "rm -rf $tmp; exit \$status" 0 1 2 15 + +_do() +{ + if ! $* > $tmp/out 2>&1 + then + echo "$prog: Error: $*" + cat $tmp/out + exit 1 + fi +} + +_run() +{ + echo $* + eval $* +} + +echo "Verifying IDB file is valid" +_do ./install-pcp -R $DIST_ROOT -p $IDB + +echo "Gathering files from the source tree using install-pcp" +_do rm -rf $IFDIR +_do mkdir $IFDIR +cd $IFDIR +_do ../install-pcp -R $DIST_ROOT -c $IDB +cd $HERE + +pwd + +#for i in ReadMe.html Welcome.txt License.html +#do +# _do rm -f $IRDIR/$i +# _do cp $WA_MAC/docs/$i $IRDIR/$i +#done + +#_do rm -f census census.gz + +echo "Updating version information..." +MACOSX_VERSION=`expr \`uname -r | cut -d. -f1\` - 4` +BUILD_DATE=`date +'%Y%m%d'` + +for f in installer-info installer-description; do + nf=`echo $f | cut -c11-` + sed -e"s/@package_version@/$PACKAGE_VERSION/g" \ + -e"s/@package_major@/$PACKAGE_MAJOR/g" \ + -e"s/@package_minor@/$PACKAGE_MINOR/g" \ + -e"s/@macosx_version@/$MACOSX_VERSION/g" \ + -e"s/@build_date@/$BUILD_DATE/g" \ + < $f > $nf || exit 1 +done + +echo "Launching PackageMaker..." + +_do rm -rf $PKG + +# PackageMaker returns non-zero value even if it succeeds. +# PackageMaker must be run by the user logged into the localhost desktop. +# +_run $PKGMKR -build -p $HERE/$PKG \ + -f $HERE/installer-files -r $HERE/installer-resources \ + -i $HERE/info -d $HERE/description & +wait + +if [ ! -d $HERE/$PKG ] +then + echo "$prog: Package generation failed" + exit 1 +fi + +echo "Launching hdiutil..." +_do rm -rf $DMG $TEMPDMG $PACKAGE + +_do mkdir $PACKAGE +_do mv $PKG $PACKAGE + +_do $HDIUTIL makehybrid -quiet -o $PACKAGE.tmp $PACKAGE \ + -hfs-openfolder dmg.tmp/$DMG -hfs +_do $HDIUTIL convert -quiet $TEMPDMG -format UDRO -o $DMG +_do $HDIUTIL internet-enable -quiet -yes $DMG + +if [ ! -f $HERE/$DMG ] +then + echo "$prog: Package Disk Image generation failed" + exit 1 +else + echo "Wrote: $HERE/$DMG" +fi + +status=0 diff --git a/build/mac/cmdline-install b/build/mac/cmdline-install new file mode 100755 index 0000000..f1cd4eb --- /dev/null +++ b/build/mac/cmdline-install @@ -0,0 +1,57 @@ +#!/bin/sh +# +# install a PCP *.dmg package from the command line ... +# run from the build/mac directory in a PCP build tree after Makepkgs +# +tmp=`mktemp -d /var/tmp/pcp.XXXXXXXXX` || exit 1 +sts=1 +trap "rm -rf $tmp; exit \$sts" 0 1 2 3 15 + +disk_image=`echo pcp-*.dmg | sed -e 's/$/ /' -e 's/[^ ]*\.tmp\.dmg / /' -e 's/ $//'` +if [ "$disk_image" = "pcp-*.dmg" ] +then + echo "Error: no .dmg file?" + exit +fi + +n=`echo "$disk_image" | wc -w | sed -e 's/ //'` +if [ "$n" -gt 1 ] +then + echo "Error: more than one .dmg file: $disk_image" + exit +fi + +base=`echo $disk_image | sed -e 's/\.dmg$//'` +if hdiutil attach $disk_image >$tmp/out 2>&1 +then + : +else + cat $tmp/out + echo "Error: hdiutil attach failed" + exit +fi + +if [ -d /Volumes/$base/$base.pkg ] +then + if sudo installer -pkg /Volumes/$base/$base.pkg -target / >$tmp/out 2>&1 + then + sts=0 + else + cat $tmp/out + echo "Error: installer failed" + fi +else + ls -l /Volumes/$base/ + echo "Error: no package directory /Volumes/$base/$base.pkg?" + exit +fi + +if hdiutil detach /Volumes/$base >$tmp/out 2>&1 +then + : +else + cat $tmp/out + echo "Error: hdiutil detach failed" + sts=1 + exit +fi diff --git a/build/mac/install-pcp b/build/mac/install-pcp new file mode 100755 index 0000000..8578789 --- /dev/null +++ b/build/mac/install-pcp @@ -0,0 +1,837 @@ +#! /bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Process a gendist-like idb file to collect, install, upgrade +# and remove files. +# +# The format of the IDB file is: +# +# The first line must contain a version string "# Version 1" +# +# All following lines must contain: +# d|f|h|s mode owner group destination source option +# +# One of: +# d directory to be created at destination (source ignored) +# f file to be installed from source to destination +# h hard link to be created at destination to source +# s soft link to be created at destination to source +# +# mode four digit mode bits +# owner file's owner +# group file's group +# destination create file/directory/link here +# source where file came from, or what link points to +# +# One of these options: replace, update, suggest, check or noupdate. +# +# Optionally, a os version number (uname -r), which ensures the file will only +# get installed on that os version, or a minimum and a maximum version number (inclusive). +# +# If the target does not exist, all options just install the file. +# +# If the target already exists, the options do the following: +# +# Option Type Operation +# --------- ---- --------------------------------------------------- +# replace d update permissions +# fhs remove and install replacement +# +# update d hs illegal option +# f move existing file to file.bak, install new file +# +# suggest d hs illegal option +# f install new file as file.new +# +# check dfhs do nothing +# +# noupdate dfhs do nothing +# +# +# If removing the target, the target is removed unless the option is +# noupdate. Directories will not be removed if they are not empty. +# +# Lines starting with '#' or empty lines are ignored. +# + +tmp=`mktemp -d /tmp/pcp.XXXXXXXXX` || exit 1 +prog=`basename $0` +status=1 +result=0 # non-fatal errors will set this to 1 +now=`date` +host=`hostname` +dump_mesg=false + +trap "rm -rf $tmp; exit \$status" 0 1 2 15 + +MKDIR=/bin/mkdir +CP=/bin/cp +MV=/bin/mv +LN=/bin/ln +RM=/bin/rm +RMDIR=/bin/rmdir +CHMOD=/bin/chmod +CHOWN=/usr/sbin/chown +CHGRP=/usr/bin/chgrp +DIRNAME=/usr/bin/dirname +TEE=/usr/bin/tee +JOIN=/usr/bin/join +SED=/usr/bin/sed +AWK=/usr/bin/awk +SORT=/usr/bin/sort +UNAME=/usr/bin/uname + +OS_VERSION=`$UNAME -r` + +_usage() +{ + cat << EOF +Usage: $prog [-cinpr] [-C os_version] [-l logfile] [-u origidb] [-R root] idbfile + + -l logfile Save important output to logfile + -n Show actions but do not execute + -R root Collect or install files using root rather + than WORKAREA or / + -v Verbose output + -C os_ver (Only used for collect phase) Only collect files which will be used for os_ver + + One of: + -c Collect source files into current dir + -i Install files from current directory + -p Parse and check idb is valid + -r Remove installed files. + -u origidb Remove files not in new IDB and then install +EOF + exit 1 +} + +_echo() +{ + if $log + then + echo "$*" | $TEE -a $logfile + else + echo "$*" + fi +} + +_error() +{ + _echo "$prog: Error: $*" | $TEE -a $mesg + dump_mesg=true + result=1 + exit 1 +} + +_warn() +{ + _echo "$prog: Warning: $*" | $TEE -a $mesg + dump_mesg=true +} + +_debug() +{ + sed -e "s/^/$prog: Debug: /" | $TEE -a $mesg + dump_mesg=true +} + +_mesg_head() +{ + _echo "$*" | $TEE -a $mesg +} + +_mesg() +{ + _echo "$prog: $*" | $TEE -a $mesg + dump_mesg=true +} + +_note() +{ + _echo "$prog: Note: $*" +} + +_cmd() +{ + $verbose && _echo "$*" + $* +} + +_get_numeric_version() +{ + echo $1 | awk ' + { n = split($0, v, "."); + if (n == 2) + v[2] = 0; + print (v[0] * 100) + (v[1] * 10) + v[2]; } + ' +} + +_test_version() +{ + local _min_numeric + local _max_numeric + local _os_numeric + local _min_version=$1 + local _max_version=$2 + local _temp_numeric + + if [ -z "$_min_version" -o "$_min_version" = "$OS_VERSION" ]; then + # No version, or exact match + return 0 + elif [ -z "$_max_version" ]; then + # No max and no exact match with min + return 1 + else + # max and min without exact match, so test range + _min_numeric=`_get_numeric_version $_min_version` + _max_numeric=`_get_numeric_version $_max_version` + _os_numeric=`_get_numeric_version $OS_VERSION` + if [ $_min_numeric -gt $_max_numeric ]; then + _temp_numeric=$_min_numeric + _min_numeric=$_max_numeric + _max_numeric=$_temp_numeric + fi + if [ $_os_numeric -ge $_min_numeric -a $_os_numeric -le $_max_numeric ]; then + return 0 + else + return 1 + fi + fi +} + +_remove_file() +{ + if _test_version $2 $3 + then + if [ -f $root/$1 ] + then + if ! _cmd $RM $root/$1 + then + _warn "Unable to remove $root/$1, continuing" + fi + else + _note "$root/$1 does not exist for removal, skipping" + fi + fi +} + +_remove_dir() +{ + if _test_version $2 $3 + then + if [ -d $root/$1 ] + then + if ! _cmd $RMDIR $root/$1 + then + _warn "Unable to remove $root/$1, continuing" + fi + else + _note "$root/$1 does not exist for removal, skipping" + fi + fi +} + +# $1 is path to file in tree +# $2 is path to the file in the workarea +# path is created in current directory and the file is copied +# +_collect_file() +{ + file=$root/$1 + dir=`$DIRNAME $2` + + if [ ! -z "$collect_version" ]; then + # override the OS_VERSION, which is used in test_version() + OS_VERSION=$collect_version + if ! _test_version $3 $4 + then + # version doesn't match, so skip it + return + fi + fi + + if [ ! -r $file ] + then + _error "Unable to find $file" + fi + + if [ ! -d $dir ] + then + if _cmd $MKDIR -p $dir + then + : + else + _error "Unable to create $dir" + fi + fi + + if ! _cmd $CP $file $2 + then + _error "Unable to copy $file" + fi +} + +# Takes the idb line +# d|f|h|s mode owner group destination source option +_install_file() +{ + type=$1 + target=$root/$5 + source=$6 + option=$7 + chopts= + + if _test_version $8 $9 + then + # Set to true if we need to set mode, uid and gid + installed=false + + if [ $type = "d" ] + then + if [ ! -d $target ] + then + if _cmd $MKDIR -p $target + then + installed=true + else + _error "Unable to create dir $target" + fi + elif [ -f $target ] + then + if [ $option = "replace" ] + then + if ! _cmd $RM $target + then + _error "Unable to replace existing $target with directory" + fi + if _cmd $MKDIR -p $target + then + installed=true + else + _error "Unable to create dir $target" + fi + else + _error "$target exists but is not a directory" + fi + fi + elif [ $type = "f" ] + then + if [ ! -f $source ] + then + echo "cwd=`pwd`" >$tmp/debug + echo "source dir=`dirname $source`" >>$tmp/debug + ls -l `dirname $source` >>$tmp/debug + _debug <$tmp/debug + _error "Unable to find file ($source) for $target" + fi + if [ -f $target ] + then + case $option in + replace) + if ! _cmd $RM $target + then + _warn "Unable to remove existing $target, continuing" + fi + if _cmd $MV $source $target + then + installed=true + else + _error "Unable to install $target" + fi + ;; + update) + if ! _cmd $CP $target $target.bak + then + _warn "Unable to copy existing $target to $target.bak, continuing" + fi + + if ! _cmd $RM $target + then + _warn "Unable to remove existing $target, continuing" + fi + + if _cmd $MV $source $target + then + _mesg "Update to $target installed, original backed up at $target.bak" + installed=true + else + if _cmd $CP $target.bak $target + then + _error "Unable to install $target, original moved back" + else + _error "Unable to install $target, original now $target.bak" + fi + fi + ;; + + suggest) + if _cmd $MV $source $target.new + then + _mesg "Suggested update to $target installed at $target.new" + installed=true + target=$target.new + else + _warn "Unable to install $target as $target.new, continuing" + fi + ;; + + check) + # Nothing to do if file exists + ;; + noupdate) + # Nothing to do if file exists + ;; + *) + _error "Unsupported IDB option ($option) for $target" + ;; + esac + elif [ -d $target ] + then + _error "$target exists but is a directory" + else + if _cmd $MV $source $target + then + installed=true + else + _error "Unable to install $target" + fi + fi + elif [ $type = "h" ] + then + if [ -f $target ] + then + case $option in + replace) + if ! _cmd $RM $target + then + _warn "Unable to remove existing $target, continuing" + fi + if _cmd $LN $root/$source $target + then + installed=true + else + _error "Unable to install $target" + fi + ;; + update) + _error "Illegal update option for hard link $target to $root/$source" + ;; + suggest) + _error "Illegal suggest option for hard link $target to $root/$source" + ;; + check) + # Nothing to do if file exists + ;; + noupdate) + # Nothing to do if file exists + ;; + esac + elif [ -d $target ] + then + _error "$target exists but is a directory" + else + if _cmd $LN $root/$source $target + then + installed=true + else + _error "Unable to install $target" + fi + fi + elif [ $type = "s" ] + then + chopts="-h" + if [ -f $target ] + then + case $option in + replace) + if ! _cmd $RM $target + then + _warn "Unable to remove existing $target, continuing" + fi + if _cmd $LN -s -f $root/$source $target + then + installed=true + else + _error "Unable to install $target" + fi + ;; + update) + _error "Illegal update option for soft link $target to $root/$source" + ;; + suggest) + _error "Illegal suggest option for soft link $target to $root/$source" + ;; + check) + # Nothing to do if file exists + ;; + noupdate) + # Nothing to do if file exists + ;; + esac + elif [ -d $target ] + then + _error "$target exists but is a directory" + else + if _cmd $LN -s -f $root/$source $target + then + installed=true + else + _error "Unable to install $target" + fi + fi + else + _error "Unrecognised file type ($type)" + fi + + if $installed + then + if [ "$type" != "s" ] ; then + if ! _cmd $CHMOD $2 $target + then + _warn "Unable to change mode of $target to $2, continuing" + fi + fi + if ! _cmd $CHOWN $chopts $3 $target + then + _warn "Unable to change ownership of $target to $3, continuing" + fi + if ! _cmd $CHGRP $chopts $4 $target + then + _warn "Unable to change group of $target to $4, continuing" + fi + fi + fi +} + +_remove() +{ + # + # Directories are removed after all files are removed + # If directory is not empty, default is to ignore and move on + # + sort -k1r,1 -k5r,5 $1 < $1 \ + | $AWK >> $tmp/cmds ' +$7 == "noupdate" { next } +$1 == "d" { printf("_remove_dir %s %s %s\n", $5, $8, $9); next } + { printf("_remove_file %s %s %s\n", $5, $8, $9) } +' +} + +_install() +{ + # + # Directories are installed before all files are installed + # Links are installed after normal files + # + sed < $tmp/idb >> $tmp/cmds -e 's/^/_install_file /' +} + +show=false +collect=false +install=false +remove=false +upgrade=false +verbose=false +logfile= +log=false +mesg=$tmp/mesg +root= +collect_version= +parse=false +if set -- `getopt cC:il:nprR:u:v $*` +then + for i in $* + do + case $i in + -C) + $install && _usage + $remove && _usage + $upgrade && _usage + $parse && _usage + collect=true + collect_version=$2 + echo "Collecting for $collect_version" + shift 2;; + -c) + $install && _usage + $remove && _usage + $upgrade && _usage + $parse && _usage + collect=true + shift;; + -i) + $collect && _usage + $remove && _usage + $upgrade && _usage + $parse && _usage + install=true + shift;; + -l) + log=true + logfile=$2 + touch $logfile + if [ ! -w $logfile ] + then + log=false + _warn "Unable to open logfile ($logfile)" + fi + shift 2;; + -n) + show=true + shift;; + -p) + $collect && _usage + $install && _usage + $upgrade && _usage + $remove && _usage + parse=true + shift;; + -r) + $collect && _usage + $install && _usage + $upgrade && _usage + $parse && _usage + remove=true + shift;; + -R) + root=$2 + shift 2;; + -u) + $collect && _usage + $install && _usage + $remove && _usage + $parse && _usage + upgrade=true + oidb=$2 + shift 2;; + -v) + verbose=true + shift;; + --) + break + shift;; + esac + done + shift +else + _usage +fi + +if [ $# -ne 1 ] +then + _usage +fi + +idb=$1 + +if [ ! -r $idb ] +then + echo "$prog: Unable to open $idb" + exit 1 +fi + +$AWK < $idb > $tmp/err -v prog=$prog -v idb=$idb ' +BEGIN { fail = 0; version = 0; entries = 0 } + +NR == 1 && ( NF != 3 || $1 != "#" || $2 != "Version" || $3 != "1" ) { + printf("%s: Error: Line %d of %s has an invalid version string (%s)\n", + prog, NR, idb, $0); + fail = 1; + exit(1); +} + +NR == 1 { version = 1; next } +/^#/ { next } +NF == 0 { next } + +NF != 7 && NF != 8 && NF != 9 { + printf("%s: Error: Line %d of %s does not have 7 or 8 or 9 entries (%d)\n", + prog, NR, idb, NF); + fail = 1; + exit(1); +} + +$1 != "d" && $1 != "f" && $1 != "h" && $1 != "s" { + printf("%s: Error: Line %d of %s has invalid file type (%s)\n", + prog, NR, idb, $1); + fail = 1; + exit(1); +} + +$7 != "replace" && $7 != "update" && $7 != "suggest" && $7 != "check" && $7 != "noupdate" { + printf("%s: Error: Line %d of %s has invalid file option (%s)\n", + prog, NR, idb, $7); + fail = 1; + exit(1); +} + +$1 != "f" && ($7 == "update" || $7 == "suggest") { + printf("%s: Error: Line %d of %s has unsupported combination of %s and %s\n", + prog, NR, idb, $1, $7); + fail = 1; + exit(1); +} + +$5 ~ "^/" { + printf("%s: Error: Line %d of %s does not have relative path (%s)\n", + prog, NR, idb, $5); + fail = 1; + exit(1); +} + +$6 ~ "^/" { + printf("%s: Error: Line %d of %s does not have relative path (%s)\n", + prog, NR, idb, $6); + fail = 1; + exit(1); +} + + { entries++ } + +END { + if (!fail) { + if (!version) { + printf("%s: Error: No version string in %s\n", + prog, idb); + exit(1); + } + if (!entries) { + printf("%s: Error: No entries in %s\n", + prog, idb); + exit(1); + } + } +} +' + +if [ -s $tmp/err ] +then + echo "$prog: Invalid IDB file detected:" + cat $tmp/err + exit 1 +elif $parse +then + status=0 + exit +fi + +$RM -f $tmp/dirs $tmp/cmds $tmp/files $tmp/idb $tmp/tidb +touch $tmp/dirs $tmp/cmds $tmp/files + +sed < $idb -e '/^#/d' -e '/^$/d' \ +| $SORT -k1,1 -k5,5 \ +> $tmp/idb + +cat << EOF > $mesg + +======================================================================= +Installation issues that may require further investigation: +EOF + +if $remove +then + + _mesg_head "Removing all installed PCP files" + _mesg_head "Date: "`date` + _mesg_head "User: $USER" + _remove $tmp/idb + + +# +# Collect files out of source tree and copy here using the same +# directory structure +# + +elif $collect +then + _mesg_head "Collecting all files to be included in package" + _mesg_head "Date: "`date` + _mesg_head "User: $USER" + + [ "X$root" = "X" ] && root=$WORKAREA + + if [ "X$root" = "X" ] + then + _error "Neither \$WORKAREA or -R were set" + exit 1 + fi + + $AWK < $tmp/idb > $tmp/cmds ' +$1 == "f" { printf("_collect_file %s %s %s %s\n", $5, $6, $8, $9) }' + +# +# Install files assuming that they do not already exist +# +elif $install +then + _mesg_head "Installing PCP files" + _mesg_head "Date: "`date` + _mesg_head "User: $USER" + _install + +elif $upgrade +then + _mesg_head "Upgrade of PCP files" + _mesg_head "Date: "`date` + _mesg_head "User: $USER" + + # Determine which files need to be removed since they + # are not in the new set of files. Files which are + # in both sets will be upgraded depending on their + # IDB option. + + if [ ! -r $oidb ] + then + _warn "Upgrade in progress but cannot find old inventory ($oidb) to delete files that are no longer required" + else + sed < $oidb -e '/^#/d' -e '/^$/d' \ + | $SORT -k1,1 -k5,5 \ + > $tmp/oidb + + # explicity name all fields so that the extra os_version field doesnt confuse join + $JOIN -t' ' -v 2 -1 5 -2 5 $tmp/idb $tmp/oidb > $tmp/extra + if [ -s $tmp/extra ] + then + _remove $tmp/extra + else + _note "No files need to be removed before upgrade" + fi + fi + _install + +else + echo "$prog: Must select one of -r, -c, -i or -u options" + exit 1 +fi + +if $show +then + cat $tmp/cmds +else + $verbose && cat $tmp/cmds +. $tmp/cmds +fi + +if $dump_mesg +then + $log && cat $mesg >> $logfile + cat $mesg +fi + +status=$result diff --git a/build/mac/installer-description b/build/mac/installer-description new file mode 100644 index 0000000..3e0819e --- /dev/null +++ b/build/mac/installer-description @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>IFPkgDescriptionDeleteWarning</key> + <string></string> + <key>IFPkgDescriptionDescription</key> + <string>Performance Co-Pilot for Mac OS X</string> + <key>IFPkgDescriptionTitle</key> + <string>PCP for Mac OS X</string> + <key>IFPkgDescriptionVersion</key> + <string>@package_version@</string> +</dict> +</plist> diff --git a/build/mac/installer-info b/build/mac/installer-info new file mode 100644 index 0000000..8270f73 --- /dev/null +++ b/build/mac/installer-info @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleGetInfoString</key> + <string>Performance Co-Pilot @package_version@</string> + <key>CFBundleIdentifier</key> + <string>com.sgi.pkg.pcp</string> + <key>CFBundleName</key> + <string>Performance Co-Pilot</string> + <key>CFBundleShortVersionString</key> + <string>@package_version@</string> + <key>IFMajorVersion</key> + <integer>@package_major@</integer> + <key>IFMinorVersion</key> + <integer>@package_minor@</integer> + <key>IFPkgFlagAllowBackRev</key> + <true/> + <key>IFPkgFlagAuthorizationAction</key> + <string>RootAuthorization</string> + <key>IFPkgFlagDefaultLocation</key> + <string>/tmp/pcp</string> + <key>IFPkgFlagInstallFat</key> + <false/> + <key>IFPkgFlagIsRequired</key> + <true/> + <key>IFPkgFlagOverwritePermissions</key> + <true/> + <key>IFPkgFlagRelocatable</key> + <false/> + <key>IFPkgFlagRestartAction</key> + <string>NoRestart</string> + <key>IFPkgFlagRootVolumeOnly</key> + <true/> + <key>IFPkgFlagUpdateInstalledLanguages</key> + <false/> + <key>IFPkgFlagUseUserMask</key> + <false/> + <key>IFPkgFormatVersion</key> + <real>0.1@build_date@</real> + <key>IFRequirementDicts</key> + <array> + <dict> + <key>Level</key> + <string>requires</string> + <key>SpecType</key> + <string>plist</string> + <key>SpecArgument</key> + <string>/System/Library/CoreServices/SystemVersion.plist</string> + <key>SpecProperty</key> + <string>ProductVersion</string> + <key>TestOperator</key> + <string>>=</string> + <key>TestObject</key> + <string>10.@macosx_version@</string> + <key>LabelKey</key> + <string>OsVerLabelKey</string> + <key>TitleKey</key> + <string>OsVerTitleKey</string> + <key>MessageKey</key> + <string>Need MacOS X version 10.@macosx_version@ or higher</string> + </dict> + </array> +</dict> +</plist> diff --git a/build/mac/installer-resources/GNUmakefile b/build/mac/installer-resources/GNUmakefile new file mode 100644 index 0000000..7bf2c03 --- /dev/null +++ b/build/mac/installer-resources/GNUmakefile @@ -0,0 +1,10 @@ +TOPDIR = ../../.. +include $(TOPDIR)/src/include/builddefs + +LSRCFILES = InstallationCheck License.html ReadMe.html Welcome.txt \ + background.jpg postflight postinstall postupgrade \ + preflight preinstall preupgrade + +default install : + +include $(BUILDRULES) diff --git a/build/mac/installer-resources/InstallationCheck b/build/mac/installer-resources/InstallationCheck new file mode 100755 index 0000000..b8d4cbc --- /dev/null +++ b/build/mac/installer-resources/InstallationCheck @@ -0,0 +1,11 @@ +#!/bin/sh + +OS_VER=`/usr/bin/uname -r` +OS_MAJ=`/usr/bin/uname -r | cut -f 1 -d .` + +if [ "$OS_VER" = "6.8" -o "$OS_VER" = "6.8.5" -o "$OS_MAJ" = "7" ]; then + exit 0 +fi + +# Refuse to install, giving standard error message +exit 96 diff --git a/build/mac/installer-resources/License.html b/build/mac/installer-resources/License.html new file mode 100644 index 0000000..bdbe163 --- /dev/null +++ b/build/mac/installer-resources/License.html @@ -0,0 +1,1075 @@ +<html> + +<head> +<title> +Performance Co-Pilot License +</title> +</head> + +<body> +<center> +<h1> +Performance Co-Pilot License +</h1> +</center> + <span CLASS="header">Performance Co-Pilot License</span> + <P> + All the libraries in the Performance Co-Pilot (PCP) + Open Source release are licensed under Version 2.1 of the + <a href="#lesser1">GNU Lesser General Public License</a>. + + <P> + All other components in the PCP Open Source release are licensed under Version 2 of + the <a href="#TOC1">GNU General Public License</a>. + </P> + +</p><h2>Table of Contents</h2> +<ul> +<li><a name="lesser1" href="#LSEC1">GNU LESSER GENERAL PUBLIC LICENSE</a> +<ul> +<li><a name="lesser2" href="#LSEC2">Preamble</a> +</li><li><a name="lesser3" href="#LSEC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</a> +</li><li><a name="lesser4" href="#LSEC4">How to Apply These Terms to Your New Libraries</a> +</li></ul> +</li></ul> + +<p> + +</p><hr> + +<p> + + + +</p><h2><a name="LSEC1" href="#lesser1">GNU LESSER GENERAL PUBLIC LICENSE</a></h2> +<p> +Version 2.1, February 1999 + +</p><p> +</p><pre>Copyright (C) 1991, 1999 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] +</pre> + + +<h2><a name="LSEC2" href="#lesser2">Preamble</a></h2> + +<p> + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. +</p><p> + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. +</p><p> + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. +</p><p> + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. +</p><p> + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. +</p><p> + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. +</p><p> + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. +</p><p> + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. +</p><p> + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. +</p><p> + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. +</p><p> + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. +</p><p> + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. +</p><p> + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. +</p><p> + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. +</p><p> + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. +</p><p> + +</p><h2><a name="LSEC3" href="#lesser3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</a></h2> + + +<p> +<strong>0.</strong> +This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". +</p><p> + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. +</p><p> + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) +</p><p> + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. +</p><p> + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. +</p><p> +<strong>1.</strong> +You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. +</p><p> + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. +</p><p> +<strong>2.</strong> +You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: +</p><p> +</p><ul> + <li><strong>a)</strong> + The modified work must itself be a software library. + </li><li><strong>b)</strong> + You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + </li><li><strong>c)</strong> + You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + </li><li><strong>d)</strong> + If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + <p> + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + </p><p> + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + </p><p> + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + </p><p> + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of + a storage or distribution medium does not bring the other work under + the scope of this License. +</p></li></ul> +<p> +<strong>3.</strong> +You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. +</p><p> + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. +</p><p> + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. +</p><p> +<strong>4.</strong> +You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. +</p><p> + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. +</p><p> +<strong>5.</strong> +A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. +</p><p> + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. +</p><p> + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. +</p><p> + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) +</p><p> + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. +</p><p> +<strong>6.</strong> +As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. +</p><p> + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: +</p><p> +</p><ul> + <li><strong>a)</strong> Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + </li><li><strong>b)</strong> Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + </li><li><strong>c)</strong> Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + </li><li><strong>d)</strong> If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + </li><li><strong>e)</strong> Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. +</li></ul> +<p> + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. +</p><p> + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. +</p><p> +<strong>7.</strong> You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: +</p><p> +</p><ul> + <li><strong>a)</strong> Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + </li><li><strong>b)</strong> Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. +</li></ul> +<p> +<strong>8.</strong> You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. +</p><p> +<strong>9.</strong> +You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. +</p><p> +<strong>10.</strong> +Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. +</p><p> +<strong>11.</strong> +If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. +</p><p> +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. +</p><p> +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. +</p><p> +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. +</p><p> +<strong>12.</strong> +If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. +</p><p> +<strong>13.</strong> +The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. +</p><p> +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. +</p><p> +<strong>14.</strong> +If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. +</p><p> +<strong>NO WARRANTY</strong> +</p><p> +<strong>15.</strong> +BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. +</p><p> +<strong>16.</strong> +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. +</p><p> +</p><h2>END OF TERMS AND CONDITIONS</h2> + +<h2><a name="LSEC4" href="#lesser4">How to Apply These Terms to Your New Libraries</a></h2> +<p> + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). +</p><p> + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. +</p><p> + +</p><pre><var>one line to give the library's name and an idea of what it does.</var> +Copyright (C) <var>year</var> <var>name of author</var> + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +</pre> + +<p> +Also add information on how to contact you by electronic and paper mail. + +</p><p> +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + +</p><p> +</p><pre>Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +<var>signature of Ty Coon</var>, 1 April 1990 +Ty Coon, President of Vice +</pre> + +<p> +That's all there is to it! + +</p><hr> +</p><h2>Table of Contents</h2> +<ul> + + <li><a name="TOC1" href="#SEC1">GNU GENERAL PUBLIC LICENSE</a> +<ul> +<li><a name="TOC2" href="#SEC2">Preamble</a> +</li><li><a name="TOC3" href="#SEC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</a> +</li><li><a name="TOC4" href="#SEC4">How to Apply These Terms to Your New Programs</a> + +</li></ul> +</li></ul> + +<p> + +</p><hr> + +<p> + + + +</p><h2><a name="SEC1" href="#TOC1">GNU GENERAL PUBLIC LICENSE</a></h2> +<p> +Version 2, June 1991 + +</p> + +<pre>Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. +</pre> + + + +<h2><a name="SEC2" href="#TOC2">Preamble</a></h2> + +<p> + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + +</p> +<p> + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + +</p> +<p> + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + +</p> +<p> + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + +</p> +<p> + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + +</p> +<p> + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + +</p> +<p> + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + +</p> +<p> + The precise terms and conditions for copying, distribution and +modification follow. + +</p> + + +<h2><a name="SEC3" href="#TOC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</a></h2> + + +<p> + +<strong>0.</strong> + This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". +</p><p> + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + +</p><p> + +<strong>1.</strong> + You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. +</p><p> + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. +</p><p> + +<strong>2.</strong> + You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: +</p><p> + +</p><ul> + +<li><strong>a)</strong> + You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + +<p> +</p></li><li><strong>b)</strong> + You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + +<p> +</p></li><li><strong>c)</strong> + If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) +</li></ul> + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. +<p> + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. +</p><p> + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + +</p><p> + +<strong>3.</strong> + You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + +<!-- we use this doubled UL to get the sub-sections indented, --> +<!-- while making the bullets as unobvious as possible. --> +</p><ul> + +<li><strong>a)</strong> + Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + +<p> +</p></li><li><strong>b)</strong> + Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + +<p> +</p></li><li><strong>c)</strong> + Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) +</li></ul> + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. +<p> + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. +</p><p> + +<strong>4.</strong> + You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + +</p><p> + +<strong>5.</strong> + You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +</p><p> + +<strong>6.</strong> + Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + +</p><p> + +<strong>7.</strong> + If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. +</p><p> + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. +</p><p> + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. +</p><p> + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + +</p><p> + +<strong>8.</strong> + If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + +</p><p> + +<strong>9.</strong> + The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. +</p><p> + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + +</p><p> + + +<strong>10.</strong> + If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + + +</p><p><strong>NO WARRANTY</strong></p> + +<p> + +<strong>11.</strong> + BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +</p><p> + +<strong>12.</strong> + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + +</p><p> + + +</p><h2>END OF TERMS AND CONDITIONS</h2> + + + +<h2><a name="SEC4" href="#TOC4">How to Apply These Terms to Your New Programs</a></h2> + +<p> + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +</p> +<p> + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + +</p> + +<pre><var>one line to give the program's name and an idea of what it does.</var> +Copyright (C) <var>yyyy</var> <var>name of author</var> + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +</pre> + +<p> +Also add information on how to contact you by electronic and paper mail. + +</p> +<p> +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + +</p> + +<pre>Gnomovision version 69, Copyright (C) <var>year</var> <var>name of author</var> +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome +to redistribute it under certain conditions; type `show c' +for details. +</pre> + +<p> +The hypothetical commands <samp>`show w'</samp> and <samp>`show c'</samp> should show +the appropriate parts of the General Public License. Of course, the +commands you use may be called something other than <samp>`show w'</samp> and +<samp>`show c'</samp>; they could even be mouse-clicks or menu items--whatever +suits your program. + +</p> +<p> +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + +</p> + +<pre>Yoyodyne, Inc., hereby disclaims all copyright +interest in the program `Gnomovision' +(which makes passes at compilers) written +by James Hacker. + +<var>signature of Ty Coon</var>, 1 April 1989 +Ty Coon, President of Vice +</pre> + +<p> +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the +<a href="#lesser">GNU Lesser General Public License</a> +instead of this License. + +</p><p> + +</p><hr> + +</body> +</html> diff --git a/build/mac/installer-resources/ReadMe.html b/build/mac/installer-resources/ReadMe.html new file mode 100755 index 0000000..dee6b20 --- /dev/null +++ b/build/mac/installer-resources/ReadMe.html @@ -0,0 +1,67 @@ +<html> +<head> + <title>Performance Co-Pilot for Mac OS X</title> +</head> +<body bgcolor=#ffffff> + <center> + <h1>Performance Co-Pilot<br> + for Mac OS X</h1> + </center> +<p>Performance Co-Pilot (PCP) is a framework and services to support +system-level performance monitoring and performance management.</p> + +<p>PCP provides a unifying abstraction for all of the interesting +performance data in a system, and allows client applications to +easily retrieve and process any subset of that data using a single +API.</p> + +<p>A client-server architecture allows multiple clients to monitor the +same host, and a single client to monitor multiple hosts (e.g. in a +cluster). This enables centralized monitoring of distributed +processing.</p> + +<p>Integrated archive logging and replay so a client application can use +the same API to process real-time data from a host or historical data +from an archive.</p> + +<p>The architecture and services of the base PCP infrastructure are +especially attractive for those tackling the harder system-level +performance problems. For example this may involve a transient +performance degradation, or some complex interaction between resource +demands on a single system, or those seeking centralized monitoring of +distributed processing (e.g. in a cluster or webserver farm +environment), or management of performance on large systems with lots +of moving parts.</p> + +<p>The open source release of PCP includes all of the PCP libraries, +infrastructure and daemons, along with a Darwin agent that exports a +broad range of performance data from 7.4.x (Mac OS X 10.4) onward. +This includes coverage of activity in the areas of:</p> +<ul> + <li>CPU + <li>Disk + <li>Memory + <li>Swapping + <li>Network + <li>NFS + <li>RPC + <li>Filesystems +</ul> +<p>Other agents export performance data from: </p> +<ul> + <li>Apache + <li>Cisco routers + <li>Databases + <li>ElasticSearch + <li>Postfix + <li>Samba + <li>Web server activity logs + <li>... and many more places. +</ul> + +<p>For more information and details on how to contribute to the PCP +project see the web pages at <a href="http://www.performancecopilot.org/"> +http://www.performancecopilot.org/</a></p> + +</body> +</html> diff --git a/build/mac/installer-resources/Welcome.txt b/build/mac/installer-resources/Welcome.txt new file mode 100644 index 0000000..69b0a99 --- /dev/null +++ b/build/mac/installer-resources/Welcome.txt @@ -0,0 +1,5 @@ +Performance Co-Pilot for Apple(R) Mac OS X. + +The installer will guide you through the steps necessary to install PCP for Mac OS X. + +To get started, click Continue. diff --git a/build/mac/installer-resources/background.jpg b/build/mac/installer-resources/background.jpg Binary files differnew file mode 100644 index 0000000..73ff770 --- /dev/null +++ b/build/mac/installer-resources/background.jpg diff --git a/build/mac/installer-resources/postflight b/build/mac/installer-resources/postflight new file mode 100755 index 0000000..c6eecab --- /dev/null +++ b/build/mac/installer-resources/postflight @@ -0,0 +1,18 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +/Library/StartupItems/pcp/pcp start + +exit 0 diff --git a/build/mac/installer-resources/postinstall b/build/mac/installer-resources/postinstall new file mode 100755 index 0000000..04698a1 --- /dev/null +++ b/build/mac/installer-resources/postinstall @@ -0,0 +1,90 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# Post installation/upgrade script for PCP +# + +prog=`basename $0` +status=1 +trap "exit \$status" 0 1 2 15 + +echo "$prog: PCP for MacOSX Install" + +echo "$prog: Writing install log to /var/log/pcp_inst.log" +echo "$prog: Writing install log to /var/log/pcp_inst.log" > /var/log/pcp_inst.log + +if [ ! -d $2 ] +then + echo "$prog: Unable to open directory of new files ($2)" + echo "$prog: Unable to open directory of new files ($2)" >> /var/log/pcp_inst.log + exit +fi + +cd $2 + +if ./install-pcp -i -l /var/log/pcp_inst.log idb +then + : +else + echo "$prog: Install Failed" + echo "$prog: Install Failed" >> /var/log/pcp_inst.log + exit +fi + +if [ -f /etc/pcp.conf ] +then + # for all the configuration files we know about, salt away file + # with a .orig suffix for a subsequent upgrade + # + . /etc/pcp.conf + for conf in \ + $PCP_PMCDCONF_PATH $PCP_PMCDOPTIONS_PATH $PCP_PMCDRCLOCAL_PATH \ + $PCP_PMIECONTROL_PATH $PCP_PMLOGGERCONTROL_PATH \ + $PCP_PMPROXYOPTIONS_PATH $PCP_PMWEBDOPTIONS_PATH + do + [ -f $conf ] && cp $conf $conf.orig + done +fi + +# create the user/group account that PCP daemons will use +# +userid=432 +groupid=432 + +if ! dscl . -list /Groups | grep -q '^pcp$' +then + dscl . -create /Groups/pcp + dscl . -create /Groups/pcp PrimaryGroupID $groupid + dscl . -create /Groups/pcp Password \* +fi + +if ! dscl . -list /Users | grep -q '^pcp$' +then + dscl . -create /Users/pcp + dscl . -create /Users/pcp UniqueID $userid + dscl . -create /Users/pcp UserShell /usr/bin/false + dscl . -create /Users/pcp RealName 'Performance Co-Pilot' + dscl . -create /Users/pcp NFSHomeDirectory /var/lib/pcp + dscl . -create /Users/pcp PrimaryGroupID $groupid + dscl . -create /Users/pcp Password \* + dscl . append /Groups/pcp GroupMembership pcp +fi + +chown -R pcp:pcp /var/log/pcp/pmcd 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmlogger 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmie 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmwebd 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmproxy 2>/dev/null + +status=0 diff --git a/build/mac/installer-resources/postupgrade b/build/mac/installer-resources/postupgrade new file mode 100755 index 0000000..d391b49 --- /dev/null +++ b/build/mac/installer-resources/postupgrade @@ -0,0 +1,124 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# Post installation/upgrade script for PCP +# + +prog=`basename $0` +status=1 +trap "exit \$status" 0 1 2 15 + +echo "$prog: PCP for MacOSX Upgrade" + +echo "$prog: Stopping PCP" +/Library/StartupItems/pcp/pcp stop + +echo "$prog: Writing install log to /var/log/pcp_inst.log" + +if [ ! -d $2 ] +then + echo "$prog: Unable to open directory of new files ($2)" + exit +fi + +cd $2 + +if [ -f /usr/share/pcp/bin/idb ] +then + if ./install-pcp -u /usr/share/pcp/bin/idb -l /var/log/pcp_inst.log idb + then + : + else + echo "$prog: Upgrade Failed" + exit + fi +else + echo "$prog: Package detected previous install of pcp but /usr/share/pcp/bin/idb does not exist." + echo "$prog: Attempting to remove existing files using new idb." + if ./install-pcp -v -r -l /var/log/pcp_inst.log idb + then + if ./install-pcp -v -i -l /var/log/pcp_inst.log idb + then + : + else + echo "$prog: Install Failed" + exit + fi + else + echo "$prog: Remove Failed" + exit + fi +fi + +if [ -f /etc/pcp.conf ] +then + # for all the configuration files we know about, try to keep + # any local modifications, and salt away file with a .orig + # suffix for a subsequent upgrade + # + . /etc/pcp.conf + for conf in \ + $PCP_PMCDCONF_PATH $PCP_PMCDOPTIONS_PATH $PCP_PMCDRCLOCAL_PATH \ + $PCP_PMIECONTROL_PATH $PCP_PMLOGGERCONTROL_PATH \ + $PCP_PMPROXYOPTIONS_PATH $PCP_PMWEBDOPTIONS_PATH + do + if [ -f $conf.pre -a -f $conf ] + then + if cmp -s $conf.pre $conf + then + cp $conf $conf.orig + rm $conf.pre + else + # restore local modifications ... + cp $conf $conf.orig + mv $conf.pre $conf + fi + elif [ -f $conf ] + then + cp $conf $conf.orig + fi + done +fi + +# create the user/group account that PCP daemons will use +# +userid=432 +groupid=432 + +if ! dscl . -list /Groups | grep -q '^pcp$' +then + dscl . -create /Groups/pcp + dscl . -create /Groups/pcp PrimaryGroupID $groupid + dscl . -create /Groups/pcp Password \* +fi + +if ! dscl . -list /Users | grep -q '^pcp$' +then + dscl . -create /Users/pcp + dscl . -create /Users/pcp UniqueID $userid + dscl . -create /Users/pcp UserShell /usr/bin/false + dscl . -create /Users/pcp RealName 'Performance Co-Pilot' + dscl . -create /Users/pcp NFSHomeDirectory /var/lib/pcp + dscl . -create /Users/pcp PrimaryGroupID $groupid + dscl . -create /Users/pcp Password \* + dscl . append /Groups/pcp GroupMembership pcp +fi + +chown -R pcp:pcp /var/log/pcp/pmcd 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmlogger 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmie 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmwebd 2>/dev/null +chown -R pcp:pcp /var/log/pcp/pmproxy 2>/dev/null + +status=0 diff --git a/build/mac/installer-resources/preflight b/build/mac/installer-resources/preflight new file mode 100755 index 0000000..4465bf6 --- /dev/null +++ b/build/mac/installer-resources/preflight @@ -0,0 +1,16 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +exit 0 diff --git a/build/mac/installer-resources/preinstall b/build/mac/installer-resources/preinstall new file mode 100755 index 0000000..da09a1d --- /dev/null +++ b/build/mac/installer-resources/preinstall @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +exit 0 + diff --git a/build/mac/installer-resources/preupgrade b/build/mac/installer-resources/preupgrade new file mode 100755 index 0000000..95de66b --- /dev/null +++ b/build/mac/installer-resources/preupgrade @@ -0,0 +1,48 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +/Library/StartupItems/pcp/pcp stop + +if [ -f /etc/pcp.conf ] +then + # for all the configuration files we know about, the goal is it + # have files with a .pre suffix unless we're certain they have + # not been locally altered + # + . /etc/pcp.conf + for conf in \ + $PCP_PMCDCONF_PATH $PCP_PMCDOPTIONS_PATH $PCP_PMCDRCLOCAL_PATH \ + $PCP_PMIECONTROL_PATH $PCP_PMLOGGERCONTROL_PATH \ + $PCP_PMPROXYOPTIONS_PATH $PCP_PMWEBDOPTIONS_PATH + do + if [ -f $conf.orig -a -f $conf ] + then + if cmp -s $conf.orig $conf + then + # file not changed since installation + rm $conf.orig + else + cp $conf $conf.pre + rm $conf.orig + fi + elif [ -f $conf ] + then + cp $conf $conf.pre + fi + done +fi + +exit 0 + diff --git a/build/mac/uninstall-pcp b/build/mac/uninstall-pcp new file mode 100644 index 0000000..d58f7ed --- /dev/null +++ b/build/mac/uninstall-pcp @@ -0,0 +1,70 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# + +if [ $USER != "root" ] +then + echo "Only the root user can uninstall PCP, try the following command instead:" + echo " sudo $0" + exit 1 +fi + +/bin/echo -n "Are you sure you want to uninstall PCP? [y/n] " +read answer + +if [ "X$answer" != "Xy" -a "X$answer" != "XY" ] +then + echo "Uninstall cancelled." + exit 1 +fi + +here=`pwd` +BINADM_DIR="/usr/libexec/pcp/bin" + +if [ "$here" = "$BINADM_DIR" -o "$here" = `dirname $BINADM_DIR` ] +then + echo "Do not run $0 from $BINADM_DIR, uninstall cancelled." + exit 1 +fi + +echo "Stopping PCP..." +/Library/StartupItems/pcp/pmcd stop +sleep 5 + +if [ -x $BINADM_DIR/install-pcp -a -r $BINADM_DIR/idb ] +then + echo "Removing Receipts" + if [ -d /Library/Receipts/pcp-*.pkg ]; then + rm -rf /Library/Receipts/pcp-*.pkg + fi + echo "Uninstall in background to remove all running scripts" + # Copy to /tmp since inst will remove itself and this script + cp $BINADMR_DIR/install-pcp $BINDAMD_DIR/idb /tmp + # create tidy up script + echo '#!/bin/sh' > /tmp/_pcp_tidy.sh + echo '/tmp/install-pcp -v -r -l /var/log/pcp_inst.log /tmp/idb && /bin/rm -rf /Library/Receipts/pcp-*' >> /tmp/_pcp_tidy.sh + echo '/bin/rm -f /tmp/install-pcp /tmp/idb /tmp/_pcp_tidy.sh' >> /tmp/_pcp_tidy.sh + echo 'echo Done' >> /tmp/_pcp_tidy.sh + chmod u+x /tmp/_pcp_tidy.sh + # Run remove, overriding this shell + exec /tmp/_pcp_tidy.sh +else + echo "Unable to find $BINADM_DIR/install-pcp. Remove failed" + exit 1 +fi + diff --git a/build/mac/uninstall-pcp.in b/build/mac/uninstall-pcp.in new file mode 100755 index 0000000..8a1cec5 --- /dev/null +++ b/build/mac/uninstall-pcp.in @@ -0,0 +1,70 @@ +#!/bin/sh +# +# Copyright (c) 2003-2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# + +if [ $USER != "root" ] +then + echo "Only the root user can uninstall PCP, try the following command instead:" + echo " sudo $0" + exit 1 +fi + +@echo@ @echo_n@ "Are you sure you want to uninstall PCP? [y/n] @echo_c@" +read answer + +if [ "X$answer" != "Xy" -a "X$answer" != "XY" ] +then + echo "Uninstall cancelled." + exit 1 +fi + +here=`pwd` +BINADM_DIR="@pcp_binadm_dir@" + +if [ "$here" = "$BINADM_DIR" -o "$here" = `dirname $BINADM_DIR` ] +then + echo "Do not run $0 from $BINADM_DIR, uninstall cancelled." + exit 1 +fi + +echo "Stopping PCP..." +/Library/StartupItems/pcp/pmcd stop +sleep 5 + +if [ -x $BINADM_DIR/install-pcp -a -r $BINADM_DIR/idb ] +then + echo "Removing Receipts" + if [ -d /Library/Receipts/pcp-*.pkg ]; then + rm -rf /Library/Receipts/pcp-*.pkg + fi + echo "Uninstall in background to remove all running scripts" + # Copy to /tmp since inst will remove itself and this script + cp $BINADMR_DIR/install-pcp $BINDAMD_DIR/idb /tmp + # create tidy up script + echo '#!/bin/sh' > /tmp/_pcp_tidy.sh + echo '/tmp/install-pcp -v -r -l /var/log/pcp_inst.log /tmp/idb && /bin/rm -rf /Library/Receipts/pcp-*' >> /tmp/_pcp_tidy.sh + echo '/bin/rm -f /tmp/install-pcp /tmp/idb /tmp/_pcp_tidy.sh' >> /tmp/_pcp_tidy.sh + echo 'echo Done' >> /tmp/_pcp_tidy.sh + chmod u+x /tmp/_pcp_tidy.sh + # Run remove, overriding this shell + exec /tmp/_pcp_tidy.sh +else + echo "Unable to find $BINADM_DIR/install-pcp. Remove failed" + exit 1 +fi + |