#!/bin/sh
# $OpenBSD$
#
# Pre/post-installation setup of babel, stolen from jsyn's siphone scripts

# exit on errors, use a sane path and install prefix

set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}

do_notice()
{
    echo
    echo "+---------------"
    echo "*********************************************************"
    echo "*   Please set the env variable BABEL_DIR to            *"
    echo "*   ${PREFIX}/share/babel before running babel.         *"
    echo "*   For example, put the next line in your .cshrc file: *"
    echo "*       setenv BABEL_DIR ${PREFIX}/share/babel          *"
    echo "*********************************************************"
    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 [ ! -f $CONFIG_FILE ]; then
            do_install $1
        else
            do_notice $1
        fi
        ;;
    *)
        echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
        exit 1
        ;;
esac

exit 0
