... |
... |
@@ -108,18 +108,6 @@ do |
108
|
108
|
$DESTDIR/$CMUCLLIBVER/lib/subsystems/
|
109
|
109
|
done
|
110
|
110
|
|
111
|
|
-# Not sure we really need these, but we'll install them in the
|
112
|
|
-# ext-formats directory. (Should they go somewhere else?)
|
113
|
|
-#install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/$CMUCLLIBVER/lib/ext-formats
|
114
|
|
-#for f in src/i18n/NameAliases.txt src/i18n/UnicodeData.txt
|
115
|
|
-#do
|
116
|
|
-# echo $f
|
117
|
|
-# install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/$CMUCLLIBVER/lib/ext-formats/
|
118
|
|
-#done
|
119
|
|
-
|
120
|
|
-# install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/$CMUCLLIBVER/lib/fonts/
|
121
|
|
-# install ${GROUP} ${OWNER} -m 0644 misc/8x13u.snf misc/fonts.dir \
|
122
|
|
-# $DESTDIR/$CMUCLLIBVER/lib/fonts/
|
123
|
111
|
install ${GROUP} ${OWNER} -m 0644 src/hemlock/XKeysymDB \
|
124
|
112
|
src/hemlock/hemlock11.cursor src/hemlock/hemlock11.mask \
|
125
|
113
|
$TARGET/hemlock/spell-dictionary.bin \
|
... |
... |
@@ -139,7 +127,6 @@ done |
139
|
127
|
|
140
|
128
|
for f in `(cd src/contrib; find . -type f -print | grep -v "asdf\|defsystem\|unix")`
|
141
|
129
|
do
|
142
|
|
- FILE=`basename $f`
|
143
|
130
|
DIR=`dirname $f`
|
144
|
131
|
install ${GROUP} ${OWNER} -m 0644 src/contrib/$f $DESTDIR/$CMUCLLIBVER/lib/contrib/$DIR
|
145
|
132
|
done
|
... |
... |
@@ -154,19 +141,10 @@ done |
154
|
141
|
# Install mo files. Ignore any emacs-style backup files.
|
155
|
142
|
for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')`
|
156
|
143
|
do
|
157
|
|
- FILE=`basename $f`
|
158
|
144
|
DIR=`dirname $f`
|
159
|
145
|
install ${GROUP} ${OWNER} -m 0644 $TARGET/i18n/$f $DESTDIR/$CMUCLLIBVER/lib/$DIR
|
160
|
146
|
done
|
161
|
147
|
|
162
|
|
-# Install po files. (Do we really need to distribute the po files?)
|
163
|
|
-#for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')`
|
164
|
|
-#do
|
165
|
|
-# FILE=`basename $f`
|
166
|
|
-# DIR=`dirname $f`
|
167
|
|
-# install ${GROUP} ${OWNER} -m 0644 $TARGET/i18n/$f $DESTDIR/$CMUCLLIBVER/lib/$DIR
|
168
|
|
-#done
|
169
|
|
-
|
170
|
148
|
if [ -z "$INSTALL_DIR" ]; then
|
171
|
149
|
sync ; sleep 1 ; sync ; sleep 1 ; sync
|
172
|
150
|
echo Tarring extra components
|