#! /bin/sh
# /usr/lib/emacsen-common/packages/install/goby
set -e

FLAVOR=$1
PACKAGE=goby

case $FLAVOR in
    *xemacs*|emacs20|emacs19|mule2)
    exit 0
    ;;
esac

ELCDIR=/usr/share/$FLAVOR/site-lisp/$PACKAGE
ELDIR=/usr/share/$PACKAGE
TOELDIR=../../../$PACKAGE
ELCSTAMP=$ELCDIR/compile-stamp
if [ -f "$ELCSTAMP" ]; then
    if [ -z "`find "$ELDIR/$PACKAGE.el" -newer "$ELCSTAMP"`" ]; then
	echo "install/$PACKAGE: already byte-compiled for $FLAVOR, skipped"
	exit 0
    fi
    rm -f "$ELCSTAMP"
fi

LOG="$ELCDIR/CompilationLog"
echo "install/$PACKAGE: byte-compiling for $FLAVOR"

cd "$ELDIR"
FILES=`echo *.el`
if [ ! -d "$ELCDIR" ]; then
    mkdir "$ELCDIR"
    chmod 755 "$ELCDIR"
fi
cd "$ELCDIR"
rm -f *.elc __myinit.el
for f in $FILES; do
    ln -sf "$TOELDIR/$f" .
done

cat > __myinit.el << EOF
(setq inhibit-automatic-native-compilation t)
(setq native-comp-deferred-compilation nil)
(setq comp-enable-subr-trampolines nil)
(setq load-path (cons "." load-path))
(setq byte-compile-warnings nil)
EOF

FLAGS="-q -no-site-file -batch -l __myinit.el -f batch-byte-compile"
echo "$FLAVOR" $FLAGS $FILES > "$LOG"
set +e
"$FLAVOR" $FLAGS $FILES >> "$LOG" 2>&1
if [ $? -ne 0 ]; then cat "$LOG"; exit 1; fi
set -e
gzip -9f "$LOG"
chmod 644 *.elc

if [ -f /usr/share/emacsen-common/debian-startup.el ] && \
   [ ! -f "/etc/$FLAVOR/site-start.d/50$PACKAGE.el" ] && \
   [ -f "/etc/emacs/site-start.d/50$PACKAGE.el" ] && \
   [ -d "/etc/$FLAVOR/site-start.d" ]; then
    ln -sf "../../emacs/site-start.d/50$PACKAGE.el" "/etc/$FLAVOR/site-start.d/50$PACKAGE.el"
fi

rm -f __myinit.el*

touch "$ELCSTAMP"
exit 0
