0ae1f304d7
-- This package contains the GNOME panel which the area on your desktop from which you can run applications and applets, and perform other tasks. The libpanel-applet library is also in this package. This library allows one to develop small applications which may be embedded in the panel. These are called applets. Several applets are also supplied - the Workspace Switcher, the Window List, the Inbox Monitor, the Clock and the infamous 'Wanda the Fish'. From marcm for gnome2
99 lines
1.9 KiB
Plaintext
99 lines
1.9 KiB
Plaintext
#!/bin/sh
|
|
#
|
|
# $OpenBSD: INSTALL,v 1.1.1.1 2003/01/31 19:05:24 todd Exp $
|
|
|
|
P_NAME=gnome-panel
|
|
|
|
DIRS='
|
|
sound/events
|
|
'
|
|
|
|
FILES='
|
|
sound/events/mailcheck.soundlist
|
|
'
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
do_post() {
|
|
|
|
DEST_PFX=${SYSCONFDIR}
|
|
SOURCE_PFX=${PREFIX}/share/examples/${P_NAME}
|
|
|
|
echo
|
|
echo "+--------------- ${P_NAME}"
|
|
|
|
# install dirs if neccesary
|
|
for d in ${DIRS}; do
|
|
if [ ! -d "${DEST_PFX}/$d" ]; then
|
|
install -d ${DEST_PFX}/$d
|
|
fi
|
|
done
|
|
|
|
# install or take note of existing config files
|
|
for f in ${FILES}; do
|
|
if [ -f "${DEST_PFX}/$f" ]; then
|
|
OLD_CONFS="${OLD_CONFS} $f"
|
|
else
|
|
if ! install -m 644 ${SOURCE_PFX}/$f ${DEST_PFX}/$f; then
|
|
echo "| ERROR: The following file could not be installed, exiting: ${DEST_PFX}/$f"
|
|
exit 1
|
|
fi
|
|
NEW_CONFS="${NEW_CONFS} $f"
|
|
fi
|
|
done
|
|
|
|
# print status report
|
|
if [ -n "${NEW_CONFS}" ]; then
|
|
echo "| The following NEW configuration files have been installed:"
|
|
echo "|"
|
|
for f in ${NEW_CONFS}; do
|
|
echo "| ${DEST_PFX}/$f"
|
|
done
|
|
fi
|
|
|
|
if [ -n "${OLD_CONFS}" ]; then
|
|
if [ -n "${NEW_CONFS}" ]; then
|
|
echo "|"
|
|
fi
|
|
echo "| The following OLD configuration files were found and have NOT been"
|
|
echo "| overwritten:"
|
|
echo "|"
|
|
for f in ${OLD_CONFS}; do
|
|
echo "| ${DEST_PFX}/$f"
|
|
done
|
|
echo "|"
|
|
echo "| You should however manually compare them to their equivalents in "
|
|
echo "|"
|
|
echo "| ${SOURCE_PFX}"
|
|
echo "|"
|
|
echo "| and update your configuration if needed."
|
|
fi
|
|
echo "+--------------- ${P_NAME}"
|
|
echo
|
|
}
|
|
|
|
# verify proper execution
|
|
#
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
do_post
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|