diff options
Diffstat (limited to 'build')
52 files changed, 6310 insertions, 0 deletions
diff --git a/build/GNUlocaldefs.in b/build/GNUlocaldefs.in new file mode 100644 index 0000000..584a722 --- /dev/null +++ b/build/GNUlocaldefs.in @@ -0,0 +1,6 @@ +# Placeholder for local build customization +# +# Used to be used to set TARGET_VENDOR, TARGET_CPU, BUILD_VENDOR, +# BUILD_CPU and BUILD_OS, but these are no longer used in the PCP +# build process +# diff --git a/build/GNUmakefile b/build/GNUmakefile new file mode 100644 index 0000000..4ba2eee --- /dev/null +++ b/build/GNUmakefile @@ -0,0 +1,53 @@ +# +# Copyright (c) 2014 Red Hat. +# 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 +-include ./GNUlocaldefs + +SCRIPTS = cleanconfigs cleantmpdirs +LSRCFILES = $(SCRIPTS) GNUlocaldefs.in +LDIRT = pack_pcp.bin pack_pro.bin pro.src +LDIRDIRT = deb $(TOPDIR)/$(PACKAGE_NAME)-?.?.? + +# for clean and clobber +SUBDIRS = tar rpm mac aix sun + +default install default_pcp install_pcp : $(SUBDIRS) + $(SUBDIRS_MAKERULE) + +pack :: pack_pcp + +pack_pcp : + @DIST_MANIFEST=`pwd`/$@.bin; DIST_ROOT=/tmp/pcp-build-$$$$; \ + export DIST_MANIFEST DIST_ROOT; \ + rm -f $$DIST_MANIFEST; \ + echo === install === ; \ + $(MAKE) -j 1 -C $(TOPDIR) install_pcp || exit $$?; \ + if test ! -z "$(TAR)"; then \ + echo === tar === && $(MAKE) -j 1 -C tar $@ || exit $$?; \ + fi; \ + if test ! -z "$(PACKAGE_MAKER)"; then \ + echo === mac === && $(MAKE) -j 1 -C mac $@ || exit $$?; \ + fi; \ + if test ! -z "$(MKINSTALLP)"; then \ + echo === aix === && $(MAKE) -j 1 -C aix $@ || exit $$?; \ + fi; \ + if test ! -z "$(PKGMK)" ; then \ + echo === sun === && $(MAKE) -j 1 -C sun $@ || exit $$?; \ + fi; \ + test -z "$$KEEP_DIST_ROOT" && rm -rf $$DIST_ROOT; echo Done + +include $(BUILDRULES) diff --git a/build/aix/GNUmakefile b/build/aix/GNUmakefile new file mode 100644 index 0000000..6a763b6 --- /dev/null +++ b/build/aix/GNUmakefile @@ -0,0 +1,42 @@ +# +# Copyright (c) 2008 Aconex. 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 +# + +TOPDIR = ../.. +include $(TOPDIR)/src/include/builddefs + +TEMPLATE = pcp.template +LDIRT += $(TEMPLATE) $(TEMPLATE).i +LSRCFILES = $(TEMPLATE).in + +default install install_pcp default_pcp : + +pack_pcp : $(TEMPLATE) + $(MKINSTALLP) -d $${DIST_ROOT} -T $(TEMPLATE) + +$(TEMPLATE): $(TEMPLATE).in + @echo Generating $@ from $?; \ + sed -e's|@package_name@|$(PACKAGE_NAME)|g' \ + -e's|@package_version@|$(PACKAGE_VERSION)|g' \ + -e's|@package_release@|$(PACKAGE_BUILD)|g' < $? > $(TEMPLATE).i ; \ + @find $${DIST_ROOT} -print < $(TEMPLATE).i | \ + sed -e "s|^$${DIST_ROOT}| |g" \ >> $@ ; \ + @echo " EOFiles" >> $@ ; \ + @echo "EOFileset" >> $@ + +include $(BUILDRULES) + diff --git a/build/aix/pcp.template.in b/build/aix/pcp.template.in new file mode 100644 index 0000000..ea5ab0f --- /dev/null +++ b/build/aix/pcp.template.in @@ -0,0 +1,14 @@ +Package Name: @package_name@ +Package VRMF: @package_version@.@package_release@ +Update: N +Fileset + Fileset Name: @package_name@.rte + Fileset VRMF: @package_version@.@package_release@ + Fileset Description: Performance Co-Pilot (http://www.performancecopilot.org) + Bosboot required: N + License agreement acceptance required: N + Name of license agreement: + Include license files in this package: N + License file path: + Requisites: + Files diff --git a/build/cleanconfigs b/build/cleanconfigs new file mode 100644 index 0000000..e9c539d --- /dev/null +++ b/build/cleanconfigs @@ -0,0 +1,71 @@ +# Function to do all of the configuration file migration work +# +_clean_configs() +{ + # + # Usage: _clean_configs [-v] new_dir old_dir ... + # + # Across all the files in the new_dir and old_dir args, match + # names and pick the most recently modified version and leave + # this (same mode and modification date) in new_dir + # + # -v option is verbose mode for debugging + # + + _verbose=false + if [ $# -gt 0 -a X"$1" = "X-v" ] + then + _verbose=true + shift + fi + + if [ $# -lt 2 ] + then + echo >&2 "Usage: _clean_configs [-v] new_dir old_dir ..." + return + fi + + _new="$1" + if [ ! -d "$_new" ] + then + $verbose && echo >&2 + mkdir -p "$_new" + mkdir -p "$_new" + fi + + shift + for _dir + do + [ "$_dir" = "$_new" ] && continue + if [ -d "$_dir" ] + then + ( cd "$_dir" ; find . -type f -print ) \ + | sed -e 's/^\.\///' \ + | while read _file + do + _want=false + if [ -f "$_new/$_file" ] + then + # file exists in both directories, pick the more + # recently modified one + # + _try=`find "$_dir/$_file" -newer "$_new/$_file" -print` + [ -n "$_try" ] && _want=true + else + _want=true + fi + if $_want + then + _dest=`dirname $_new/$_file` + if [ ! -d "$_dest" ] + then + $verbose && >&2 echo + mkdir "$_dest" + mkdir "$_dest" + fi + $_verbose && echo >&2 + cp -p "$_dir/$_file" "$_new/$_file" + cp -p "$_dir/$_file" "$_new/$_file" + fi + done + fi + done +} + diff --git a/build/cleantmpdirs b/build/cleantmpdirs new file mode 100644 index 0000000..547fa07 --- /dev/null +++ b/build/cleantmpdirs @@ -0,0 +1,50 @@ +# Function to do all of the temporary dir/file migration work +# +_clean_tmpdirs() +{ + # + # Usage: _clean_tmpdirs [-v] new_dir old_dir ... + # + # Move temporary directories (which may be actively in use as + # with pmdammv files) from one temporary directory to another + # so as to transparently upgrade without loss of service. + # + # -v option is verbose mode for debugging + # + + _verbose=false + if [ $# -gt 0 -a X"$1" = "X-v" ] + then + _verbose=true + shift + fi + + if [ $# -lt 2 ] + then + echo >&2 "Usage: _clean_tmpdirs [-v] new_dir old_dir subdirs ..." + return + fi + + _new_tmp_dir="$1" + _old_tmp_dir="$2" + + [ "$_new_tmp_dir" != "$old_tmp_dir" ] || return + + for _subdir + do + d="$_old_tmp_dir/$_subdir" + test -d "$d" -a -k "$d" || continue + cd "$d" || continue + for f in * ; do + [ "$f" != "*" ] || continue + source="$d/$f" + target="$_new_tmp_dir/$_subdir/$f" + [ "$source" != "$target" ] || continue + [ ! -f "$target" ] || continue + $_verbose && echo + mv -fu "$source" "$target" + mv -fu "$source" "$target" || true + done + $_verbose && echo + rmdir "$d" + cd && rmdir "$d" 2>/dev/null || true + done +} 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 + diff --git a/build/rpm/GNUmakefile b/build/rpm/GNUmakefile new file mode 100644 index 0000000..e2a6b59 --- /dev/null +++ b/build/rpm/GNUmakefile @@ -0,0 +1,83 @@ +# +# Copyright (c) 2012-2013 Red Hat. +# 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 +-include ../GNUlocaldefs +-include ./GNUlocaldefs + +SPEC = pcp.spec +LDIRT += *-[0-9]*.*.rpm $(SPEC) rpmmacros + +PERLFILES = pcp-pmda-perl.desc pcp-logsummary-perl.desc pcp-mmv-perl.desc +RPM_VERSION=$(shell ./get_rpm_version) + +default install install_pcp default_pcp : + +# Blow the spec away after rpm has finished its work - it IS +# going to make sure it'll be rebuild next time we come here +# We used to override --target=FOO, but it's better to let the +# local build distro defaults do their jobs. +pack_pcp : rpmmacros $(SPEC) + DEFS=`grep '^--define' rpmmacros`; \ + eval $(RPMPROG) -ba $$DEFS \ + --clean $(SPEC) + rm -f $(SPEC) $(TOPDIR)/install.manifest $(TOPDIR)/files.rpm \ + rpmmacros + +rpmmacros : macros.template + @TREEROOT=`cd ${TOPDIR}; pwd`; \ + for d in RPM SRPM; do \ + eval D=\$$$${d}DIR; \ + if [ -z "$$D" -o ! -d "$$D" ] ; then \ + eval $${d}DIR=$$TREEROOT/build/rpm; \ + fi; \ + done; \ + sed -e "s|%topdir%|$${TREEROOT}|g" \ + -e "s|@rpmsdir@|$${RPMDIR}|g" \ + -e "s|@srpmsdir@|$${SRPMDIR}|"g \ + -e '/^%/s/[ \t]*$$/'\''/' \ + -e '/^%/s/^%/--define '\''/' <$< >$@ + +pcp.spec: pcp.spec.in + @echo Generating $@ from $?; \ + sed -e's|@package_sgirelease@|$(SGIRELEASENUMBER)|g' \ + -e's|@sgi_chroot_build@|$(SGI_CHROOT_BUILD)|g' \ + -e's|@sgi_issp_build@|$(SGI_ISSP_BUILD)|g' \ + -e's|@package_name@|$(PACKAGE_NAME)|g' \ + -e's|@package_version@|$(PACKAGE_VERSION)|g' \ + -e's|@package_release@|$(PACKAGE_BUILD)|g' \ + -e's|@package_configure@|$(PACKAGE_CONFIGURE)|g' \ + -e's|@package_distribution@|$(PACKAGE_DISTRIBUTION)|g' \ + -e's|@have_libmicrohttpd@|$(HAVE_LIBMICROHTTPD)|g' \ + -e's|@have_rpmlib@|$(HAVE_RPMLIB)|g' \ + -e's|@pmda_infiniband@|$(PMDA_INFINIBAND)|g' \ + -e's|@enable_systemd@|$(ENABLE_SYSTEMD)|g' \ + -e's|@enable_papi@|$(ENABLE_PAPI)|g' \ + -e's|@enable_secure@|$(ENABLE_SECURE)|g' \ + -e's|@enable_probes@|$(ENABLE_PROBES)|g' \ + -e's|@enable_avahi@|$(ENABLE_AVAHI)|g' \ + -e's|@enable_qt@|$(ENABLE_QT)|g' \ + -e"s|@build_root@|$${DIST_ROOT}|g" \ + -e's|@pcp_sysconf_dir@|$(PCP_SYSCONF_DIR)|g' \ + -e's|@pcp_log_dir@|$(PCP_LOG_DIR)|g' \ + -e's|@pcp_var_dir@|$(PCP_VAR_DIR)|g' \ + -e's|@pcp_etc_dir@|$(PCP_ETC_DIR)|g' \ + -e's|@BUILD_PMMGR@|$(BUILD_PMMGR)|g' \ + -e's|@rpm_version@|$(RPM_VERSION)|g' \ + -e's|@make@|$(PCP_MAKE_PROG)|g' <$? >$@ + +include $(BUILDRULES) + diff --git a/build/rpm/fedora.spec b/build/rpm/fedora.spec new file mode 100644 index 0000000..618837f --- /dev/null +++ b/build/rpm/fedora.spec @@ -0,0 +1,1163 @@ +Summary: System-level performance monitoring and performance management +Name: pcp +Version: 3.9.10 +%define buildversion 1 + +Release: %{buildversion}%{?dist} +License: GPLv2+ and LGPLv2.1+ +URL: http://www.performancecopilot.org +Group: Applications/System +Source0: pcp-%{version}.src.tar.gz + +%define disable_papi 0 +%define disable_microhttpd 0 +%if 0%{?rhel} == 0 || 0%{?rhel} > 5 +%define disable_qt 0 +%else +%define disable_qt 1 +%endif + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: procps autoconf bison flex +BuildRequires: nss-devel +BuildRequires: rpm-devel +BuildRequires: avahi-devel +BuildRequires: python-devel +BuildRequires: ncurses-devel +BuildRequires: readline-devel +BuildRequires: cyrus-sasl-devel +%if !%{disable_papi} +BuildRequires: papi-devel +%endif +%if !%{disable_microhttpd} +BuildRequires: libmicrohttpd-devel +%endif +%if 0%{?rhel} == 0 || 0%{?rhel} > 5 +BuildRequires: systemtap-sdt-devel +%else +%ifnarch ppc ppc64 +BuildRequires: systemtap-sdt-devel +%endif +%endif +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: initscripts man +%if 0%{?fedora} >= 18 || 0%{?rhel} >= 7 +BuildRequires: systemd-devel +%endif +%if !%{disable_qt} +BuildRequires: desktop-file-utils +BuildRequires: qt4-devel >= 4.4 +%endif + +Requires: bash gawk sed grep fileutils findutils initscripts perl +Requires: python +%if 0%{?rhel} <= 5 +Requires: python-ctypes +%endif + +Requires: pcp-libs = %{version}-%{release} +Requires: python-pcp = %{version}-%{release} +Requires: perl-PCP-PMDA = %{version}-%{release} +Obsoletes: pcp-gui-debuginfo +Obsoletes: pcp-pmda-nvidia + +%global tapsetdir %{_datadir}/systemtap/tapset + +%define _confdir %{_sysconfdir}/pcp +%define _initddir %{_sysconfdir}/rc.d/init.d +%define _logsdir %{_localstatedir}/log/pcp +%define _pmnsdir %{_localstatedir}/lib/pcp/pmns +%define _tempsdir %{_localstatedir}/lib/pcp/tmp +%define _pmdasdir %{_localstatedir}/lib/pcp/pmdas +%define _testsdir %{_localstatedir}/lib/pcp/testsuite +%define _pixmapdir %{_datadir}/pcp-gui/pixmaps +%define _booksdir %{_datadir}/doc/pcp-doc + +%if 0%{?fedora} >= 20 +%define _with_doc --with-docdir=%{_docdir}/%{name} +%endif +%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7 +%define _with_initd --with-rcdir=%{_initddir} +%define disable_systemd 0 +%else +%define disable_systemd 1 +%endif + +# we never want Infiniband on s390 platforms +%ifarch s390 s390x +%define disable_infiniband 1 +%else + +# we never want Infiniband on RHEL5 or earlier +%if 0%{?rhel} != 0 && 0%{?rhel} < 6 +%define disable_infiniband 1 +%else +%define disable_infiniband 0 +%endif + +%endif + +%if %{disable_infiniband} +%define _with_ib --with-infiniband=no +%endif + +%if !%{disable_papi} +%define _with_papi --with-papi=yes +%endif + +%if %{disable_qt} +%define _with_ib --with-qt=no +%endif + +%description +Performance Co-Pilot (PCP) provides a framework and services to support +system-level performance monitoring and performance management. + +The PCP open source release 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. + +# +# pcp-conf +# +%package conf +License: LGPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot run-time configuration +URL: http://www.performancecopilot.org + +# http://fedoraproject.org/wiki/Packaging:Conflicts "Splitting Packages" +Conflicts: pcp-libs < 3.9 + +%description conf +Performance Co-Pilot (PCP) run-time configuration + +# +# pcp-libs +# +%package libs +License: LGPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot run-time libraries +URL: http://www.performancecopilot.org + +Requires: pcp-conf = %{version}-%{release} + +%description libs +Performance Co-Pilot (PCP) run-time libraries + +# +# pcp-libs-devel +# +%package libs-devel +License: GPLv2+ and LGPLv2.1+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) development headers and documentation +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description libs-devel +Performance Co-Pilot (PCP) headers, documentation and tools for development. + +# +# pcp-testsuite +# +%package testsuite +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) test suite +URL: http://www.performancecopilot.org +Requires: pcp = %{version}-%{release} +Requires: pcp-libs = %{version}-%{release} +Requires: pcp-libs-devel = %{version}-%{release} +Obsoletes: pcp-gui-testsuite + +%description testsuite +Quality assurance test suite for Performance Co-Pilot (PCP). + +# +# pcp-manager +# +%package manager +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) manager daemon +URL: http://www.performancecopilot.org + +Requires: pcp = %{version}-%{release} +Requires: pcp-libs = %{version}-%{release} + +%description manager +An optional daemon (pmmgr) that manages a collection of pmlogger and +pmie daemons, for a set of discovered local and remote hosts running +the performance metrics collection daemon (pmcd). It ensures these +daemons are running when appropriate, and manages their log rotation +needs (which are particularly complex in the case of pmlogger). +The base PCP package provides comparable functionality through cron +scripts which predate this daemon but do still provide effective and +efficient log management services. +The pcp-manager package aims to aggressively enable new PCP features +and as a result may not be suited to all production environments. + +%if !%{disable_microhttpd} +# +# pcp-webapi +# +%package webapi +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) web API service +URL: http://www.performancecopilot.org + +Requires: pcp = %{version}-%{release} +Requires: pcp-libs = %{version}-%{release} + +%description webapi +Provides a daemon (pmwebd) that binds a large subset of the Performance +Co-Pilot (PCP) client API (PMAPI) to RESTful web applications using the +HTTP (PMWEBAPI) protocol. +%endif + +# +# perl-PCP-PMDA. This is the PCP agent perl binding. +# +%package -n perl-PCP-PMDA +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings and documentation +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n perl-PCP-PMDA +The PCP::PMDA Perl module contains the language bindings for +building Performance Metric Domain Agents (PMDAs) using Perl. +Each PMDA exports performance data for one specific domain, for +example the operating system kernel, Cisco routers, a database, +an application, etc. + +# +# perl-PCP-MMV +# +%package -n perl-PCP-MMV +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings for PCP Memory Mapped Values +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n perl-PCP-MMV +The PCP::MMV module contains the Perl language bindings for +building scripts instrumented with the Performance Co-Pilot +(PCP) Memory Mapped Value (MMV) mechanism. +This mechanism allows arbitrary values to be exported from an +instrumented script into the PCP infrastructure for monitoring +and analysis with pmchart, pmie, pmlogger and other PCP tools. + +# +# perl-PCP-LogImport +# +%package -n perl-PCP-LogImport +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings for importing external data into PCP archives +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n perl-PCP-LogImport +The PCP::LogImport module contains the Perl language bindings for +importing data in various 3rd party formats into PCP archives so +they can be replayed with standard PCP monitoring tools. + +# +# perl-PCP-LogSummary +# +%package -n perl-PCP-LogSummary +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings for post-processing output of pmlogsummary +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n perl-PCP-LogSummary +The PCP::LogSummary module provides a Perl module for using the +statistical summary data produced by the Performance Co-Pilot +pmlogsummary utility. This utility produces various averages, +minima, maxima, and other calculations based on the performance +data stored in a PCP archive. The Perl interface is ideal for +exporting this data into third-party tools (e.g. spreadsheets). + +# +# pcp-import-sar2pcp +# +%package import-sar2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing sar data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: perl-PCP-LogImport = %{version}-%{release} +Requires: sysstat + +%description import-sar2pcp +Performance Co-Pilot (PCP) front-end tools for importing sar data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-iostat2pcp +# +%package import-iostat2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing iostat data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: perl-PCP-LogImport = %{version}-%{release} +Requires: sysstat + +%description import-iostat2pcp +Performance Co-Pilot (PCP) front-end tools for importing iostat data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-mrtg2pcp +# +%package import-mrtg2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing MTRG data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: perl-PCP-LogImport = %{version}-%{release} + +%description import-mrtg2pcp +Performance Co-Pilot (PCP) front-end tools for importing MTRG data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-collectl2pcp +# +%package import-collectl2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing collectl log files into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description import-collectl2pcp +Performance Co-Pilot (PCP) front-end tools for importing collectl data +into standard PCP archive logs for replay with any PCP monitoring tool. + +%if !%{disable_papi} +# +# pcp-pmda-papi +# +%package pmda-papi +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) metrics for Performance API and hardware counters +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: papi-devel +BuildRequires: papi-devel + +%description pmda-papi +This package contains the PCP Performance Metrics Domain Agent (PMDA) for +collecting hardware counters statistics through PAPI (Performance API). +%endif + +%if !%{disable_infiniband} +# +# pcp-pmda-infiniband +# +%package pmda-infiniband +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) metrics for Infiniband HCAs and switches +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: libibmad >= 1.3.7 libibumad >= 1.3.7 +BuildRequires: libibmad-devel >= 1.3.7 libibumad-devel >= 1.3.7 + +%description pmda-infiniband +This package contains the PCP Performance Metrics Domain Agent (PMDA) for +collecting Infiniband statistics. By default, it monitors the local HCAs +but can also be configured to monitor remote GUIDs such as IB switches. +%endif + +# +# python-pcp. This is the PCP library bindings for python. +# +%package -n python-pcp +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Python bindings and documentation +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n python-pcp +The python PCP module contains the language bindings for +building Performance Metric API (PMAPI) tools using Python. + +%if !%{disable_qt} +# +# pcp-gui package for Qt tools +# +%package -n pcp-gui +License: GPLv2+ and LGPLv2+ and LGPLv2+ with exceptions +Group: Applications/System +Summary: Visualization tools for the Performance Co-Pilot toolkit +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n pcp-gui +Visualization tools for the Performance Co-Pilot toolkit. +The pcp-gui package primarily includes visualization tools for +monitoring systems using live and archived Performance Co-Pilot +(PCP) sources. +%endif + +# +# pcp-doc package +# +%package -n pcp-doc +Group: Documentation +%if 0%{?rhel} == 0 || 0%{?rhel} > 5 +BuildArch: noarch +%endif +Summary: Documentation and tutorial for the Performance Co-Pilot +URL: http://www.performancecopilot.org + +%description -n pcp-doc +Documentation and tutorial for the Performance Co-Pilot +Performance Co-Pilot (PCP) provides a framework and services to support +system-level performance monitoring and performance management. + +The pcp-doc package provides useful information on using and +configuring the Performance Co-Pilot (PCP) toolkit for system +level performance management. It includes tutorials, HOWTOs, +and other detailed documentation about the internals of core +PCP utilities and daemons, and the PCP graphical tools. + +%prep +%setup -q + +%clean +rm -Rf $RPM_BUILD_ROOT + +%build +%configure %{?_with_initd} %{?_with_doc} %{?_with_ib} %{?_with_papi} %{?_with_qt} +make default_pcp + +%install +rm -Rf $RPM_BUILD_ROOT +export NO_CHOWN=true DIST_ROOT=$RPM_BUILD_ROOT +make install_pcp +PCP_GUI='pmchart|pmconfirm|pmdumptext|pmmessage|pmquery|pmsnap|pmtime' + +# Fix stuff we do/don't want to ship +rm -f $RPM_BUILD_ROOT/%{_libdir}/*.a + +# remove sheet2pcp until BZ 830923 and BZ 754678 are resolved. +rm -f $RPM_BUILD_ROOT/%{_bindir}/sheet2pcp $RPM_BUILD_ROOT/%{_mandir}/man1/sheet2pcp.1.gz + +# remove configsz.h as this is not multilib friendly. +rm -f $RPM_BUILD_ROOT/%{_includedir}/pcp/configsz.h + +%if %{disable_microhttpd} +rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/pmwebd.* +rm -f $RPM_BUILD_ROOT/%{_mandir}/man3/PMWEBAPI.* +rm -fr $RPM_BUILD_ROOT/%{_confdir}/pmwebd +rm -fr $RPM_BUILD_ROOT/%{_initddir}/pmwebd +rm -f $RPM_BUILD_ROOT/%{_libexecdir}/pcp/bin/pmwebd +%endif + +%if %{disable_infiniband} +# remove pmdainfiniband on platforms lacking IB devel packages. +rm -f $RPM_BUILD_ROOT/%{_pmdasdir}/ib +rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/pmdaib.1.gz +rm -fr $RPM_BUILD_ROOT/%{_pmdasdir}/infiniband +%endif + +%if %{disable_qt} +rm -fr $RPM_BUILD_ROOT/%{_pixmapdir} +rm -f `find $RPM_BUILD_ROOT/%{_mandir}/man1 | egrep "$PCP_GUI"` +%else +rm -rf $RPM_BUILD_ROOT/usr/share/doc/pcp-gui +desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/pmchart.desktop +%endif + +%if %{disable_systemd} +# default chkconfig off for Fedora and RHEL +for f in $RPM_BUILD_ROOT/%{_initddir}/{pcp,pmcd,pmlogger,pmie,pmwebd,pmmgr,pmproxy}; do + test -f "$f" || continue + sed -i -e '/^# chkconfig/s/:.*$/: - 95 05/' -e '/^# Default-Start:/s/:.*$/:/' $f +done +%endif + +# list of PMDAs in the base pkg +ls -1 $RPM_BUILD_ROOT/%{_pmdasdir} |\ + egrep -v 'simple|sample|trivial|txmon' |\ + egrep -v '^ib$|infiniband' |\ + egrep -v 'papi' |\ + sed -e 's#^#'%{_pmdasdir}'\/#' >base_pmdas.list + +# all base pcp package files except those split out into sub packages +ls -1 $RPM_BUILD_ROOT/%{_bindir} |\ + sed -e 's#^#'%{_bindir}'\/#' >base_bin.list +ls -1 $RPM_BUILD_ROOT/%{_libexecdir}/pcp/bin |\ + sed -e 's#^#'%{_libexecdir}/pcp/bin'\/#' >base_exec.list +ls -1 $RPM_BUILD_ROOT/%{_mandir}/man1 |\ + sed -e 's#^#'%{_mandir}'\/man1\/#' >base_man.list +ls -1 $RPM_BUILD_ROOT/%{_booksdir} |\ + sed -e 's#^#'%{_booksdir}'\/#' > pcp-doc.list +ls -1 $RPM_BUILD_ROOT/%{_datadir}/pcp/demos/tutorials |\ + sed -e 's#^#'%{_datadir}/pcp/demos/tutorials'\/#' >>pcp-doc.list +%if !%{disable_qt} +ls -1 $RPM_BUILD_ROOT/%{_pixmapdir} |\ + sed -e 's#^#'%{_pixmapdir}'\/#' > pcp-gui.list +cat base_bin.list base_exec.list base_man.list |\ + egrep "$PCP_GUI" >> pcp-gui.list +%endif +cat base_pmdas.list base_bin.list base_exec.list base_man.list |\ + egrep -v 'pmdaib|pmmgr|pmweb|2pcp' |\ + egrep -v "$PCP_GUI|pixmaps|pcp-doc|tutorials" |\ + egrep -v %{_confdir} | egrep -v %{_logsdir} > base.list + +# all devel pcp package files except those split out into sub packages +ls -1 $RPM_BUILD_ROOT/%{_mandir}/man3 |\ +sed -e 's#^#'%{_mandir}'\/man3\/#' | egrep -v '3pm|PMWEBAPI' >devel.list +ls -1 $RPM_BUILD_ROOT/%{_datadir}/pcp/demos |\ +sed -e 's#^#'%{_datadir}'\/pcp\/demos\/#' | egrep -v tutorials >> devel.list + +%pre testsuite +test -d %{_testsdir} || mkdir -p -m 755 %{_testsdir} +getent group pcpqa >/dev/null || groupadd -r pcpqa +getent passwd pcpqa >/dev/null || \ + useradd -c "PCP Quality Assurance" -g pcpqa -d %{_testsdir} -M -r -s /bin/bash pcpqa 2>/dev/null +chown -R pcpqa:pcpqa %{_testsdir} 2>/dev/null +exit 0 + +%post testsuite +chown -R pcpqa:pcpqa %{_testsdir} 2>/dev/null +exit 0 + +%pre +getent group pcp >/dev/null || groupadd -r pcp +getent passwd pcp >/dev/null || \ + useradd -c "Performance Co-Pilot" -g pcp -d %{_localstatedir}/lib/pcp -M -r -s /sbin/nologin pcp +PCP_SYSCONF_DIR=%{_confdir} +PCP_LOG_DIR=%{_logsdir} +PCP_ETC_DIR=%{_sysconfdir} +# rename crontab files to align with current Fedora packaging guidelines +for crontab in pmlogger pmie +do + test -f "$PCP_ETC_DIR/cron.d/$crontab" || continue + mv -f "$PCP_ETC_DIR/cron.d/$crontab" "$PCP_ETC_DIR/cron.d/pcp-$crontab" +done +# produce a script to run post-install to move configs to their new homes +save_configs_script() +{ + _new="$1" + shift + for _dir + do + [ "$_dir" = "$_new" ] && continue + if [ -d "$_dir" ] + then + ( cd "$_dir" ; find . -type f -print ) | sed -e 's/^\.\///' \ + | while read _file + do + _want=true + if [ -f "$_new/$_file" ] + then + # file exists in both directories, pick the more + # recently modified one + _try=`find "$_dir/$_file" -newer "$_new/$_file" -print` + [ -n "$_try" ] || _want=false + fi + $_want && echo cp -p "$_dir/$_file" "$_new/$_file" + done + fi + done +} +# migrate and clean configs if we have had a previous in-use installation +[ -d "$PCP_LOG_DIR" ] || exit 0 # no configuration file upgrades required +rm -f "$PCP_LOG_DIR/configs.sh" +for daemon in pmcd pmie pmlogger pmproxy +do + save_configs_script >> "$PCP_LOG_DIR/configs.sh" "$PCP_SYSCONF_DIR/$daemon" \ + /var/lib/pcp/config/$daemon /etc/$daemon /etc/pcp/$daemon /etc/sysconfig/$daemon +done +exit 0 + +%if !%{disable_microhttpd} +%preun webapi +if [ "$1" -eq 0 ] +then +%if !%{disable_systemd} + systemctl --no-reload disable pmwebd.service >/dev/null 2>&1 + systemctl stop pmwebd.service >/dev/null 2>&1 +%else + /sbin/service pmwebd stop >/dev/null 2>&1 + /sbin/chkconfig --del pmwebd >/dev/null 2>&1 +%endif +fi +%endif + +%preun manager +if [ "$1" -eq 0 ] +then +%if !%{disable_systemd} + systemctl --no-reload disable pmmgr.service >/dev/null 2>&1 + systemctl stop pmmgr.service >/dev/null 2>&1 +%else + /sbin/service pmmgr stop >/dev/null 2>&1 + /sbin/chkconfig --del pmmgr >/dev/null 2>&1 +%endif +fi + +%preun +if [ "$1" -eq 0 ] +then + # stop daemons before erasing the package + %if !%{disable_systemd} + systemctl --no-reload disable pmlogger.service >/dev/null 2>&1 + systemctl --no-reload disable pmie.service >/dev/null 2>&1 + systemctl --no-reload disable pmproxy.service >/dev/null 2>&1 + systemctl --no-reload disable pmcd.service >/dev/null 2>&1 + + systemctl stop pmlogger.service >/dev/null 2>&1 + systemctl stop pmie.service >/dev/null 2>&1 + systemctl stop pmproxy.service >/dev/null 2>&1 + systemctl stop pmcd.service >/dev/null 2>&1 + %else + /sbin/service pmlogger stop >/dev/null 2>&1 + /sbin/service pmie stop >/dev/null 2>&1 + /sbin/service pmproxy stop >/dev/null 2>&1 + /sbin/service pmcd stop >/dev/null 2>&1 + + /sbin/chkconfig --del pcp >/dev/null 2>&1 + /sbin/chkconfig --del pmcd >/dev/null 2>&1 + /sbin/chkconfig --del pmlogger >/dev/null 2>&1 + /sbin/chkconfig --del pmie >/dev/null 2>&1 + /sbin/chkconfig --del pmproxy >/dev/null 2>&1 + %endif + # cleanup namespace state/flag, may still exist + PCP_PMNS_DIR=%{_pmnsdir} + rm -f "$PCP_PMNS_DIR/.NeedRebuild" >/dev/null 2>&1 +fi + +%if !%{disable_microhttpd} +%post webapi +chown -R pcp:pcp %{_logsdir}/pmwebd 2>/dev/null +%if !%{disable_systemd} + systemctl condrestart pmwebd.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmwebd >/dev/null 2>&1 + /sbin/service pmwebd condrestart +%endif +%endif + +%post manager +chown -R pcp:pcp %{_logsdir}/pmmgr 2>/dev/null +%if !%{disable_systemd} + systemctl condrestart pmmgr.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmmgr >/dev/null 2>&1 + /sbin/service pmmgr condrestart +%endif + +%post +PCP_LOG_DIR=%{_logsdir} +PCP_PMNS_DIR=%{_pmnsdir} +# restore saved configs, if any +test -s "$PCP_LOG_DIR/configs.sh" && source "$PCP_LOG_DIR/configs.sh" +rm -f $PCP_LOG_DIR/configs.sh + +# migrate old to new temp dir locations (within the same filesystem) +migrate_tempdirs() +{ + _sub="$1" + _new_tmp_dir=%{_tempsdir} + _old_tmp_dir=%{_localstatedir}/tmp + + for d in "$_old_tmp_dir/$_sub" ; do + test -d "$d" -a -k "$d" || continue + cd "$d" || continue + for f in * ; do + [ "$f" != "*" ] || continue + source="$d/$f" + target="$_new_tmp_dir/$_sub/$f" + [ "$source" != "$target" ] || continue + [ -f "$target" ] || mv -fu "$source" "$target" + done + cd && rmdir "$d" 2>/dev/null + done +} +for daemon in mmv pmdabash pmie pmlogger +do + migrate_tempdirs $daemon +done +chown -R pcp:pcp %{_logsdir}/pmcd 2>/dev/null +chown -R pcp:pcp %{_logsdir}/pmlogger 2>/dev/null +chown -R pcp:pcp %{_logsdir}/pmie 2>/dev/null +chown -R pcp:pcp %{_logsdir}/pmproxy 2>/dev/null +touch "$PCP_PMNS_DIR/.NeedRebuild" +chmod 644 "$PCP_PMNS_DIR/.NeedRebuild" +%if !%{disable_systemd} + systemctl condrestart pmcd.service >/dev/null 2>&1 + systemctl condrestart pmlogger.service >/dev/null 2>&1 + systemctl condrestart pmie.service >/dev/null 2>&1 + systemctl condrestart pmproxy.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmcd >/dev/null 2>&1 + /sbin/service pmcd condrestart + /sbin/chkconfig --add pmlogger >/dev/null 2>&1 + /sbin/service pmlogger condrestart + /sbin/chkconfig --add pmie >/dev/null 2>&1 + /sbin/service pmie condrestart + /sbin/chkconfig --add pmproxy >/dev/null 2>&1 + /sbin/service pmproxy condrestart +%endif + +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%files -f base.list +# +# Note: there are some headers (e.g. domain.h) and in a few cases some +# C source files that rpmlint complains about. These are not devel files, +# but rather they are (slightly obscure) PMDA config files. +# +%defattr(-,root,root) +%doc CHANGELOG COPYING INSTALL README VERSION.pcp pcp.lsm + +%dir %{_confdir} +%dir %{_pmdasdir} +%dir %{_datadir}/pcp +%dir %{_localstatedir}/lib/pcp +%dir %{_localstatedir}/lib/pcp/config +%dir %attr(0775,pcp,pcp) %{_localstatedir}/lib/pcp/config/pmda +%dir %attr(0775,pcp,pcp) %{_tempsdir} +%dir %attr(0775,pcp,pcp) %{_tempsdir}/pmie +%dir %attr(0775,pcp,pcp) %{_tempsdir}/pmlogger +%dir %attr(0775,pcp,pcp) %{_logsdir} + +%{_datadir}/pcp/lib +%attr(0775,pcp,pcp) %{_logsdir}/pmcd +%attr(0775,pcp,pcp) %{_logsdir}/pmlogger +%attr(0775,pcp,pcp) %{_logsdir}/pmie +%attr(0775,pcp,pcp) %{_logsdir}/pmproxy +%{_localstatedir}/lib/pcp/pmns +%if %{disable_systemd} +%{_initddir}/pcp +%{_initddir}/pmcd +%{_initddir}/pmlogger +%{_initddir}/pmie +%{_initddir}/pmproxy +%endif +%{_mandir}/man5/* +%config(noreplace) %{_sysconfdir}/sasl2/pmcd.conf +%config(noreplace) %{_sysconfdir}/cron.d/pcp-pmlogger +%config(noreplace) %{_sysconfdir}/cron.d/pcp-pmie +%config %{_sysconfdir}/bash_completion.d/pcp +%config %{_sysconfdir}/pcp.env +%config %{_sysconfdir}/pcp.sh +%dir %{_confdir}/pmcd +%config(noreplace) %{_confdir}/pmcd/pmcd.conf +%config(noreplace) %{_confdir}/pmcd/pmcd.options +%config(noreplace) %{_confdir}/pmcd/rc.local +%dir %{_confdir}/pmproxy +%config(noreplace) %{_confdir}/pmproxy/pmproxy.options +%dir %attr(0775,pcp,pcp) %{_confdir}/pmie +%attr(0664,pcp,pcp) %config(noreplace) %{_confdir}/pmie/control +%dir %attr(0775,pcp,pcp) %{_confdir}/pmlogger +%attr(0664,pcp,pcp) %config(noreplace) %{_confdir}/pmlogger/control +%{_localstatedir}/lib/pcp/config/* + +%if 0%{?rhel} == 0 || 0%{?rhel} > 5 +%{tapsetdir}/pmcd.stp +%else # rhel5 +%ifarch ppc ppc64 +# no systemtap-sdt-devel +%else # ! ppc +%{tapsetdir}/pmcd.stp +%endif # ppc +%endif + +%files conf +%defattr(-,root,root) + +%dir %{_includedir}/pcp +%{_includedir}/pcp/builddefs +%{_includedir}/pcp/buildrules +%config %{_sysconfdir}/pcp.conf + +%files libs +%defattr(-,root,root) + +%{_libdir}/libpcp.so.3 +%{_libdir}/libpcp_gui.so.2 +%{_libdir}/libpcp_mmv.so.1 +%{_libdir}/libpcp_pmda.so.3 +%{_libdir}/libpcp_trace.so.2 +%{_libdir}/libpcp_import.so.1 + +%files libs-devel -f devel.list +%defattr(-,root,root) + +%{_libdir}/libpcp.so +%{_libdir}/libpcp.so.2 +%{_libdir}/libpcp_gui.so +%{_libdir}/libpcp_gui.so.1 +%{_libdir}/libpcp_mmv.so +%{_libdir}/libpcp_pmda.so +%{_libdir}/libpcp_pmda.so.2 +%{_libdir}/libpcp_trace.so +%{_libdir}/libpcp_import.so +%{_includedir}/pcp/*.h +%{_datadir}/pcp/examples + +# PMDAs that ship src and are not for production use +# straight out-of-the-box, for devel or QA use only. +%{_pmdasdir}/simple +%{_pmdasdir}/sample +%{_pmdasdir}/trivial +%{_pmdasdir}/txmon + +%files testsuite +%defattr(-,pcpqa,pcpqa) +%{_testsdir} + +%if !%{disable_microhttpd} +%files webapi +%defattr(-,root,root) +%if %{disable_systemd} +%{_initddir}/pmwebd +%endif +%{_libexecdir}/pcp/bin/pmwebd +%attr(0775,pcp,pcp) %{_logsdir}/pmwebd +%{_confdir}/pmwebd +%config(noreplace) %{_confdir}/pmwebd/pmwebd.options +%{_mandir}/man1/pmwebd.1.gz +%{_mandir}/man3/PMWEBAPI.3.gz +%endif + +%files manager +%defattr(-,root,root) +%if %{disable_systemd} +%{_initddir}/pmmgr +%endif +%{_libexecdir}/pcp/bin/pmmgr +%attr(0775,pcp,pcp) %{_logsdir}/pmmgr +%{_confdir}/pmmgr +%config(noreplace) %{_confdir}/pmmgr/pmmgr.options +%{_mandir}/man1/pmmgr.1.gz + +%files import-sar2pcp +%defattr(-,root,root) +%{_bindir}/sar2pcp +%{_mandir}/man1/sar2pcp.1.gz + +%files import-iostat2pcp +%defattr(-,root,root) +%{_bindir}/iostat2pcp +%{_mandir}/man1/iostat2pcp.1.gz + +%files import-mrtg2pcp +%defattr(-,root,root) +%{_bindir}/mrtg2pcp +%{_mandir}/man1/mrtg2pcp.1.gz + +%files import-collectl2pcp +%defattr(-,root,root) +%{_bindir}/collectl2pcp +%{_mandir}/man1/collectl2pcp.1.gz + +%if !%{disable_papi} +%files pmda-papi +%defattr(-,root,root) +%{_pmdasdir}/papi +%{_mandir}/man1/pmdapapi.1.gz +%endif + +%if !%{disable_infiniband} +%files pmda-infiniband +%defattr(-,root,root) +%{_pmdasdir}/ib +%{_pmdasdir}/infiniband +%{_mandir}/man1/pmdaib.1.gz +%endif + +%files -n perl-PCP-PMDA -f perl-pcp-pmda.list +%defattr(-,root,root) + +%files -n perl-PCP-MMV -f perl-pcp-mmv.list +%defattr(-,root,root) + +%files -n perl-PCP-LogImport -f perl-pcp-logimport.list +%defattr(-,root,root) + +%files -n perl-PCP-LogSummary -f perl-pcp-logsummary.list +%defattr(-,root,root) + +%files -n python-pcp -f python-pcp.list.rpm +%defattr(-,root,root) + +%if !%{disable_qt} +%files -n pcp-gui -f pcp-gui.list +%defattr(-,root,root,-) + +%{_sysconfdir}/pcp/pmsnap +%config(noreplace) %{_sysconfdir}/pcp/pmsnap +%{_localstatedir}/lib/pcp/config/pmsnap +%dir %{_localstatedir}/lib/pcp/config/pmsnap +%{_localstatedir}/lib/pcp/config/pmchart +%dir %{_localstatedir}/lib/pcp/config/pmchart +%{_localstatedir}/lib/pcp/config/pmafm/pcp-gui +%{_datadir}/applications/pmchart.desktop +%endif + +%files -n pcp-doc -f pcp-doc.list +%defattr(-,root,root,-) + +%changelog +* Fri Sep 05 2014 Nathan Scott <nathans@redhat.com> - 3.9.10-1 +- Convert PCP init scripts to systemd services (BZ 996438) +- Fix pmlogsummary -S/-T time window reporting (BZ 1132476) +- Resolve pmdumptext segfault with invalid host (BZ 1131779) +- Fix signedness in some service discovery codes (BZ 1136166) +- New conditionally-built pcp-pmda-papi sub-package. +- Update to latest PCP sources. + +* Wed Aug 13 2014 Nathan Scott <nathans@redhat.com> - 3.9.9-1 +- Update to latest PCP sources. + +* Wed Jul 16 2014 Mark Goodwin <mgoodwin@redhat.com> - 3.9.7-1 +- Update to latest PCP sources. + +* Wed Jun 18 2014 Dave Brolley <brolley@redhat.com> - 3.9.5-1 +- Daemon signal handlers no longer use unsafe APIs (BZ 847343) +- Handle /var/run setups on a temporary filesystem (BZ 656659) +- Resolve pmlogcheck sigsegv for some archives (BZ 1077432) +- Ensure pcp-gui-{testsuite,debuginfo} packages get replaced. +- Revive support for EPEL5 builds, post pcp-gui merge. +- Update to latest PCP sources. + +* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.4-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 15 2014 Nathan Scott <nathans@redhat.com> - 3.9.4-1 +- Merged pcp-gui and pcp-doc packages into core PCP. +- Allow for conditional libmicrohttpd builds in spec file. +- Adopt slow-start capability in systemd PMDA (BZ 1073658) +- Resolve pmcollectl network/disk mis-reporting (BZ 1097095) +- Update to latest PCP sources. + +* Tue Apr 15 2014 Dave Brolley <brolley@redhat.com> - 3.9.2-1 +- Improve pmdarpm(1) concurrency complications (BZ 1044297) +- Fix pmconfig(1) shell output string quoting (BZ 1085401) +- Update to latest PCP sources. + +* Wed Mar 19 2014 Nathan Scott <nathans@redhat.com> - 3.9.1-1 +- Update to latest PCP sources. + +* Thu Feb 20 2014 Nathan Scott <nathans@redhat.com> - 3.9.0-2 +- Workaround further PowerPC/tapset-related build fallout. + +* Wed Feb 19 2014 Nathan Scott <nathans@redhat.com> - 3.9.0-1 +- Create new sub-packages for pcp-webapi and pcp-manager +- Split configuration from pcp-libs into pcp-conf (multilib) +- Fix pmdagluster to handle more volumes, fileops (BZ 1066544) +- Update to latest PCP sources. + +* Wed Jan 29 2014 Nathan Scott <nathans@redhat.com> - 3.8.12-1 +- Resolves SNMP procfs file ICMP line parse issue (BZ 1055818) +- Update to latest PCP sources. + +* Wed Jan 15 2014 Nathan Scott <nathans@redhat.com> - 3.8.10-1 +- Update to latest PCP sources. + +* Thu Dec 12 2013 Nathan Scott <nathans@redhat.com> - 3.8.9-1 +- Reduce set of exported symbols from DSO PMDAs (BZ 1025694) +- Symbol-versioning for PCP shared libraries (BZ 1037771) +- Fix pmcd/Avahi interaction with multiple ports (BZ 1035513) +- Update to latest PCP sources. + +* Sun Nov 03 2013 Nathan Scott <nathans@redhat.com> - 3.8.8-1 +- Update to latest PCP sources (simple build fixes only). + +* Fri Nov 01 2013 Nathan Scott <nathans@redhat.com> - 3.8.6-1 +- Update to latest PCP sources. +- Rework pmpost test which confused virus checkers (BZ 1024850) +- Tackle pmatop reporting issues via alternate metrics (BZ 998735) + +* Fri Oct 18 2013 Nathan Scott <nathans@redhat.com> - 3.8.5-1 +- Update to latest PCP sources. +- Disable pcp-pmda-infiniband sub-package on RHEL5 (BZ 1016368) + +* Mon Sep 16 2013 Nathan Scott <nathans@redhat.com> - 3.8.4-2 +- Disable the pcp-pmda-infiniband sub-package on s390 platforms. + +* Sun Sep 15 2013 Nathan Scott <nathans@redhat.com> - 3.8.4-1 +- Very minor release containing mostly QA related changes. +- Enables many more metrics to be logged for Linux hosts. + +* Wed Sep 11 2013 Stan Cox <scox@redhat.com> - 3.8.3-2 +- Disable pmcd.stp on el5 ppc. + +* Mon Sep 09 2013 Nathan Scott <nathans@redhat.com> - 3.8.3-1 +- Default to Unix domain socket (authenticated) local connections. +- Introduces new pcp-pmda-infiniband sub-package. +- Disable systemtap-sdt-devel usage on ppc. + +* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 3.8.2-1.1 +- Perl 5.18 rebuild + +* Wed Jul 31 2013 Nathan Scott <nathans@redhat.com> - 3.8.2-1 +- Update to latest PCP sources. +- Integrate gluster related stats with PCP (BZ 969348) +- Fix for iostat2pcp not parsing iostat output (BZ 981545) +- Start pmlogger with usable config by default (BZ 953759) +- Fix pmatop failing to start, gives stacktrace (BZ 963085) + +* Wed Jun 19 2013 Nathan Scott <nathans@redhat.com> - 3.8.1-1 +- Update to latest PCP sources. +- Fix log import silently dropping >1024 metrics (BZ 968210) +- Move some commonly used tools on the usual PATH (BZ 967709) +- Improve pmatop handling of missing proc metrics (BZ 963085) +- Stop out-of-order records corrupting import logs (BZ 958745) + +* Tue May 14 2013 Nathan Scott <nathans@redhat.com> - 3.8.0-1 +- Update to latest PCP sources. +- Validate metric names passed into pmiAddMetric (BZ 958019) +- Install log directories with correct ownership (BZ 960858) + +* Fri Apr 19 2013 Nathan Scott <nathans@redhat.com> - 3.7.2-1 +- Update to latest PCP sources. +- Ensure root namespace exists at the end of install (BZ 952977) + +* Wed Mar 20 2013 Nathan Scott <nathans@redhat.com> - 3.7.1-1 +- Update to latest PCP sources. +- Migrate all tempfiles correctly to the new tempdir hierarchy. + +* Sun Mar 10 2013 Nathan Scott <nathans@redhat.com> - 3.7.0-1 +- Update to latest PCP sources. +- Migrate all configuration files below the /etc/pcp hierarchy. + +* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.10-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Nov 28 2012 Nathan Scott <nathans@redhat.com> - 3.6.10-2 +- Ensure tmpfile directories created in %%files section. +- Resolve tmpfile create/teardown race conditions. + +* Mon Nov 19 2012 Nathan Scott <nathans@redhat.com> - 3.6.10-1 +- Update to latest PCP sources. +- Resolve tmpfile security flaws: CVE-2012-5530 +- Introduces new "pcp" user account for all daemons to use. + +* Fri Oct 12 2012 Nathan Scott <nathans@redhat.com> - 3.6.9-1 +- Update to latest PCP sources. +- Fix pmcd sigsegv in NUMA/CPU indom setup (BZ 858384) +- Fix sar2pcp uninitialised perl variable warning (BZ 859117) +- Fix pcp.py and pmcollectl with older python versions (BZ 852234) + +* Fri Sep 14 2012 Nathan Scott <nathans@redhat.com> - 3.6.8-1 +- Update to latest PCP sources. + +* Wed Sep 05 2012 Nathan Scott <nathans@redhat.com> - 3.6.6-1.1 +- Move configure step from prep to build section of spec (BZ 854128) + +* Tue Aug 28 2012 Mark Goodwin <mgoodwin@redhat.com> - 3.6.6-1 +- Update to latest PCP sources, see installed CHANGELOG for details. +- Introduces new python-pcp and pcp-testsuite sub-packages. + +* Thu Aug 16 2012 Mark Goodwin <mgoodwin@redhat.com> - 3.6.5-1 +- Update to latest PCP sources, see installed CHANGELOG for details. +- Fix security flaws: CVE-2012-3418 CVE-2012-3419 CVE-2012-3420 and CVE-2012-3421 (BZ 848629) + +* Thu Jul 19 2012 Mark Goodwin <mgoodwin@redhat.com> +- pmcd and pmlogger services are not supposed to be enabled by default (BZ 840763) - 3.6.3-1.3 + +* Thu Jun 21 2012 Mark Goodwin <mgoodwin@redhat.com> +- remove pcp-import-sheet2pcp subpackage due to missing deps (BZ 830923) - 3.6.3-1.2 + +* Fri May 18 2012 Dan Hork <dan[at]danny.cz> - 3.6.3-1.1 +- fix build on s390x + +* Mon Apr 30 2012 Mark Goodwin - 3.6.3-1 +- Update to latest PCP sources + +* Thu Apr 26 2012 Mark Goodwin - 3.6.2-1 +- Update to latest PCP sources + +* Thu Apr 12 2012 Mark Goodwin - 3.6.1-1 +- Update to latest PCP sources + +* Thu Mar 22 2012 Mark Goodwin - 3.6.0-1 +- use %%configure macro for correct libdir logic +- update to latest PCP sources + +* Thu Dec 15 2011 Mark Goodwin - 3.5.11-2 +- patched configure.in for libdir=/usr/lib64 on ppc64 + +* Thu Dec 01 2011 Mark Goodwin - 3.5.11-1 +- Update to latest PCP sources. + +* Fri Nov 04 2011 Mark Goodwin - 3.5.10-1 +- Update to latest PCP sources. + +* Mon Oct 24 2011 Mark Goodwin - 3.5.9-1 +- Update to latest PCP sources. + +* Mon Aug 08 2011 Mark Goodwin - 3.5.8-1 +- Update to latest PCP sources. + +* Fri Aug 05 2011 Mark Goodwin - 3.5.7-1 +- Update to latest PCP sources. + +* Fri Jul 22 2011 Mark Goodwin - 3.5.6-1 +- Update to latest PCP sources. + +* Tue Jul 19 2011 Mark Goodwin - 3.5.5-1 +- Update to latest PCP sources. + +* Thu Feb 03 2011 Mark Goodwin - 3.5.0-1 +- Update to latest PCP sources. + +* Thu Sep 30 2010 Mark Goodwin - 3.4.0-1 +- Update to latest PCP sources. + +* Fri Jul 16 2010 Mark Goodwin - 3.3.3-1 +- Update to latest PCP sources. + +* Sat Jul 10 2010 Mark Goodwin - 3.3.2-1 +- Update to latest PCP sources. + +* Tue Jun 29 2010 Mark Goodwin - 3.3.1-1 +- Update to latest PCP sources. + +* Fri Jun 25 2010 Mark Goodwin - 3.3.0-1 +- Update to latest PCP sources. + +* Thu Mar 18 2010 Mark Goodwin - 3.1.2-1 +- Update to latest PCP sources. + +* Wed Jan 27 2010 Mark Goodwin - 3.1.0-1 +- BuildRequires: initscripts for %%{_vendor} == redhat. + +* Thu Dec 10 2009 Mark Goodwin - 3.0.3-1 +- BuildRequires: initscripts for FC12. + +* Wed Dec 02 2009 Mark Goodwin - 3.0.2-1 +- Added sysfs.kernel metrics, rebased to minor community release. + +* Mon Oct 19 2009 Martin Hicks <mort@sgi.com> - 3.0.1-2 +- Remove IB dependencies. The Infiniband PMDA is being moved to + a stand-alone package. +- Move cluster PMDA to a stand-alone package. + +* Fri Oct 09 2009 Mark Goodwin <mgoodwin@redhat.com> - 3.0.0-9 +- This is the initial import for Fedora +- See 3.0.0 details in CHANGELOG diff --git a/build/rpm/filter-requires b/build/rpm/filter-requires new file mode 100755 index 0000000..379415d --- /dev/null +++ b/build/rpm/filter-requires @@ -0,0 +1,75 @@ +#!/bin/sh +# +# Filter to exclude some Requires targets from those automatically +# generated by rpmbuild's helper script find-requires +# +# Specifically intended for Perl modules that PCP uses, but which +# may not be packaged in some distributions. +# + +_usage() +{ + echo >&2 "Usage: $0 [option] path-to-real-find-requires [arg]" + echo >&2 "Options:" + echo >&2 " -f fedora_version" + echo >&2 " -r redhat_version" + echo >&2 " -v vendor (\"redhat\" or \"suse\" or ...)" +} + +#debug# echo >&2 "$0 called as: $0 $*" + +FEDORA=0 +REDHAT=0 +VENDOR=unknown +while getopts "f:r:v:?" c +do + case $c + in + f) + FEDORA="$OPTARG" + ;; + r) + REDHAT="$OPTARG" + ;; + v) + VENDOR="$OPTARG" + ;; + esac +done +shift `expr $OPTIND - 1` + +if [ $# -lt 1 ] +then + _usage + exit 1 +fi + +if [ ! -f "$1" ] +then + echo "$0: Error: rpm script $1 not found" + exit 1 +fi + +# Filtering depends on distro vendor and possibly version +# +# Lines from find-requires look like this ... +# /bin/sh +# libc.so.6()(64bit) +# libc.so.6(GLIBC_2.2.5)(64bit) +# perl(Spreadsheet::Read) +# perl(strict) +# +case "$VENDOR" +in + redhat) + # See RedHat BZ 830923 and BZ 754678 for Spreadsheet::Read + # issues. + # Does not seem to matter what version of RH or Fedora. + $* \ + | sed \ + -e '/^perl(Spreadsheet::Read)$/d' + ;; + *) + $* + ;; +esac diff --git a/build/rpm/get_rpm_version b/build/rpm/get_rpm_version new file mode 100755 index 0000000..5dca540 --- /dev/null +++ b/build/rpm/get_rpm_version @@ -0,0 +1,66 @@ +#!/bin/sh +# +# Convert an rpm(1) --version string into an 7 or more digit number that +# can be used in %if comparisons in a specfile. +# +# The first part of the rpm verson has no leading zero, parts after that +# (up to 3 more) are fixed width 2 digits with leading zero if needed. +# +# rpm --version produces text like +# RPM version 4.4.2.3 +# and this is mapped to 4040203 and .0 is implied for any missing parts +# of the version string, so 4.7 becomes 4070000 for example. +# +# Copyright (c) 2014 Ken McDonell. 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. +# + +tmp=/var/tmp/$$ +sts=0 +trap "rm -f $tmp.*; exit \$sts" 0 1 2 3 15 + +# try to get required command pathnames from ../../src/include/builddefs +# +if [ -f ../../src/include/builddefs ] +then + rpm=`sed <../../src/include/builddefs -n -e '/^RPM[ ]*=/s/^RPM[ ]*=[ ]*//p'` + awk=`sed <../../src/include/builddefs -n -e '/^AWK[ ]*=/s/^AWK[ ]*=[ ]*//p'` +fi + +# otherwise use vanilla defaults +# +[ -z "$rpm" ] && rpm=rpm +[ -z "$awk" ] && awk=awk + +if `which $rpm >/dev/null 2>&1` +then + : +else + echo "$0: Arrgh ... $rpm not found, why am I being run?" + sts=1 + exit +fi + +#debug# echo "rpm=$rpm" +#debug# echo "awk=$awk" + +cat <<'End-of-File' >$tmp.awk +{ for (i = NF+1; i <= 4; i++) $i = 0 + printf "%d%02d%02d%02d\n",$1,$2,$3,$4 +} +End-of-File + +# translate rpm --version output +# +$rpm --version \ +| sed -e 's/.* \([0-9]\)/\1/' \ +| eval $awk -F. -f $tmp.awk diff --git a/build/rpm/macros.template b/build/rpm/macros.template new file mode 100644 index 0000000..6e36d88 --- /dev/null +++ b/build/rpm/macros.template @@ -0,0 +1,23 @@ +# +# rpmrc.template +# + +# topdir == $(WORKAREA) +%_topdir %topdir% + +# Following directories are specific to the topdir +# This is where build is done. In our case it's the same as $WORKAREA +%_builddir %{_topdir} + +# This is where foo.1.99.tar.gz is living in the real world. +# Be careful not to run full rpm build as it will override the sources +%_sourcedir %{_topdir}/../build/tar + +# This is where binary RPM and source RPM would end up +%_rpmdir @rpmsdir@ +%_srcrpmdir @srpmsdir@ +%_specdir %{_topdir}/build/rpm + +# Leave RPM files in the same directory - we're not building for +# multiple architectures +%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm diff --git a/build/rpm/pcp-logsummary-perl.desc b/build/rpm/pcp-logsummary-perl.desc new file mode 100644 index 0000000..cbbad53 --- /dev/null +++ b/build/rpm/pcp-logsummary-perl.desc @@ -0,0 +1,6 @@ +The PCP::LogSummary module provides a Perl module for using the +statistical summary data produced by the Performance Co-Pilot +pmlogsummary utility. This utility produces various averages, +minima, maxima, and other calculations based on the performance +data stored in a PCP archive. The Perl interface is ideal for +exporting this data into third-party tools (e.g. spreadsheets). diff --git a/build/rpm/pcp-mmv-perl.desc b/build/rpm/pcp-mmv-perl.desc new file mode 100644 index 0000000..8991e01 --- /dev/null +++ b/build/rpm/pcp-mmv-perl.desc @@ -0,0 +1,6 @@ +The PCP::MMV module contains the Perl language bindings for +building scripts instrumented with the Performance Co-Pilot +(PCP) Memory Mapped Value (MMV) mechanism. +This mechanism allows arbitrary values to be exported from an +instrumented script into the PCP infrastructure for monitoring +and analysis with pmchart, pmie, pmlogger and other PCP tools. diff --git a/build/rpm/pcp-pmda-perl.desc b/build/rpm/pcp-pmda-perl.desc new file mode 100644 index 0000000..15d43f9 --- /dev/null +++ b/build/rpm/pcp-pmda-perl.desc @@ -0,0 +1,5 @@ +The PCP::PMDA Perl module contains the language bindings for +building Performance Metric Domain Agents (PMDAs) using Perl. +Each PMDA exports performance data for one specific domain, for +example the operating system kernel, Cisco routers, a database, +an application, etc. diff --git a/build/rpm/pcp.spec.in b/build/rpm/pcp.spec.in new file mode 100644 index 0000000..ca4f77a --- /dev/null +++ b/build/rpm/pcp.spec.in @@ -0,0 +1,881 @@ +Summary: System-level performance monitoring and performance management +Name: @package_name@ +Version: @package_version@ +Release: @package_release@@package_sgirelease@ +License: GPLv2+ and LGPLv2.1+ +URL: http://www.performancecopilot.org +Group: Applications/System +Source: @package_name@-@package_version@.src.tar.gz +BuildRoot: @build_root@ +Distribution: @package_distribution@ +BuildRequires: procps bison flex +BuildRequires: python-devel +BuildRequires: ncurses-devel +BuildRequires: readline-devel +BuildRequires: perl(ExtUtils::MakeMaker) +%if "@enable_avahi@" == "true" +BuildRequires: avahi-devel +%endif +%if "@enable_secure@" == "true" +BuildRequires: nss-devel +BuildRequires: cyrus-sasl-devel +%endif +%if "@enable_probes@" == "true" +BuildRequires: systemtap-sdt-devel +%endif +%if @have_libmicrohttpd@ == 1 +BuildRequires: libmicrohttpd-devel +%endif +%if @have_rpmlib@ == 1 +BuildRequires: rpm-devel +%endif +%if "@enable_qt@" == "true" +%if "%{_vendor}" == "suse" +BuildRequires: qt-devel >= 4.4 +%else +BuildRequires: qt4-devel >= 4.4 +%endif +%endif +%if "%{_vendor}" == "redhat" +BuildRequires: initscripts man /bin/hostname +%endif +%if 0%{?fedora} >= 18 || 0%{?rhel} >= 7 +BuildRequires: systemd-devel +%endif + +%if "@enable_papi@" == "enable_papi" +BuildRequires: papi-devel +%endif + +Conflicts: pcp-pro < 2.2 + +# Utilities used indirectly e.g. by scripts we install +Requires: bash gawk sed grep fileutils findutils perl +Requires: python +%if "%{_vendor}" == "redhat" && 0%{?rhel} <= 5 +Requires: python-ctypes +%endif +%if "%{_vendor}" == "suse" +Requires: sysconfig +%define _rcdir /etc/init.d +%else +Requires: initscripts +%define _rcdir /etc/rc.d/init.d +%endif +%if "@enable_systemd@" == "true" +%define _configure_rcdir %{nil} +%else +%define _configure_rcdir --with-rcdir=%{_rcdir} +%endif +%define _tmpdir %{_localstatedir}/lib/pcp/tmp + +# There is a problem here ... some distros are resisting adding more +# repackaged perl-Foo-Bar rpms, but the default find-requires script +# will turn all perl module we use into rpm package Requires clauses. +# +# The fix is to over-ride the default find-requires script and strip +# out the dodgey perl modules that don't have official rpms, based +# on the distro ... see the filter-requires script in this directory +# +# Recipe is a refinement of the one described at +# http://fedoraproject.org/wiki/PackagingDrafts/FilteringAutomaticDependencies#Disabling_dependency_auto-generation +# +# override the default automatic requires/provides generation +%define _use_internal_dependency_generator 0 +# remember the real find-requires path (%%global avoids recursive %%define) +# macros below +%global __find_requires_save %{__find_requires} +# slip our filter into place +%define __find_requires %{_builddir}/%{?buildsubdir}/build/rpm/filter-requires -v %{_vendor} -f 0%{?fedora} -r 0%{?rhel} %{__find_requires_save} + +Requires: pcp-libs = @package_version@ +Requires: python-pcp = @package_version@ +Requires: perl-PCP-PMDA = @package_version@ +Obsoletes: pcp-gui-debuginfo +Obsoletes: pcp-pmda-nvidia + +%description +Performance Co-Pilot (PCP) provides a framework and services to support +system-level performance monitoring and performance management. + +The PCP open source release 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. + +# +# pcp-conf +# +%package conf +License: LGPLv2.1+ +Group: Development/Libraries +Summary: Performance Co-Pilot run-time configuration +URL: http://www.performancecopilot.org + +# http://fedoraproject.org/wiki/Packaging:Conflicts "Splitting Packages" +Conflicts: pcp-libs < 3.9 + +%description conf +Performance Co-Pilot (PCP) run-time configuration + +# +# pcp-libs +# +%package libs +License: LGPLv2.1+ +Group: Development/Libraries +Summary: Performance Co-Pilot run-time libraries +URL: http://www.performancecopilot.org + +Requires: pcp-conf = @package_version@ +Obsoletes: pcp < 3.0 + +%description libs +Performance Co-Pilot (PCP) run-time libraries + +# +# pcp-libs-devel +# +%package libs-devel +License: GPLv2+ and LGPLv2.1+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) development headers and documentation +URL: http://www.performancecopilot.org + +Requires: pcp-libs = @package_version@ + +%description libs-devel +Performance Co-Pilot (PCP) headers, documentation and tools for development. + +# +# pcp-testsuite +# +%package testsuite +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) test suite +URL: http://www.performancecopilot.org + +Requires: pcp = @package_version@ +Requires: pcp-libs = @package_version@ +Requires: pcp-libs-devel = @package_version@ +# Suggests: valgrind, nmap +Obsoletes: pcp-gui-testsuite + +%description testsuite +Quality assurance test suite for Performance Co-Pilot (PCP). + +%if "@BUILD_PMMGR@" == "yes" +# +# pcp-manager +# +%package manager +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) manager daemon +URL: http://www.performancecopilot.org + +Requires: pcp = @package_version@ +Requires: pcp-libs = @package_version@ + +%description manager +An optional daemon (pmmgr) that manages a collection of pmlogger and +pmie daemons, for a set of discovered local and remote hosts running +the performance metrics collection daemon (pmcd). It ensures these +daemons are running when appropriate, and manages their log rotation +needs (which are particularly complex in the case of pmlogger). +The base PCP package provides comparable functionality through cron +scripts which predate this daemon but do still provide effective and +efficient log management services. +The pcp-manager package aims to aggressively enable new PCP features +and as a result may not be suited to all production environments. +%endif + +%if @have_libmicrohttpd@ == 1 +# +# pcp-webapi +# +%package webapi +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) web API service +URL: http://www.performancecopilot.org + +Requires: pcp = @package_version@ +Requires: pcp-libs = @package_version@ + +%description webapi +Provides a daemon (pmwebd) that binds a large subset of the Performance +Co-Pilot (PCP) client API (PMAPI) to RESTful web applications using the +HTTP (PMWEBAPI) protocol. +%endif + +# +# perl-PCP-PMDA. This is the PCP agent perl binding. +# +%package -n perl-PCP-PMDA +License: GPLv2+ +Group: Development/Languages +Summary: Performance Co-Pilot (PCP) Perl bindings and documentation +URL: http://www.performancecopilot.org +Requires: pcp-libs = @package_version@ + +%description -n perl-PCP-PMDA +The PCP::PMDA Perl module contains the language bindings for +building Performance Metric Domain Agents (PMDAs) using Perl. +Each PMDA exports performance data for one specific domain, for +example the operating system kernel, Cisco routers, a database, +an application, etc. + +# +# perl-PCP-MMV +# +%package -n perl-PCP-MMV +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings for PCP Memory Mapped Values +URL: http://www.performancecopilot.org +Requires: pcp >= @package_version@ + +%description -n perl-PCP-MMV +The PCP::MMV module contains the Perl language bindings for +building scripts instrumented with the Performance Co-Pilot +(PCP) Memory Mapped Value (MMV) mechanism. +This mechanism allows arbitrary values to be exported from an +instrumented script into the PCP infrastructure for monitoring +and analysis with pmchart, pmie, pmlogger and other PCP tools. + +# +# perl-PCP-LogImport +# +%package -n perl-PCP-LogImport +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Perl bindings for importing external data into PCP archives +URL: http://www.performancecopilot.org +Requires: pcp >= @package_version@ + +%description -n perl-PCP-LogImport +The PCP::LogImport module contains the Perl language bindings for +importing data in various 3rd party formats into PCP archives so +they can be replayed with standard PCP monitoring tools. + +# +# perl-PCP-LogSummary +# +%package -n perl-PCP-LogSummary +License: GPLv2+ +Group: Development/Languages +Summary: Performance Co-Pilot (PCP) Perl bindings for post-processing output of pmlogsummary +URL: http://www.performancecopilot.org +Requires: pcp >= @package_version@ + +%description -n perl-PCP-LogSummary +The PCP::LogSummary module provides a Perl module for using the +statistical summary data produced by the Performance Co-Pilot +pmlogsummary utility. This utility produces various averages, +minima, maxima, and other calculations based on the performance +data stored in a PCP archive. The Perl interface is ideal for +exporting this data into third-party tools (e.g. spreadsheets). + +# +# pcp-import-sar2pcp +# +%package import-sar2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing sar data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs >= @package_version@ perl-PCP-LogImport >= @package_version@ sysstat + +%description import-sar2pcp +Performance Co-Pilot (PCP) front-end tools for importing sar data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-iostat2pcp +# +%package import-iostat2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing iostat data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs >= @package_version@ perl-PCP-LogImport >= @package_version@ sysstat + +%description import-iostat2pcp +Performance Co-Pilot (PCP) front-end tools for importing iostat data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-sheet2pcp +# +%package import-sheet2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing spreadsheet data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs >= @package_version@ perl-PCP-LogImport >= @package_version@ + +%description import-sheet2pcp +Performance Co-Pilot (PCP) front-end tools for importing spreadsheet data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-mrtg2pcp +# +%package import-mrtg2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing MTRG data into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs >= @package_version@ perl-PCP-LogImport >= @package_version@ + +%description import-mrtg2pcp +Performance Co-Pilot (PCP) front-end tools for importing MTRG data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# pcp-import-collectl2pcp +# +%package import-collectl2pcp +License: LGPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot tools for importing collectl log files into PCP archive logs +URL: http://www.performancecopilot.org +Requires: pcp-libs >= %{version}-%{release} + +%description import-collectl2pcp +Performance Co-Pilot (PCP) front-end tools for importing collectl data +into standard PCP archive logs for replay with any PCP monitoring tool. + +# +# python-pcp. This is the PCP library bindings for python. +# +%package -n python-pcp +License: GPLv2+ +Group: Development/Libraries +Summary: Performance Co-Pilot (PCP) Python bindings and documentation +URL: http://www.performancecopilot.org +Requires: pcp-libs = @package_version@ + +%description -n python-pcp +The python PCP module contains the language bindings for +building Performance Metric API (PMAPI) tools using Python. + +%if "@enable_qt@" == "true" +# +# pcp-gui package for Qt tools +# +%package -n pcp-gui +License: GPLv2+ and LGPLv2+ and LGPLv2+ with exceptions +Group: Applications/System +Summary: Visualization tools for the Performance Co-Pilot toolkit +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} + +%description -n pcp-gui +Visualization tools for the Performance Co-Pilot toolkit. +The pcp-gui package primarily includes visualization tools for +monitoring systems using live and archived Performance Co-Pilot +(PCP) sources. +%endif + +# +# pcp-doc package +# +%package -n pcp-doc +Group: Documentation +# BuildArch: requires rpm 4.6 or later ... ./get_rpm_vesion maps version +# 4.6.2.3 to the 7-digit "number" 4060203 +%if @rpm_version@ >= 4060000 +BuildArch: noarch +%endif +Summary: Documentation and tutorial for the Performance Co-Pilot +URL: http://www.performancecopilot.org + +%description -n pcp-doc +Documentation and tutorial for the Performance Co-Pilot +Performance Co-Pilot (PCP) provides a framework and services to support +system-level performance monitoring and performance management. + +The pcp-doc package provides useful information on using and +configuring the Performance Co-Pilot (PCP) toolkit for system +level performance management. It includes tutorials, HOWTOs, +and other detailed documentation about the internals of core +PCP utilities and daemons, and the PCP graphical tools. + +# +# pcp-pmda-papi +# +%if "@enable_papi@" == "enable_papi" +%package pmda-papi +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) metrics for Performance API and hardware counters +URL: http://www.performancecopilot.org +Requires: pcp-libs = %{version}-%{release} +Requires: papi-devel +BuildRequires: papi-devel + +%description pmda-papi +This package contains the PCP Performance Metrics Domain Agent (PMDA) for +collecting hardware counters statistics through PAPI (Perforamance API). +%endif + +%if "@pmda_infiniband@" == "infiniband" +# +# pcp-pmda-infiniband +# +%package pmda-infiniband +License: GPLv2+ +Group: Applications/System +Summary: Performance Co-Pilot (PCP) metrics for Infiniband HCAs and switches +URL: http://www.performancecopilot.org +Requires: pcp-libs = @package_version@ +Requires: libibmad >= 1.1.7 libibumad >= 1.1.7 +BuildRequires: libibmad-devel >= 1.1.7 libibumad-devel >= 1.1.7 + +%description pmda-infiniband +This package contains the PCP Performance Metrics Domain Agent (PMDA) for +collecting Infiniband statistics. By default, it monitors the local HCAs +but can also be configured to monitor remote GUIDs such as IB switches. +%endif + +%prep +%setup -q + +%clean +[ ! -z "$DIST_ROOT" ] && rm -rf $DIST_ROOT +rm -Rf $RPM_BUILD_ROOT + +%build +%configure @package_configure@ %{_configure_rcdir} +@make@ default_pcp + +%install +rm -Rf $RPM_BUILD_ROOT +NO_CHOWN=true +BACKDIR=`pwd`; +DIST_ROOT=$RPM_BUILD_ROOT +DIST_MANIFEST=`pwd`/install.manifest +export NO_CHOWN DIST_ROOT DIST_MANIFEST +rm -f $DIST_MANIFEST +@make@ install_pcp + +PCP_CONF=$BACKDIR/src/include/pcp.conf +export PCP_CONF +. $BACKDIR/src/include/pcp.env +CFGFILELIST=`ls -1 $BACKDIR/debian/pcp-conf.{install,dirs}` +LIBFILELIST=`ls -1 $BACKDIR/debian/lib*.{install,dirs} | fgrep -v -- -dev.` +DEVFILELIST=`ls -1 $BACKDIR/debian/lib*-dev.{install,dirs}` + +# +# Package split: pcp{-conf,-libs,-libs-devel,-webapi,-manager,-testsuite, +# -import-*,-export-*} ... +# The above list is ordered by file selection; files for each package are +# removed from a global set, then the base package catches all remaining. +sed -e 's/^/\//' $CFGFILELIST >cfg_files +sed -e 's/^/\//' $LIBFILELIST >libs_files +sed -e 's/^/\//' $DEVFILELIST >devel_files +%ifarch x86_64 ppc64 s390x +sed -i -e 's/usr\/lib\//usr\/lib64\//' libs_files +sed -i -e 's/usr\/lib\//usr\/lib64\//' devel_files +%endif +%ifarch ia64 +%if "%{_vendor}" != "suse" +sed -i -e 's/usr\/lib\//usr\/lib64\//' libs_files +sed -i -e 's/usr\/lib\//usr\/lib64\//' devel_files +%endif +%endif + +# +# some special cases for devel +awk '{print $NF}' $DIST_MANIFEST |\ +egrep 'pcp\/(examples|demos)|pmdas\/(sample|simple|trivial|txmon)' >>devel_files + +# +# Patterns for files to be marked %config(noreplace). +# Note: /etc/pcp.{conf,env,sh} are %config but not noreplace. +# and is treated specially below. +cat >conf_files <<EOF +etc/cron.d/pcp-pmie +etc/cron.d/pcp-pmlogger +pmcd/pmcd.conf +pmcd/pmcd.options +pmcd/rc.local +pmie/control +pmie/stomp +pmlogger/control +pmproxy/pmproxy.options +bash_completion.d/pcp +EOF +%if "@BUILD_PMMGR@" == "yes" +cat >>conf_files <<MGREOF +etc/pcp/pmmgr +MGREOF +%endif +%if @have_libmicrohttpd@ == 1 +cat >>conf_files <<WEBEOF +pmwebd/pmwebd.options +WEBEOF +%endif +%if "@enable_qt@" == "true" +cat >>conf_files <<GUIEOF +pmsnap/control +pmsnap/crontab +GUIEOF +%endif + +# +# Files for the various subpackages. We use these subpackages +# to isolate the (somewhat exotic) dependencies for these tools. +# Likewise, for the pcp-pmda and pcp-testsuite subpackages. +awk '{print $NF}' $DIST_MANIFEST | egrep 'pcp-doc' >docs_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'tutorials' >>docs_files +%if "@enable_qt@" == "true" +PCP_GUI='pmchart|pmconfirm|pmdumptext|pmmessage|pmquery|pmsnap|pmtime' +awk '{print $NF}' $DIST_MANIFEST | egrep "$PCP_GUI|pixmaps" > gui_files +%endif +%if @have_libmicrohttpd@ == 1 +awk '{print $NF}' $DIST_MANIFEST | egrep 'pmweb|PMWEBAPI' >webapi_files +%endif +%if "@BUILD_PMMGR@" == "yes" +awk '{print $NF}' $DIST_MANIFEST | egrep 'pmmgr' >manager_files +%endif +awk '{print $NF}' $DIST_MANIFEST | egrep 'testsuite' >testsuite_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'sar2pcp' >import_sar2pcp_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'iostat2pcp' >import_iostat2pcp_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'sheet2pcp' >import_sheet2pcp_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'mrtg2pcp' >import_mrtg2pcp_files +awk '{print $NF}' $DIST_MANIFEST | egrep 'collectl2pcp' >import_collectl2pcp_files +%if "@pmda_infiniband@" == "infiniband" +awk '{print $NF}' $DIST_MANIFEST | egrep 'infiniband|pmdaib|pmdas/ib' >pmda_infiniband_files +%endif +%if "@enable_papi@" == "enable_papi" +awk '{print $NF}' $DIST_MANIFEST | egrep 'papi' >pmda_papi_files +%endif +touch gui_files webapi_files manager_files pmda_infiniband_files pmda_papi_files + +rm -f *_files.rpm +sort -u $DIST_MANIFEST | $PCP_AWK_PROG ' +BEGIN { + while( getline < "cfg_files") cfg[$0]=1; + while( getline < "gui_files") gui[$0]=1; + while( getline < "docs_files") doc[$0]=1; + while( getline < "libs_files") lib[$0]=1; + while( getline < "devel_files") dev[$0]=1; + while( getline < "webapi_files") webapi[$0]=1; + while( getline < "manager_files") manager[$0]=1; + while( getline < "testsuite_files") testsuite[$0]=1; + while( getline < "pmda_infiniband_files") pmda_infiniband[$0]=1; + while( getline < "pmda_papi_files") pmda_papi[$0]=1; + while( getline < "import_sar2pcp_files") import_sar2pcp[$0]=1; + while( getline < "import_iostat2pcp_files") import_iostat2pcp[$0]=1; + while( getline < "import_sheet2pcp_files") import_sheet2pcp[$0]=1; + while( getline < "import_mrtg2pcp_files") import_mrtg2pcp[$0]=1; + while( getline < "import_collectl2pcp_files") import_collectl2pcp[$0]=1; + while( getline < "import_collectl2pcp_files") import_collectl2pcp[$0]=1; + while( getline < "conf_files") conf[nconf++]=$0; +} +{ + if (cfg[$NF]) f="cfg_files.rpm"; + else if (gui[$NF]) f="gui_files.rpm"; + else if (doc[$NF]) f="docs_files.rpm"; + else if (lib[$NF]) f="libs_files.rpm"; + else if (dev[$NF]) f="devel_files.rpm"; + else if (webapi[$NF]) f="webapi_files.rpm"; + else if (manager[$NF]) f="manager_files.rpm"; + else if (testsuite[$NF]) f="testsuite_files.rpm"; + else if (pmda_infiniband[$NF]) f="pmda_infiniband_files.rpm"; + else if (pmda_papi[$NF]) f="pmda_papi_files.rpm"; + else if (import_sar2pcp[$NF]) f="import_sar2pcp_files.rpm"; + else if (import_iostat2pcp[$NF]) f="import_iostat2pcp_files.rpm"; + else if (import_sheet2pcp[$NF]) f="import_sheet2pcp_files.rpm"; + else if (import_mrtg2pcp[$NF]) f="import_mrtg2pcp_files.rpm"; + else if (import_collectl2pcp[$NF]) f="import_collectl2pcp_files.rpm"; + else f="base_files.rpm" +} +$1 == "d" { printf ("%%%%dir %%%%attr(%s,%s,%s) %s\n", $2, $3, $4, $5) >> f } + +$1 == "f" && $6 ~ "etc/pcp.conf" { printf ("%%%%config ") >> f; } +$1 == "f" && $6 ~ "etc/pcp.env" { printf ("%%%%config ") >> f; } +$1 == "f" && $6 ~ "etc/pcp.sh" { printf ("%%%%config ") >> f; } +$1 == "f" { + for (i=0; i < nconf; i++) { + if ($6 ~ conf[i]) { + printf ("%%%%config(noreplace) ") >> f; + break; + } + } + if (match ($6, "'$PCP_MAN_DIR'") || match ($6, "'$PCP_DOC_DIR'")) { + printf ("%%%%doc ") >> f; + } + printf ("%%%%attr(%s,%s,%s) %s\n", $2, $3, $4, $6) >> f } +$1 == "l" { print "%attr(0777,root,root)", $3 >> f }' + +%pre testsuite +test -d @pcp_var_dir@/testsuite || mkdir -p -m 755 @pcp_var_dir@/testsuite +getent group pcpqa >/dev/null || groupadd -r pcpqa +getent passwd pcpqa >/dev/null || \ + useradd -c "PCP Quality Assurance" -g pcpqa -d @pcp_var_dir@/testsuite -M -r -s /bin/bash pcpqa 2>/dev/null +chown -R pcpqa:pcpqa @pcp_var_dir@/testsuite 2>/dev/null +exit 0 + +%post testsuite +chown -R pcpqa:pcpqa @pcp_var_dir@/testsuite 2>/dev/null + +%pre +getent group pcp >/dev/null || groupadd -r pcp +getent passwd pcp >/dev/null || \ + useradd -c "Performance Co-Pilot" -g pcp -d @pcp_var_dir@ -M -r -s /sbin/nologin pcp +# new directories; they should match /etc/pcp.conf settings after install +PCP_SYSCONF_DIR=@pcp_sysconf_dir@ +PCP_LOG_DIR=@pcp_log_dir@ +PCP_ETC_DIR=@pcp_etc_dir@ +# rename crontab files to align with current Fedora packaging guidelines +for crontab in pmlogger pmie +do + test -f "$PCP_ETC_DIR/cron.d/$crontab" || continue + mv -f "$PCP_ETC_DIR/cron.d/$crontab" "$PCP_ETC_DIR/cron.d/pcp-$crontab" +done +# produce a script to run post-install to move configs to their new homes +save_configs_script() +{ + _new="$1" + shift + for _dir + do + [ "$_dir" = "$_new" ] && continue + if [ -d "$_dir" ] + then + ( cd "$_dir" ; find . -type f -print ) | sed -e 's/^\.\///' \ + | while read _file + do + _want=true + if [ -f "$_new/$_file" ] + then + # file exists in both directories, pick the more + # recently modified one + _try=`find "$_dir/$_file" -newer "$_new/$_file" -print` + [ -n "$_try" ] || _want=false + fi + $_want && echo cp -p "$_dir/$_file" "$_new/$_file" + done + fi + done +} +# migrate and clean configs if we have had a previous in-use installation +[ -d "$PCP_LOG_DIR" ] || exit 0 # no configuration file upgrades required +rm -f "$PCP_LOG_DIR/configs.sh" +for daemon in pmcd pmie pmlogger pmproxy +do + save_configs_script >> "$PCP_LOG_DIR/configs.sh" "$PCP_SYSCONF_DIR/$daemon" \ + /var/lib/pcp/config/$daemon /etc/$daemon /etc/pcp/$daemon /etc/sysconfig/$daemon +done +exit 0 + +%if @have_libmicrohttpd@ == 1 +%preun webapi +if [ "$1" -eq 0 ] +then + %if "@enable_systemd@" == "true" + systemctl --no-reload disable pmwebd.service >/dev/null 2>&1 + systemctl stop pmwebd.service >/dev/null 2>&1 + %else + /sbin/service pmwebd stop >/dev/null 2>&1 + /sbin/chkconfig --del pmwebd >/dev/null 2>&1 + %endif +fi + +%post webapi +chown -R pcp:pcp "$PCP_LOG_DIR/pmwebd" 2>/dev/null +%if "@enable_systemd@" == "true" + systemctl condrestart pmwebd.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmwebd >/dev/null 2>&1 && \ + /sbin/service pmwebd condrestart +%endif +%endif + +%if "@BUILD_PMMGR@" == "yes" +%preun manager +if [ "$1" -eq 0 ] +then + %if "@enable_systemd@" == "true" + systemctl --no-reload disable pmmgr.service >/dev/null 2>&1 + systemctl stop pmmgr.service >/dev/null 2>&1 + %else + /sbin/service pmmgr stop >/dev/null 2>&1 + /sbin/chkconfig --del pmmgr >/dev/null 2>&1 + %endif +fi + +%post manager +chown -R pcp:pcp "$PCP_LOG_DIR/pmmgr" 2>/dev/null +%if "@enable_systemd@" == "true" + systemctl condrestart pmmgr.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmmgr >/dev/null 2>&1 + /sbin/service pmmgr condrestart +%endif +%endif + +%preun +if [ "$1" -eq 0 ] +then + # stop daemons before erasing the package + %if "@enable_systemd@" == "true" + systemctl --no-reload disable pmlogger.service >/dev/null 2>&1 + systemctl --no-reload disable pmie.service >/dev/null 2>&1 + systemctl --no-reload disable pmproxy.service >/dev/null 2>&1 + systemctl --no-reload disable pmcd.service >/dev/null 2>&1 + + systemctl stop pmlogger.service >/dev/null 2>&1 + systemctl stop pmie.service >/dev/null 2>&1 + systemctl stop pmproxy.service >/dev/null 2>&1 + systemctl stop pmcd.service >/dev/null 2>&1 + %else + /sbin/service pmlogger stop >/dev/null 2>&1 + /sbin/service pmie stop >/dev/null 2>&1 + /sbin/service pmproxy stop >/dev/null 2>&1 + /sbin/service pmcd stop >/dev/null 2>&1 + + /sbin/chkconfig --del pcp >/dev/null 2>&1 + /sbin/chkconfig --del pmcd >/dev/null 2>&1 + /sbin/chkconfig --del pmlogger >/dev/null 2>&1 + /sbin/chkconfig --del pmie >/dev/null 2>&1 + /sbin/chkconfig --del pmproxy >/dev/null 2>&1 + %endif + # cleanup namespace state/flag, may still exist + PCP_PMNS_DIR=@pcp_var_dir@/pmns + rm -f "$PCP_PMNS_DIR/.NeedRebuild" >/dev/null 2>&1 +fi + +%post +PCP_PMNS_DIR=@pcp_var_dir@/pmns +PCP_LOG_DIR=@pcp_log_dir@ +# restore saved configs, if any +test -s "$PCP_LOG_DIR/configs.sh" && source "$PCP_LOG_DIR/configs.sh" +rm -f $PCP_LOG_DIR/configs.sh + +# migrate old to new temp dir locations within the same filesystem) +migrate_tempdirs() +{ + _sub="$1" + _new_tmp_dir=%{_tmpdir} + _old_tmp_dir=%{_localstatedir}/tmp + + for d in "$_old_tmp_dir/$_sub" ; do + test -d "$d" -a -k "$d" || continue + cd "$d" || continue + for f in * ; do + [ "$f" != "*" ] || continue + source="$d/$f" + target="$_new_tmp_dir/$_sub/$f" + [ "$source" != "$target" ] || continue + [ -f "$target" ] || mv -fu "$source" "$target" + done + cd && rmdir "$d" 2>/dev/null + done +} +for daemon in mmv pmdabash pmie pmlogger +do + migrate_tempdirs $daemon +done +chown -R pcp:pcp "$PCP_LOG_DIR/pmcd" 2>/dev/null +chown -R pcp:pcp "$PCP_LOG_DIR/pmlogger" 2>/dev/null +chown -R pcp:pcp "$PCP_LOG_DIR/pmie" 2>/dev/null +chown -R pcp:pcp "$PCP_LOG_DIR/pmproxy" 2>/dev/null +touch "$PCP_PMNS_DIR/.NeedRebuild" +chmod 644 "$PCP_PMNS_DIR/.NeedRebuild" +%if "@enable_systemd@" == "true" + systemctl condrestart pmcd.service >/dev/null 2>&1 + systemctl condrestart pmlogger.service >/dev/null 2>&1 + systemctl condrestart pmie.service >/dev/null 2>&1 + systemctl condrestart pmproxy.service >/dev/null 2>&1 +%else + /sbin/chkconfig --add pmcd >/dev/null 2>&1 + /sbin/service pmcd condrestart + /sbin/chkconfig --add pmlogger >/dev/null 2>&1 + /sbin/service pmlogger condrestart + /sbin/chkconfig --add pmie >/dev/null 2>&1 + /sbin/service pmie condrestart + /sbin/chkconfig --add pmproxy >/dev/null 2>&1 + /sbin/service pmproxy condrestart +%endif + +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%files -f base_files.rpm +%defattr(-,root,root) + +%files conf -f cfg_files.rpm +%defattr(-,root,root) + +%files libs -f libs_files.rpm +%defattr(-,root,root) + +%files libs-devel -f devel_files.rpm +%defattr(-,root,root) + +%files doc -f docs_files.rpm +%defattr(-,root,root) + +%if "@enable_qt@" == "true" +%files gui -f gui_files.rpm +%defattr(-,root,root) +%endif + +%if @have_libmicrohttpd@ == 1 +%files webapi -f webapi_files.rpm +%defattr(-,root,root) +%endif + +%if "@BUILD_PMMGR@" == "yes" +%files manager -f manager_files.rpm +%defattr(-,root,root) +%endif + +%files testsuite -f testsuite_files.rpm +%defattr(-,pcpqa,pcpqa) + +%if "@enable_papi@" == "enable_papi" +%files pmda-papi -f pmda_papi_files.rpm +%defattr(-,root,root) +%endif + +%if "@pmda_infiniband@" == "infiniband" +%files pmda-infiniband -f pmda_infiniband_files.rpm +%defattr(-,root,root) +%endif + +%files import-sar2pcp -f import_sar2pcp_files.rpm +%defattr(-,root,root) + +%files import-iostat2pcp -f import_iostat2pcp_files.rpm +%defattr(-,root,root) + +%files import-sheet2pcp -f import_sheet2pcp_files.rpm +%defattr(-,root,root) + +%files import-mrtg2pcp -f import_mrtg2pcp_files.rpm +%defattr(-,root,root) + +%files import-collectl2pcp -f import_collectl2pcp_files.rpm +%defattr(-,root,root) + +%files -n perl-PCP-PMDA -f perl-pcp-pmda.list +%defattr(-,root,root) + +%files -n perl-PCP-MMV -f perl-pcp-mmv.list +%defattr(-,root,root) + +%files -n perl-PCP-LogImport -f perl-pcp-logimport.list +%defattr(-,root,root) + +%files -n perl-PCP-LogSummary -f perl-pcp-logsummary.list +%defattr(-,root,root) + +%files -n python-pcp -f python-pcp.list.rpm +%defattr(-,root,root) + diff --git a/build/sun/GNUmakefile b/build/sun/GNUmakefile new file mode 100644 index 0000000..4b111af --- /dev/null +++ b/build/sun/GNUmakefile @@ -0,0 +1,62 @@ +# +# Copyright (c) 2013 Red Hat. +# Copyright (c) 2009 Max Matveev. 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 + +LSRCFILES = pcp.xml preinstall postinstall preremove +LDIRT += pkginfo proto pcp pcp-$(PACKAGE_VERSION) +PACKAGE_ARCH = $(shell uname -p) + +default install default_pcp : + +install_pcp : +ifeq "$(TARGET_OS)" "solaris" + $(INSTALL) -m644 pcp.xml /var/svc/manifest/application/pcp.xml +endif + +pack_pcp : proto pkginfo + @rm -rf pcp + $(PKGMK) -b $${DIST_ROOT} -d . -f proto + pkgtrans . $(PACKAGE_NAME)-$(PACKAGE_VERSION) $(PACKAGE_NAME) + +proto : $(_FORCE) + @rm -f $@ + @sort -u ../pack_pcp.bin | \ + awk 'BEGIN { print "i pkginfo=pkginfo"; \ + print "i preremove=preremove"; \ + print "i preinstall=preinstall"; \ + print "i postinstall=postinstall"; \ + } \ + $$1 == "l" {printf "s none %s=%s\n", substr($$3, 2), $$2; next; } \ + {printf "%s none %s 0%d %s %s\n", \ + $$1, substr($$NF, 2) , $$2, $$3, $$4}' > $@ + +pkginfo : $(_FORCE) + @rm -f $@ + @echo "PKG=$(PACKAGE_NAME)" > $@ + @echo "NAME=Performance Co-Pilot" >> $@ + @echo "ARCH=$(PACKAGE_ARCH)" >> $@ + @echo "VERSION=$(PACKAGE_VERSION)" >> $@ + @echo "EMAIL=pcp@mail.performancecopilot.org" >> $@ + @echo "CATEGORY=application" >> $@ + @echo "BASEDIR=/" >> $@ + @echo "CLASSES=application none" >> $@ +ifneq "$(GIT)" "" + @echo "PSTAMP="`$(GIT) log -n1 --pretty=format:%H` >> $@ +endif + +include $(BUILDRULES) + diff --git a/build/sun/README b/build/sun/README new file mode 100644 index 0000000..e360316 --- /dev/null +++ b/build/sun/README @@ -0,0 +1,27 @@ +Instructions for installing Performance Co-Pilot (PCP) from a Solaris package + +If PCP is delivered as a Solaris package, there will be a package +datastream file in this directory named pcp-<version_number> + +There will also be tar files in the sibling ../tar directory: + +pcp-<version_number>-<build>.src.tar.gz all of the source +pcp-<version_number>-<build>.tar.gz a binary distribution + +To install or upgrade, run the following commands as "root": + + # /usr/sbin/pkgadd -d pcp-* all + +To start pmcd (and enable persistent restart after reboot) + + # /usr/sbin/svcadm enable pcp/pcp + +Similarly (if needed) ... + + # /usr/sbin/svcadm enable pcp/pmie + # /usr/sbin/svcadm enable pcp/pmwebd + # /usr/sbin/svcadm enable pcp/pmproxy + +To remove PCP, run the following command as "root": + + # /usr/sbin/pkgrm pcp diff --git a/build/sun/pcp.xml b/build/sun/pcp.xml new file mode 100644 index 0000000..1094077 --- /dev/null +++ b/build/sun/pcp.xml @@ -0,0 +1,173 @@ +<?xml version="1.0"?> +<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1"> +<!-- + Copyright (c) 2009 Max Matveev. All rights reserved. +--> + +<service_bundle type='manifest' name='pcp'> + +<service name='application/pcp/pcp' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pcp start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pcp stop' + timeout_seconds='60' /> + <property_group name='startd' type='framework'> + <propval name='ignore_error' type='astring' value='core' /> + </property_group> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Legacy scripts + </loctext> + </common_name> + <documentation> + <manpage title='pcpinfo' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> + +<service name='application/pcp/pmcd' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pmcd start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pmcd stop' + timeout_seconds='60' /> + <property_group name='startd' type='framework'> + <propval name='ignore_error' type='astring' value='core' /> + </property_group> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Collector Daemon + </loctext> + </common_name> + <documentation> + <manpage title='pmcd' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> + +<service name='application/pcp/pmlogger' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pmlogger start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pmlogger stop' + timeout_seconds='60' /> + <property_group name='startd' type='framework'> + <propval name='ignore_error' type='astring' value='core' /> + </property_group> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Logger + </loctext> + </common_name> + <documentation> + <manpage title='pmlogger' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> + +<service name='application/pcp/pmie' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pmie start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pmie stop' + timeout_seconds='60' /> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Inference Engine + </loctext> + </common_name> + <documentation> + <manpage title='pmie' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> + +<service name='application/pcp/pmwebd' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pmwebd start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pmwebd stop' + timeout_seconds='60' /> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Web Daemon + </loctext> + </common_name> + <documentation> + <manpage title='pmwebd' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> + +<service name='application/pcp/pmproxy' type='service' version='1'> + <create_default_instance enabled='false' /> + <single_instance /> + <dependency name='root' grouping='require_all' restart_on='none' + type='service'> + <service_fmri value='svc:/system/filesystem/local:default'/> + <service_fmri value='svc:/milestone/network:default'/> + </dependency> + <exec_method type='method' name='start' exec='/etc/init.d/pmproxy start' + timeout_seconds='60' /> + <exec_method type='method' name='stop' exec='/etc/init.d/pmproxy stop' + timeout_seconds='60' /> + <stability value='Unstable' /> + <template> + <common_name> + <loctext xml:lang='C'> + Performance Co-Pilot Proxy Daemon + </loctext> + </common_name> + <documentation> + <manpage title='pmproxy' section='1' + manpath='/usr/share/man' /> + </documentation> + </template> +</service> +</service_bundle> diff --git a/build/sun/postinstall b/build/sun/postinstall new file mode 100755 index 0000000..693f0ce --- /dev/null +++ b/build/sun/postinstall @@ -0,0 +1,48 @@ +#!/bin/sh +# +# Import PCP services into SMF but do not start them - let admin do it +# when she's ready. +# + +export PATH=/usr/sbin:$PATH + +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 + +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 + +touch /var/lib/pcp/pmns/.NeedRebuild 2>/dev/null +chmod 644 /var/lib/pcp/pmns/.NeedRebuild 2>/dev/null +svccfg import /var/svc/manifest/application/pcp.xml + diff --git a/build/sun/preinstall b/build/sun/preinstall new file mode 100755 index 0000000..aa6fce9 --- /dev/null +++ b/build/sun/preinstall @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Install unprivileged user (and group) account for PCP daemons. +# + +export PATH=/usr/sbin:$PATH +getent group pcp >/dev/null || groupadd pcp +getent passwd pcp >/dev/null || \ + useradd -c "Performance Co-Pilot" -g pcp -d /var/lib/pcp -s /usr/bin/false pcp diff --git a/build/sun/preremove b/build/sun/preremove new file mode 100755 index 0000000..221ce4c --- /dev/null +++ b/build/sun/preremove @@ -0,0 +1,43 @@ +#!/bin/sh +# +# Stop PCP related services before removing the package +# + +export PATH=/usr/sbin:$PATH + +svcs -H svc:/application/pcp/\* \ +| while read state ts svc; do + if [ "$state" = "online" ] ; then + svcadm -v disable -s $svc + fi + svccfg delete -f $svc +done + +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 diff --git a/build/tar/GNUmakefile b/build/tar/GNUmakefile new file mode 100644 index 0000000..1b95b7c --- /dev/null +++ b/build/tar/GNUmakefile @@ -0,0 +1,51 @@ +# +# 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 +-include ./GNUlocaldefs +SCRIPTS = $(TOPDIR)/build + +LSRCFILES = remove README \ + preinstall.head.in preinstall.head preinstall.tail \ + postinstall.head.in postinstall.head postinstall.tail + +LDIRT = $(wildcard pcp*.tar.gz pcp*.md5sum.src) \ + preinstall preinstall.head postinstall postinstall.head + +default install install_pcp default_pcp : preinstall postinstall + +preinstall: preinstall.head $(SCRIPTS)/cleanconfigs preinstall.tail + rm -f $@ + cat preinstall.head $(SCRIPTS)/cleanconfigs preinstall.tail > $@ + chmod ugo+x $@ + +postinstall: postinstall.head $(SCRIPTS)/cleantmpdirs postinstall.tail + rm -f $@ + cat postinstall.head $(SCRIPTS)/cleantmpdirs postinstall.tail > $@ + chmod ugo+x $@ + +# Note on sed below +# for f and l lines of manifest, want the last word (target name), +# stripped of leading / +# +.PHONY: pack_pcp +pack_pcp : + @ BINTAR=$(PACKAGE_NAME)-$(PACKAGE_VERSION)-$(PACKAGE_BUILD).tar.gz; \ + HERE=`pwd`; cd $${DIST_ROOT:-/}; \ + sort -u $$DIST_MANIFEST | sed -n -e '/^[fl]/s/.* \/*//p' \ + | $(TAR) -T - -cf - \ + | gzip > $$HERE/$$BINTAR; echo Wrote: $$HERE/$$BINTAR + +include $(BUILDRULES) diff --git a/build/tar/README b/build/tar/README new file mode 100644 index 0000000..f0c08fe --- /dev/null +++ b/build/tar/README @@ -0,0 +1,19 @@ +Instructions for installing Performance Co-Pilot (PCP) from a tarball package + +If PCP is delivered as a tarball, there will be 2 compressed tar files +in this directory + +pcp-<version_number>-<build>.src.tar.gz all of the source +pcp-<version_number>-<build>.tar.gz a binary distribution + +To install or upgrade, run the following commands as "root": + + # ./preinstall + # here=`pwd` + # ( cd /; tar xpf $here/pcp-*-[0-9]*.tar.gz ) + # ./postinstall + +To remove PCP, run the following command as "root": + + # ./remove + diff --git a/build/tar/checkmodes b/build/tar/checkmodes new file mode 100755 index 0000000..81fd730 --- /dev/null +++ b/build/tar/checkmodes @@ -0,0 +1,46 @@ +#!/bin/sh +# +# very crude ... use the debian postinst scripts as the reference +# and check ownership and mode on the local filesystem +# + +cat ../../debian/*postinst* \ +| sed -n \ + -e '/^#/d' \ + -e '/chown pcp/{ +s/chown // +s/:/ / +p +}' \ +| while read owner group path +do + echo -n "$path: " + if [ -d $path ] + then + # expect + # drwxrwxr-x 2 pcp pcp 4096 Aug 24 06:22 /etc/pcp/pmie + # + if ls -ld $path | grep -q "^drwxrwxr-x *[0-9][0-9]* *$owner *$group " + then + echo OK + else + echo -n "BAD " + ls -ld $path + fi + elif [ -f $path ] + then + # expect + # -rw-rw-r-- 1 pcp pcp 1729 Aug 8 07:24 /etc/pcp/pmie/control + # + if ls -l $path | grep -q "^-rw-rw-r-- *[0-9][0-9]* *$owner *$group " + then + echo OK + else + echo -n "BAD " + ls -l $path + fi + else + echo "Eh? missing" + fi +done + diff --git a/build/tar/postinstall.head.in b/build/tar/postinstall.head.in new file mode 100644 index 0000000..1de0232 --- /dev/null +++ b/build/tar/postinstall.head.in @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Generic script to be run after installing PCP from a tarball +# + +# The new place ... this should match the setting in /etc/pcp.conf +# _after_ the installation +# +PCP_TMP_DIR=@pcp_tmp_dir@ diff --git a/build/tar/postinstall.tail b/build/tar/postinstall.tail new file mode 100755 index 0000000..3d3ee66 --- /dev/null +++ b/build/tar/postinstall.tail @@ -0,0 +1,230 @@ +sts=0 +tmp=/var/tmp +trap "rm -f $tmp.*; exit \$sts" 0 1 2 3 15 + +if [ ! -f /etc/pcp.env ] +then + # PCP not installed ... seems odd + # + echo "Error: /etc/pcp.env not installed!" + sts=1 + exit +fi + +. /etc/pcp.env + +# no need to touch $PCP_VAR_DIR/pmns/.NeedRebuild as this file +# is included in the tarball +# + +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 diff "$conf" "$conf.pre" >/dev/null 2>&1 + then + rm -f "$conf.pre" + else + mv "$conf" "$conf.dist" + mv "$conf.pre" "$conf" + echo "Warning: $conf: original restored, new version in $conf.dist" + fi + fi +done + +_clean_tmpdirs $PCP_TMP_DIR /var/tmp mmv pmdabash pmie pmlogger + +# set up pcp and pcpqa users +# +if [ -f /etc/passwd ] +then + # things like useradd may be hiding in odd places ... + # + PATH=$PATH:/usr/sbin + # common command-line options + # -c comment + # -g primary_group_name + # -d home_directory + # -m create home directory + # -s shell + # command-line variations + # do not create home directory + # -M for Linux, nothing for netbsd + # system account (no aging, sys gid/uid range, no home dir creation) + # -r for Linux, not supported for netbsd + # + if [ $PCP_PLATFORM = netbsd ] + then + no_home_dir='' + sys_acc='' + nologin=/sbin/nologin + bash=/usr/pkg/bin/bash + elif [ $PCP_PLATFORM = solaris ] + then + no_home_dir='' + sys_acc='' + nologin=`which false` + bash=`which bash` + else + no_home_dir='-M' + sys_acc='-r' + nologin=/usr/sbin/nologin + bash=/bin/bash + fi + if grep '^pcp:' /etc/group >/dev/null + then + : + else + if which groupadd >/dev/null 2>&1 + then + groupadd $sys_acc pcp + else + if [ $PCP_PLATFORM = freebsd ] + then + : adduser does this for us ... + else + echo "postinstall: Error: don't know how to add group \"pcp\"" + sts=1 + exit + fi + fi + fi + if grep '^pcp:' /etc/passwd >/dev/null + then + : + else + if which useradd >/dev/null 2>&1 + then + useradd -c "Performance Co-Pilot" -g pcp -d /var/lib/pcp $no_home_dir $sys_acc -s $nologin pcp + elif which adduser >/dev/null 2>&1 + then + echo "pcp::::::Performance Co-Pilot:/var/lib/pcp::" \ + | adduser -f - -w no + else + echo "postinstall: Error: don't know how to add user \"pcp\"" + sts=1 + exit + fi + fi + if grep '^pcpqa:' /etc/group >/dev/null + then + : + else + if which groupadd >/dev/null 2>&1 + then + groupadd $sys_acc pcpqa + else + if [ $PCP_PLATFORM = freebsd ] + then + : adduser does this for us ... + else + echo "postinstall: Error: don't know how to add group \"pcpqa\"" + sts=1 + exit + fi + fi + fi + if grep '^pcpqa:' /etc/passwd >/dev/null + then + : + else + if which useradd >/dev/null 2>&1 + then + useradd -c "PCP Quality Assurance" -g pcpqa -d /var/lib/pcp/testsuite $no_home_dir $sys_acc -s $bash pcpqa + elif which adduser >/dev/null 2>&1 + then + # no bash for default FreeBSD + bash=`which sh` + echo "pcpqa::::::PCP Quality Assurance:/var/lib/pcp/testsuite:$bash:" \ + | adduser -f - -w no + else + echo "postinstall: Error: don't know how to add user \"pcpqa\"" + sts=1 + exit + fi + fi +fi + +# permissions ... +# +# pcp:pcp and mode 775 directories +# +for dir in $PCP_LOG_DIR \ + $PCP_LOG_DIR/pmcd $PCP_LOG_DIR/pmie $PCP_LOG_DIR/pmwebd \ + $PCP_LOG_DIR/pmproxy $PCP_LOG_DIR/pmlogger $PCP_LOG_DIR/pmmgr \ + $PCP_RUN_DIR \ + $PCP_VAR_DIR/tmp $PCP_VAR_DIR/tmp/pmie $PCP_VAR_DIR/tmp/pmlogger \ + $PCP_VAR_DIR/config/pmda \ + $PCP_SYSCONF_DIR/pmie $PCP_SYSCONF_DIR/pmlogger +do + [ -d $dir ] || mkdir $dir + chmod 775 $dir + chown pcp:pcp $dir +done + +# pcp:pcp and mode 664 files +# +for file in $PCP_SYSCONF_DIR/pmie/control $PCP_SYSCONF_DIR/pmlogger/control +do + [ -f $file ] || continue + chmod 664 $file + chown pcp:pcp $file +done + +# pcpqa:pcpqa and mode 755 dir and all below there +# +[ -d $PCP_VAR_DIR/testsuite ] || mkdir $PCP_VAR_DIR/testsuite +chmod 775 $PCP_VAR_DIR/testsuite +chown -R pcpqa:pcpqa $PCP_VAR_DIR/testsuite + +# Note: do not start pcp, pmwebd, pmproxy nor pmmgr by default +# +if which svcs >/dev/null 2>&1 +then + # in Solaris land, we need an XML file to control all of this + # + if [ ! -f ../sun/pcp.xml ] + then + echo "Warning: Solaris SMF XML missing: ../sun/pcp.xml" + else + svccfg import ../sun/pcp.xml + fi +else + for svc in pcp pmcd pmlogger pmproxy pmwebd pmmgr + do + if which rc-update >/dev/null 2>&1 + then + if rc-update show | grep " $svc " >/dev/null 2>&1 + then + # service is already installed ... + # + rc-update delete $svc + fi + rc-update add $svc + fi + + # disable or enable and start as required by default policy + case $svc + in + pmcd|pmlogger|pmie) + if which rc-update >/dev/null 2>&1 + then + : TODO? + fi + $PCP_RC_DIR/$svc start + ;; + *) + if which rc-update >/dev/null 2>&1 + then + : TODO? + fi + ;; + esac + + done +fi + +exit diff --git a/build/tar/preinstall.head.in b/build/tar/preinstall.head.in new file mode 100644 index 0000000..362730f --- /dev/null +++ b/build/tar/preinstall.head.in @@ -0,0 +1,30 @@ +#!/bin/sh +# +# Generic script to be run before installing PCP from a tarball +# + +if [ ! -f /etc/pcp.conf ] +then + echo "No /etc/pcp.conf ... assume PCP not installed or disabled" + exit 0 +fi + +# The new place ... this should match the setting in /etc/pcp.conf +# _after_ the installation +# +PCP_SYSCONF_DIR=@pcp_sysconf_dir@ +# and same here ... +# +PCP_LOG_DIR=@pcp_log_dir@ +[ -d "$PCP_LOG_DIR" ] || mkdir "$PCP_LOG_DIR" + +# and some other things we need ... +# +PCP_RC_DIR=@pcp_rc_dir@ +PCP_PMCDCONF_PATH=@pcp_pmcdconf_path@ +PCP_PMCDOPTIONS_PATH=@pcp_pmcdoptions_path@ +PCP_PMCDRCLOCAL_PATH=@pcp_pmcdrclocal_path@ +PCP_PMIECONTROL_PATH=@pcp_pmiecontrol_path@ +PCP_PMLOGGERCONTROL_PATH=@pcp_pmloggercontrol_path@ +PCP_PMPROXYOPTIONS_PATH=@pcp_pmproxyoptions_path@ +PCP_PMWEBDOPTIONS_PATH=@pcp_pmwebdoptions_path@ diff --git a/build/tar/preinstall.tail b/build/tar/preinstall.tail new file mode 100644 index 0000000..f82090c --- /dev/null +++ b/build/tar/preinstall.tail @@ -0,0 +1,35 @@ +# migrate and clean configs +echo >>$PCP_LOG_DIR/install.log +date >>$PCP_LOG_DIR/install.log +for base in pmcd pmie pmlogger pmwebd pmproxy +do + _clean_configs -v 2>>$PCP_LOG_DIR/install.log $PCP_SYSCONF_DIR/$base /var/lib/pcp/config/$base /etc/$base /etc/pcp/$base /etc/sysconfig/$base +done + +for svc in pmproxy pmwebd pmie pmlogger pmcd pcp +do + [ -f $PCP_RC_DIR/$svc ] && $PCP_RC_DIR/$svc stop + if which rc-update >/dev/null 2>&1 + then + if rc-update show | grep " $svc " >/dev/null 2>&1 + then + # service is installed ... + # + rc-update delete $svc + fi + fi +done + +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" ] + then + rm -f "$conf.pre" + mv "$conf" "$conf.pre" + fi +done + +exit 0 diff --git a/build/tar/remove b/build/tar/remove new file mode 100755 index 0000000..6ebec06 --- /dev/null +++ b/build/tar/remove @@ -0,0 +1,122 @@ +#!/bin/sh +# +# Generic script to remove PCP after installation from a tarball +# +# exit status +# 0 all OK +# 1 warnings +# 2 errors +# + +if [ ! -f /etc/pcp.env ] +then + # PCP not installed before, do nothing + # + exit 0 +fi + +. /etc/pcp.env + +# debugging +# +RM="echo + rm" +RMDIR="echo + rmdir" +WARN="echo Warning:" + +# do the work +# +RM=rm +RMDIR=rmdir + +for svc in pmproxy pmwebd pmie pcp +do + [ -f $PCP_RC_DIR/$svc ] && $PCP_RC_DIR/$svc stop + if which rc-update >/dev/null 2>&1 + then + rc-update delete $svc + fi +done + +if [ ! -f pcp-*[0-9].tar.gz ] +then + echo "Error: cannot find tarball matching pcp-*[0-9].tar.gz" + exit 1 +fi + +sts=0 + +tar tf pcp-*[0-9].tar.gz \ +| sed -e 's/^\.//' -e 's/^[^/]/\/&/' \ +| while read file +do + if [ -f $file -o -L $file ] + then + if $RM $file + then + : + else + sts=2 + fi + else + $WARN "file $file is missing" + [ $sts = 0 ] && sts=1 + fi +done + +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 + rm -f "$conf.pre" "$conf.dist" +done + +_rmdir_if_empty() +{ + if [ "`echo $1/*`" = "$1/*" ] + then + if $RMDIR "$1" + then + : + else + sts=2 + fi + else + # directory is not empty + $WARN "directory $1 is not empty, not removed" + [ $sts = 0 ] && sts=1 + fi +} + +# some special case cleanup in $PCP_VAR_DIR for files that +# are known/expected to be created after the installation and +# so not part of the tarball +# +$RM -rf $PCP_VAR_DIR/config/pmda +$RM -rf $PCP_VAR_DIR/pmns +$RM -rf $PCP_VAR_DIR/pmdas/simple +$RM -rf $PCP_VAR_DIR/pmdas/sample +$RM -f $PCP_VAR_DIR/pmdas/*/*.pag $PCP_VAR_DIR/pmdas/*/*.dir $PCP_VAR_DIR/pmdas/*/*.log + +# we leave $PCP_LOG_DIR but clean up everything else that is not +# empty ... order is a bit tricky, make sure possible leaf directories +# come before any parent directories +# +for dir in $PCP_BINADM_DIR $PCP_INC_DIR $PCP_MPI_DIRS \ + $PCP_RUN_DIR $PCP_PMDAS_DIR $PCP_VAR_DIR \ + $PCP_DOC_DIR $PCP_DEMOS_DIR $PCP_SHARE_DIR +do + if [ -d "$dir" ] + then + find "$dir" -depth -type d \ + | while read subdir + do + _rmdir_if_empty "$subdir" + done + fi +done + +# TODO +# if $PCP_SYSCONFIG_DIR is not empty (RH sysconfig only?) what to do? + +exit $sts |