3138c7124f
based on a submission by seb@gosh.todesplanet.de urlview is a curses program for extracting URLs from text files and displaying a menu from which you can select a specific URL to view using your favorite browser program.
73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
#!/bin/sh
|
|
# $OpenBSD: INSTALL,v 1.1.1.1 2000/08/13 00:06:21 naddy Exp $
|
|
#
|
|
# Pre/post-installation setup of urlview
|
|
|
|
# exit on errors, use a sane path and install prefix
|
|
#
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
CONFIG_DIR=${SYSCONFDIR}
|
|
SAMPLE_CONFIG_DIR=$PREFIX/share/examples/urlview
|
|
|
|
# Function: install configuration files
|
|
#
|
|
do_install_conf()
|
|
{
|
|
install -d -o root -g wheel ${CONFIG_DIR}
|
|
install -o root -g wheel ${SAMPLE_CONFIG_DIR}/sample.urlview \
|
|
${CONFIG_DIR}/urlview.conf
|
|
echo
|
|
echo "+---------------"
|
|
echo "| The $1 configuration files have been installed in ${CONFIG_DIR}."
|
|
echo "| Please view these files and change the configuration to meet"
|
|
echo "| your needs."
|
|
echo "+---------------"
|
|
echo
|
|
}
|
|
|
|
# Function: tell the user what they need to do to use the port just installed
|
|
#
|
|
do_notice_conf()
|
|
{
|
|
echo
|
|
echo "+---------------"
|
|
echo "| The existing $1 configuration files in ${CONFIG_DIR} have NOT"
|
|
echo "| been changed. You may want to compare them to the current samples"
|
|
echo "| in ${SAMPLE_CONFIG_DIR}, and update your configuration files"
|
|
echo "| as needed."
|
|
echo "+---------------"
|
|
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)
|
|
: nothing to pre-install for this port
|
|
;;
|
|
POST-INSTALL)
|
|
if [ ! -d ${CONFIG_DIR} ]; then
|
|
do_install_conf "$1"
|
|
elif [ ! -f ${CONFIG_DIR}/urlview.conf ]; then
|
|
do_install_conf "$1"
|
|
else
|
|
do_notice_conf "$1"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|