This file is indexed.

/usr/lib/emacsen-common/packages/install/bitmap-mule is in bitmap-mule 8.5+0.20030825.0433-14.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh
# /usr/lib/emacsen-common/packages/install/bitmap-mule
set -e

FLAVOR=$1
PACKAGE=bitmap-mule

if [ -z "$FLAVOR" ]; then exit 1; fi
if [ ! -f "/usr/share/$FLAVOR/site-lisp/apel/poe.elc" ]; then exit 0; fi
case $FLAVOR in
    emacs|*xemacs*|emacs19|mule2)
    exit 0
    ;;
esac

ELCDIR=/usr/share/$FLAVOR/site-lisp/$PACKAGE
ELDIR=/usr/share/emacs/site-lisp/$PACKAGE
TOELDIR=../../../emacs/site-lisp/$PACKAGE
SITELISP=/usr/share/$FLAVOR/site-lisp
PIXMAPS_DIR=/usr/share/pixmaps/$PACKAGE
ELCSTAMP=$ELCDIR/compile-stamp
if [ -f "$ELCSTAMP" ]; then
    echo "install/$PACKAGE: already byte-compiled for $FLAVOR, skipped"
    exit 0
fi

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

cd "$ELDIR"
FILES=`echo *.el`
install -m 755 -d "$ELCDIR"
cp BITMAP-* Makefile "$ELCDIR"
cp "$PIXMAPS_DIR/"*.xbm "$ELCDIR"
cd "$ELCDIR"
rm -f *.elc
for f in $FILES; do
    ln -sf "$TOELDIR/$f" .
done

cat << EOF > BITMAP-MK.tmp
(setq load-path (cons "/usr/share/${FLAVOR}/site-lisp/apel" load-path))
EOF
cat BITMAP-MK >> BITMAP-MK.tmp
FLAGS="-q -no-site-file -batch -l BITMAP-MK.tmp"
echo "make EMACS=$FLAVOR LISPDIR=$SITELISP FLAGS=\"$FLAGS\"" >> $LOG 2>&1
make EMACS=$FLAVOR LISPDIR=$SITELISP FLAGS="$FLAGS" >> $LOG 2>&1
rm -f BITMAP-* Makefile *.xbm
chmod 644 *.elc

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

if [ -f "$ELCDIR/bitmap.elc" ]; then
    touch "$ELCSTAMP"
fi
exit 0