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

FLAVOR=$1
PACKAGE=semi

ELCDIR=/usr/share/$FLAVOR/site-lisp/$PACKAGE
ELDIR=/usr/share/$PACKAGE
ELCSTAMP=$ELCDIR/compile-stamp

case $FLAVOR in
    emacs19|mule2|xemacs20|xemacs19)
    exit 0
    ;;
    *xemacs*)
    mule=`/bin/ls -1 /usr/bin/$FLAVOR*-mule* 2>/dev/null | head -1`
    nomule=`/bin/ls -1 /usr/bin/$FLAVOR*-nomule* 2>/dev/null | head -1`
    if [ -n "$mule" ]; then
	if [ ! -f "/usr/share/$FLAVOR/site-lisp/apel/alist.elc" ]; then
	    inst=/usr/lib/emacsen-common/packages/install/apel
	    if [ ! -x "$inst" ]; then exit 0; fi
	    "$inst" "$FLAVOR"
	fi
	if [ ! -f "/usr/share/$FLAVOR/site-lisp/flim/mime.elc" ]; then
	    inst=/usr/lib/emacsen-common/packages/install/flim
	    if [ ! -x "$inst" ]; then exit 0; fi
	    "$inst" "$FLAVOR"
	fi
	if [ ! -f "$ELCDIR/mime-view.elc" ]; then rm -f "$ELCSTAMP"; fi
    fi
    if [ -n "$nomule" ]; then
	if [ ! -f "/usr/share/$FLAVOR/site-lisp/apel/nomule/alist.elc" ]; then
	    inst=/usr/lib/emacsen-common/packages/install/apel
	    if [ ! -x "$inst" ]; then exit 0; fi
	    "$inst" "$FLAVOR"
	fi
	if [ ! -f "/usr/share/$FLAVOR/site-lisp/flim/nomule/mime.elc" ]; then
	    inst=/usr/lib/emacsen-common/packages/install/flim
	    if [ ! -x "$inst" ]; then exit 0; fi
	    "$inst" "$FLAVOR"
	fi
	if [ ! -f "$ELCDIR/nomule/mime-view.elc" ]; then rm -f "$ELCSTAMP"; fi
	if [ -n "$mule" ]; then
	    EMACSEN="$mule $nomule"
	else
	    EMACSEN="$nomule"
	fi
    else
	EMACSEN=$FLAVOR
    fi
    ;;
    *)
    if [ ! -f "/usr/share/$FLAVOR/site-lisp/apel/alist.elc" ]; then exit 0; fi
    if [ ! -f "/usr/share/$FLAVOR/site-lisp/flim/mime.elc" ]; then exit 0; fi
    EMACSEN=$FLAVOR
    ;;
esac

if [ -f "$ELCSTAMP" ]; then
    if [ -z "`find "$ELDIR/mime-view.el" -newer "$ELCSTAMP"`" ]; then
	echo "install/$PACKAGE: already byte-compiled for $FLAVOR, skipped"
	exit 0
    fi
    rm -f "$ELCSTAMP"
fi

LOG=`mktemp -t elc.XXXXXXXXXXXX`
chmod 644 "$LOG"
echo "install/$PACKAGE: byte-compiling for $FLAVOR, logged in $LOG"

cd "$ELDIR"
LINKS=`echo *.el`
if [ ! -d "$ELCDIR" ]; then
    mkdir "$ELCDIR"
    chmod 755 "$ELCDIR"
fi

for EMACS in $EMACSEN; do
    cd "$ELCDIR"
    TOELDIR=../../../$PACKAGE
    case $EMACS in
	*-nomule*)
	if [ x"$EMACS" != x"$EMACSEN" ]; then
	    if [ ! -d nomule ]; then
		mkdir nomule
		chmod 755 nomule
	    fi
	    cd nomule
	    TOELDIR=../$TOELDIR
	fi
	;;
    esac
    rm -f *.elc __myinit.el
    for f in $LINKS; do
	ln -sf "$TOELDIR/$f" .
    done
    FILES=`echo sig*.el p*.el mime*.el semi*.el mail*.el | sed 's/mime-mc.el//; s/mime-vcard.el//'`
    case $EMACS in
	emacs22|emacs21|emacs20)
	FILES=`echo $FILES | sed 's/mime-pgp.el//'`
	;;
    esac

    cat > __myinit.el << EOF
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/apel" load-path))
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/flim" load-path))
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/bitmap-mule" load-path))
(setq load-path (cons "." load-path))
(setq byte-compile-warnings nil)
EOF
    case $EMACS in
	*-nomule*)
	cat >> __myinit.el << EOF
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/apel/nomule" load-path))
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/flim/nomule" load-path))
(setq load-path (cons "/usr/share/$FLAVOR/site-lisp/bitmap-mule/nomule" load-path))
EOF
	;;
    esac

    FLAGS="-q -no-site-file -batch -l __myinit.el -f batch-byte-compile"
    echo "$EMACS" $FLAGS $FILES >> "$LOG"
    "$EMACS" $FLAGS $FILES >> "$LOG" 2>&1
    chmod 644 *.elc

    rm -f __myinit.el*
done # EMACS in $EMACSEN

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

echo "install/$PACKAGE: deleting $LOG"
rm -f "$LOG"

echo "install/$PACKAGE: byte-compiling for reverse dependency"
pkgs=
for p in wl:wl wl-beta:wl w3m-el:w3m w3m-el-snapshot:w3m cmail t-gnus; do
    pkg=`echo $p | cut -d : -f 1`
    sname=`echo $p | cut -d : -f 2`
    dir=/usr/share/$FLAVOR/site-lisp/$sname
    if [ -n "$sname" ] && [ -d "$dir" ] && [ -f "/usr/lib/emacsen-common/packages/install/$pkg" ]; then
	rm -f "$dir"/*.elc "$dir"/*/*.elc "$dir"/*-stamp "$dir"/*/*-stamp
	pkgs="$pkg $pkgs"
    fi
done
for pkg in $pkgs; do
    "/usr/lib/emacsen-common/packages/install/$pkg" "$FLAVOR"
done

touch "$ELCSTAMP"
exit 0
