* doc/misc/eshell.texi: Fill most of the missing sections.
[emacs.git] / make-dist
blobdd41c09436770ccb532f0f153016fcbdff13ae4b
1 #!/bin/sh
3 #### make-dist: create an Emacs distribution tar file from the current
4 #### source tree. This basically creates a duplicate directory
5 #### structure, and then hard links into it only those files that should
6 #### be distributed. This means that if you add a file with an odd name,
7 #### you should make sure that this script will include it.
9 # Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
10 # 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
12 # This file is part of GNU Emacs.
14 # GNU Emacs is free software: you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation, either version 3 of the License, or
17 # (at your option) any later version.
19 # GNU Emacs is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 progname="$0"
30 ### Exit if a command fails.
31 #set -e
33 ### Print out each line we read, for debugging's sake.
34 #set -v
36 LANGUAGE=C
37 LC_ALL=C
38 LC_MESSAGES=
39 LANG=
40 export LANGUAGE LC_ALL LC_MESSAGES LANG
42 ## Don't restrict access to any files.
43 umask 0
45 update=yes
46 check=yes
47 clean_up=no
48 make_tar=no
49 newer=""
51 while [ $# -gt 0 ]; do
52 case "$1" in
53 ## This option tells make-dist to delete the staging directory
54 ## when done. It is useless to use this unless you make a tar file.
55 "--clean-up" )
56 clean_up=yes
58 ## This option tells make-dist to make a tar file.
59 "--tar" )
60 make_tar=yes
62 ## This option tells make-dist not to recompile or do analogous things.
63 "--no-update" )
64 update=no
66 ## This option says don't check for bad file names, etc.
67 "--no-check" )
68 check=no
70 ## This option tells make-dist to make the distribution normally, then
71 ## remove all files older than the given timestamp file. This is useful
72 ## for creating incremental or patch distributions.
73 "--newer")
74 newer="$2"
75 new_extension=".new"
76 shift
78 ## This option tells make-dist to use `compress' instead of gzip.
79 ## Normally, make-dist uses gzip whenever it is present.
80 "--compress")
81 default_gzip="compress"
83 ## Same with bzip2.
84 "--bzip2")
85 default_gzip="bzip2"
87 ## Same with lzma.
88 "--lzma")
89 default_gzip="lzma"
92 "--snapshot")
93 clean_up=yes
94 make_tar=yes
95 update=no
96 check=no
99 "--help")
100 echo "Usage: ${progname} [options]"
101 echo ""
102 echo " --bzip2 use bzip2 instead of gzip"
103 echo " --clean-up delete staging directories when done"
104 echo " --compress use compress instead of gzip"
105 echo " --lzma use lzma instead of gzip"
106 echo " --newer=TIME don't include files older than TIME"
107 echo " --no-check don't check for bad file names etc."
108 echo " --no-update don't recompile or do analogous things"
109 echo " --snapshot same as --clean-up --no-update --tar --no-check"
110 echo " --tar make a tar file"
111 echo ""
112 exit 0
116 echo "${progname}: Unrecognized argument: $1" >&2
117 exit 1
119 esac
120 shift
121 done
123 ### Make sure we're running in the right place.
124 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
125 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
126 echo "${progname} must be run in the top directory of the Emacs" >&2
127 echo "distribution tree. cd to that directory and try again." >&2
128 exit 1
131 ### Find where to run Emacs.
132 ### (Accept only absolute file names.)
133 if [ $update = yes ];
134 then
135 unset EMACS_UNIBYTE
136 if [ -f src/emacs ];
137 then
138 EMACS=`pwd`/src/emacs
139 else
140 case $EMACS in
141 /*) ;;
143 if [ ! -f "$EMACS" ]; then
144 echo "$0: You must set the EMACS environment variable " \
145 "to an absolute file name." 2>&1
146 exit 1
147 fi;;
148 esac
152 ### Find out which version of Emacs this is.
153 shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
154 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
155 version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
156 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
157 if [ ! "${version}" ]; then
158 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
159 exit 1
162 echo Version numbers are $version and $shortversion
164 if [ $update = yes ];
165 then
166 if grep -s "@set EMACSVER *${shortversion}" ./doc/emacs/emacs.texi > /dev/null; then
167 true
168 else
169 echo "You must update the version number in \`./doc/emacs/emacs.texi'"
170 sleep 5
174 ### Make sure we don't already have a directory emacs-${version}.
176 emacsname="emacs-${version}${new_extension}"
178 if [ -d ${emacsname} ]
179 then
180 echo Directory "${emacsname}" already exists >&2
181 exit 1
184 ### Make sure the subdirectory is available.
185 tempparent="make-dist.tmp.$$"
186 if [ -d ${tempparent} ]; then
187 echo "${progname}: staging directory \`${tempparent}' already exists.
188 Perhaps a previous invocation of \`${progname}' failed to clean up after
189 itself. Check that directories whose names are of the form
190 \`make-dist.tmp.NNNNN' don't contain any important information, remove
191 them, and try again." >&2
192 exit 1
195 ### Find where to run Emacs.
196 if [ $check = yes ];
197 then
198 ### Check for .elc files with no corresponding .el file.
199 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
200 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
201 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
202 leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
203 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
204 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
205 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
206 leim/[a-z]*/[a-z]*.elc > /tmp/elc
207 bogosities="`comm -13 /tmp/el /tmp/elc`"
208 if [ "${bogosities}" != "" ]; then
209 echo "The following .elc files have no corresponding .el files:"
210 echo "${bogosities}"
212 rm -f /tmp/el /tmp/elc
214 ### Check for .el files with no corresponding .elc file.
215 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
216 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
217 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
218 leim/[a-z]*/[a-z]*.el > /tmp/el
219 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
220 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
221 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
222 leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc
223 losers="`comm -23 /tmp/el /tmp/elc`"
224 bogosities=
225 for file in $losers; do
226 if ! grep -q "no-byte-compile: t" $file; then
227 case $file in
228 site-init.el | site-load.el | site-start.el | default.el)
231 bogosities="$file $bogosities"
233 esac
235 done
236 if [ x"${bogosities}" != x"" ]; then
237 echo "The following .el files have no corresponding .elc files:"
238 echo "${bogosities}"
240 rm -f /tmp/el /tmp/elc
243 ### Make sure configure is newer than configure.in.
244 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then
245 echo "\`./configure.in' is newer than \`./configure'" >&2
246 echo "Running autoconf" >&2
247 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
250 ### Make sure src/config-in.stamp is newer than configure.in.
251 if [ "x`ls -t src/stamp-h.in configure.in | sed q`" != "xsrc/stamp-h.in" ]; then
252 echo "\`./configure.in' is newer than \`./src/stamp-h.in'" >&2
253 echo "Running autoheader" >&2
254 autoheader || { x=$?; echo Autoheader FAILED! >&2; exit $x; }
255 rm -f src/stamp-h.in
256 echo timestamp > src/stamp-h.in
259 if [ $update = yes ];
260 then
261 echo "Updating Info files"
262 (cd doc/emacs; make -f Makefile.in srcdir=. info)
263 (cd doc/misc; make -f Makefile.in srcdir=. info)
264 (cd doc/lispref; make -f Makefile.in srcdir=. info)
265 (cd doc/lispintro; make -f Makefile.in SHELL=/bin/sh srcdir=. info VPATH=.)
267 echo "Updating finder, custom and autoload data"
268 (cd lisp; make updates EMACS="$EMACS")
270 if test -f leim/leim-list.el; then
271 echo "Updating leim-list.el"
272 (cd leim; make leim-list.el EMACS="$EMACS")
275 echo "Recompiling Lisp files"
276 $EMACS -batch -f batch-byte-recompile-directory lisp leim
279 echo "Making lisp/MANIFEST"
281 (cd lisp;
282 files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'`
283 for dir in [!=]*; do
284 if [ -d $dir ] && [ $dir != term ] && [ $dir != CVS ] && [ $dir != RCS ]
285 then
286 echo $dir
287 thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'`
288 files="$files $thisdir"
290 done
291 for file in $files
292 do sed -n 's/^;;; //p; q' $file
293 done | sort > MANIFEST)
295 echo "Creating staging directory: \`${tempparent}'"
297 mkdir ${tempparent}
298 tempdir="${tempparent}/${emacsname}"
300 ### This trap ensures that the staging directory will be cleaned up even
301 ### when the script is interrupted in mid-career.
302 if [ "${clean_up}" = yes ]; then
303 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
306 echo "Creating top directory: \`${tempdir}'"
307 mkdir ${tempdir}
309 ### We copy in the top-level files before creating the subdirectories in
310 ### hopes that this will make the top-level files appear first in the
311 ### tar file; this means that people can start reading the INSTALL and
312 ### README while the rest of the tar file is still unpacking. Whoopee.
313 echo "Making links to top-level files"
314 ln INSTALL README BUGS move-if-change ${tempdir}
315 ln ChangeLog Makefile.in configure configure.in ${tempdir}
316 ln config.bat make-dist update-subdirs vpath.sed .dir-locals.el ${tempdir}
317 ### Copy these files; they're cross-filesystem symlinks.
318 cp mkinstalldirs ${tempdir}
319 cp config.sub ${tempdir}
320 cp config.guess ${tempdir}
321 cp install-sh ${tempdir}
323 echo "Updating version number in README"
324 (cd ${tempdir}
325 awk \
326 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
327 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
328 version=${version} README > tmp.README
329 mv -f tmp.README README)
332 echo "Creating subdirectories"
333 for subdir in lisp site-lisp \
334 leim leim/CXTERM-DIC leim/MISC-DIC \
335 leim/SKK-DIC leim/ja-dic leim/quail \
336 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
337 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
338 etc etc/charsets etc/e etc/gnus etc/nxml \
339 etc/images etc/images/custom etc/images/ezimage etc/images/gnus \
340 etc/images/gud etc/images/icons etc/images/icons/hicolor \
341 etc/images/icons/hicolor/*x* etc/images/icons/hicolor/scalable \
342 etc/images/icons/hicolor/*/apps etc/images/icons/hicolor/*/mimetypes \
343 etc/images/low-color etc/images/mail etc/images/mpc \
344 etc/images/smilies etc/images/smilies/grayscale \
345 etc/images/smilies/medium etc/images/tree-widget \
346 etc/images/tree-widget/default etc/images/tree-widget/folder \
347 etc/grammars \
348 etc/refcards etc/schema etc/tutorials info doc doc/emacs \
349 doc/misc doc/man doc/lispref doc/lispintro m4 msdos \
350 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \
351 nextstep/Cocoa/Emacs.base/Contents \
352 nextstep/Cocoa/Emacs.base/Contents/Resources \
353 nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj \
354 nextstep/Cocoa/Emacs.xcodeproj \
355 nextstep/GNUstep \
356 nextstep/GNUstep/Emacs.base \
357 nextstep/GNUstep/Emacs.base/Resources
359 ## site-lisp for in-place installs (?).
360 [ "$subdir" = "site-lisp" ] || [ -d "$subdir" ] || \
361 echo "WARNING: $subdir not found, making anyway"
362 echo " ${tempdir}/${subdir}"
363 mkdir ${tempdir}/${subdir}
364 done
366 echo "Making links to \`lisp' and its subdirectories"
367 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
368 (cd lisp
369 ln [a-zA-Z]*.el ../${tempdir}/lisp
370 ln [a-zA-Z]*.elc ../${tempdir}/lisp
371 ## simula.el doesn't keep abbreviations in simula.defns any more.
372 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
373 ln ChangeLog ChangeLog.*[0-9] ../${tempdir}/lisp
374 ln Makefile.in makefile.w32-in ../${tempdir}/lisp
375 test -f README && ln README ../${tempdir}/lisp
376 (cd ../${tempdir}/lisp
377 rm -f TAGS =*
378 rm -f site-init site-init.el site-init.elc
379 rm -f site-load site-load.el site-load.elc
380 rm -f site-start site-start.el site-start.elc
381 rm -f default default.el default.elc
384 ## Find all subdirs of lisp dir
385 for file in `find . -type d -print`; do
386 case $file in
387 . | .. | */Old | */CVS | */RCS | */=*)
390 if [ -d $file ]; then
391 subdirs="$file $subdirs"
394 esac
395 done
397 for file in $subdirs; do
398 echo " lisp/$file"
399 mkdir -p ../${tempdir}/lisp/$file
400 ln $file/[a-zA-Z0-9]*.el ../${tempdir}/lisp/$file
401 ln $file/[a-zA-Z0-9]*.elc ../${tempdir}/lisp/$file
402 ## calc/README.priv, nxml/TODO
403 for f in $file/[a-zA-Z]*.xpm $file/[a-zA-Z]*.[xp]bm \
404 $file/README $file/ChangeLog $file/ChangeLog.*[0-9] \
405 $file/README.prev $file/TODO; do
406 if [ -f $f ]; then
407 ln $f ../${tempdir}/lisp/$file
409 done
410 done )
412 echo "Making links to \`leim' and its subdirectories"
413 ### Don't distribute TAGS, or =*.el files.
414 (cd leim
415 ln makefile.w32-in ../${tempdir}/leim
416 ln ChangeLog README ../${tempdir}/leim
418 ln CXTERM-DIC/README CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC
419 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC
420 ln MISC-DIC/README MISC-DIC/*.* ../${tempdir}/leim/MISC-DIC
421 ln ja-dic/*.el ja-dic/*.elc ../${tempdir}/leim/ja-dic
422 ln Makefile.in ../${tempdir}/leim/Makefile.in
423 ln leim-ext.el ../${tempdir}/leim/leim-ext.el
424 ## Lisp files that start with a capital (also 4Corner.el) are
425 ## generated from TIT dictionaries so we don't distribute them.
426 ln quail/[a-z]*.el quail/[a-z]*.elc ../${tempdir}/leim/quail
427 rm -f ../${tempdir}/leim/quail/quick-b5.*
428 rm -f ../${tempdir}/leim/quail/quick-cns.*
429 rm -f ../${tempdir}/leim/quail/tsang-b5.*
430 rm -f ../${tempdir}/leim/quail/tsang-cns.*
432 cd ../${tempdir}/leim
433 rm -f TAGS =* */=*)
435 echo "Making links to \`src'"
436 ### Don't distribute =*.[ch] files, or the configured versions of
437 ### config.in, paths.in, or Makefile.in, or TAGS.
438 (cd src
439 echo " (It is ok if ln fails in some cases.)"
440 ln [a-zA-Z]*.c ../${tempdir}/src
441 ln [a-zA-Z]*.h ../${tempdir}/src
442 ln [a-zA-Z]*.m ../${tempdir}/src
443 ln [a-zA-Z]*.in ../${tempdir}/src
444 ## If we ended up with a symlink, or if we did not get anything
445 ## due to a cross-device symlink, copy the file.
446 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in; do
447 if test -f ../${tempdir}/src/$file; then
448 # test -f appears to succeed for a symlink
449 if test -L ../${tempdir}/src/$file; then
450 rm ../${tempdir}/src/$file
451 cp -p $file ../${tempdir}/src
452 chmod a-w ../${tempdir}/src/$file
454 else
455 rm ../${tempdir}/src/$file
456 cp -p $file ../${tempdir}/src
457 chmod a-w ../${tempdir}/src/$file
459 done
460 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
461 ln makefile.w32-in ../${tempdir}/src
462 ln .gdbinit .dbxinit ../${tempdir}/src
463 cd ../${tempdir}/src
464 rm -f config.h epaths.h Makefile Makefile.c buildobj.h
465 rm -f =* TAGS)
467 echo "Making links to \`src/bitmaps'"
468 (cd src/bitmaps
469 ln README *.xbm ../../${tempdir}/src/bitmaps)
471 echo "Making links to \`src/m'"
472 (cd src/m
473 # We call files for miscellaneous input (to linker etc) .inp.
474 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
476 echo "Making links to \`src/s'"
477 (cd src/s
478 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
480 echo "Making links to \`lib-src'"
481 (cd lib-src
482 ln [a-zA-Z]*.[chmy] ../${tempdir}/lib-src
483 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
484 ln b2m.pl grep-changelog rcs2log rcs-checkin ../${tempdir}/lib-src
485 ln makefile.w32-in ../${tempdir}/lib-src
486 ## If we ended up with a symlink, or if we did not get anything
487 ## due to a cross-device symlink, copy the file.
488 for file in [a-zA-Z]*.[chy]; do
489 if test -f ../${tempdir}/lib-src/$file; then
490 # test -f appears to succeed for a symlink
491 if test -L ../${tempdir}/lib-src/$file; then
492 rm ../${tempdir}/lib-src/$file
493 cp $file ../${tempdir}/lib-src
494 chmod a-w ../${tempdir}/lib-src/$file
496 else
497 rm ../${tempdir}/lib-src/$file
498 cp $file ../${tempdir}/lib-src
499 chmod a-w ../${tempdir}/lib-src/$file
501 done
502 cd ../${tempdir}/lib-src
503 rm -f Makefile.c
504 rm -f getopt.h
505 rm -f =* TAGS)
507 echo "Making links to \`m4'"
508 (cd m4
509 ln *.m4 ../${tempdir}/m4)
511 echo "Making links to \`nt'"
512 (cd nt
513 ln emacs.manifest emacs.rc emacsclient.rc config.nt [a-z]*.c ../${tempdir}/nt
514 ln nmake.defs gmake.defs subdirs.el ../${tempdir}/nt
515 ln [a-z]*.bat [a-z]*.h ../${tempdir}/nt
516 ln ChangeLog INSTALL README makefile.w32-in ../${tempdir}/nt)
518 echo "Making links to \`nt/inc'"
519 (cd nt/inc
520 ln [a-z]*.h ../../${tempdir}/nt/inc)
522 echo "Making links to \`nt/inc/sys'"
523 (cd nt/inc/sys
524 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
526 echo "Making links to \`nt/inc/arpa'"
527 (cd nt/inc/arpa
528 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
530 echo "Making links to \`nt/inc/netinet'"
531 (cd nt/inc/netinet
532 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
534 echo "Making links to \`nt/icons'"
535 (cd nt/icons
536 ln README [a-z]*.ico ../../${tempdir}/nt/icons
537 ln [a-z]*.cur ../../${tempdir}/nt/icons)
539 echo "Making links to \`msdos'"
540 (cd msdos
541 ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos
542 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
543 cd ../${tempdir}/msdos
544 rm -f =*)
546 ## FIXME are DEV-NOTES and FOR-RELEASE appropriate?
547 echo "Making links to \`nextstep'"
548 (cd nextstep
549 ln AUTHORS ChangeLog DEV-NOTES FOR-RELEASE README INSTALL ../${tempdir}/nextstep)
551 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents'"
552 (cd nextstep/Cocoa/Emacs.base/Contents
553 ln Info.plist PkgInfo ../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents)
555 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources'"
556 (cd nextstep/Cocoa/Emacs.base/Contents/Resources
557 ln Credits.html *.icns ../../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents/Resources)
559 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj'"
560 (cd nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj
561 ln InfoPlist.strings ../../../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj)
563 echo "Making links to \`nextstep/Cocoa/Emacs.xcodeproj'"
564 (cd nextstep/Cocoa/Emacs.xcodeproj
565 ln project.pbxproj ../../../${tempdir}/nextstep/Cocoa/Emacs.xcodeproj)
567 echo "Making links to \`nextstep/GNUstep/Emacs.base/Resources'"
568 (cd nextstep/GNUstep/Emacs.base/Resources
569 ln Emacs.desktop Info-gnustep.plist README emacs.tiff ../../../../${tempdir}/nextstep/GNUstep/Emacs.base/Resources )
571 echo "Making links to \`oldXMenu'"
572 (cd oldXMenu
573 ln *.c *.h *.in ../${tempdir}/oldXMenu
574 ln README ChangeLog ../${tempdir}/oldXMenu)
576 echo "Making links to \`lwlib'"
577 (cd lwlib
578 ln *.c *.h *.in ../${tempdir}/lwlib
579 ln README ChangeLog ../${tempdir}/lwlib)
581 echo "Making links to \`etc'"
582 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
583 ### tex litter.
584 (cd etc
585 files=`ls -d * | grep -v CVS | grep -v RCS | grep -v 'Old' | grep -v '^e$' \
586 | grep -v '^charsets$' | grep -v '^gnus$' | grep -v '^images$' | grep -v '^nxml$' \
587 | grep -v '^grammars$' \
588 | grep -v '^refcards$' | grep -v '^tutorials$'| grep -v '^schema$'`
589 ln $files ../${tempdir}/etc
590 ## If we ended up with a symlink, or if we did not get anything
591 ## due to a cross-device symlink, copy the file.
592 for file in $files; do
593 if test -f ../${tempdir}/etc/$file; then
594 # test -f appears to succeed for a symlink
595 if test -L ../${tempdir}/etc/$file; then
596 rm ../${tempdir}/etc/$file
597 cp $file ../${tempdir}/etc
598 chmod a-w ../${tempdir}/etc/$file
600 else
601 rm ../${tempdir}/etc/$file
602 cp $file ../${tempdir}/etc
603 chmod a-w ../${tempdir}/etc/$file
605 done
606 cd ../${tempdir}/etc
607 rm -f fns*.el *.pyc
608 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
609 rm -f TAGS)
611 for dir in etc/charsets etc/e etc/grammars etc/gnus etc/nxml etc/tutorials etc/refcards etc/schema ; do
612 echo "Making links to \`${dir}'"
613 (cd ${dir}
614 ln `ls -d * | grep -v CVS | grep -v RCS` ../../${tempdir}/${dir}
615 cd ../../${tempdir}/${dir}
616 rm -f *~ \#*\# *,v =* core)
617 done
619 echo "Making links to \`etc/images'"
620 (cd etc/images
621 for f in *; do
622 [ -f "$f" ] || continue
623 case $f in
624 (*~|\#*\#|*,v|=*|core) continue ;;
625 esac
626 ln $f ../../${tempdir}/etc/images
627 done)
629 for dir in etc/images/custom etc/images/ezimage etc/images/gnus \
630 etc/images/gud etc/images/icons etc/images/low-color etc/images/mail \
631 etc/images/mpc etc/images/smilies ; do
632 echo "Making links to \`${dir}'"
633 (cd ${dir}
634 for f in *; do
635 [ -f "$f" ] || continue
636 case $f in
637 (*~|\#*\#|*,v|=*|core) continue ;;
638 esac
639 ln $f ../../../${tempdir}/${dir}
640 done
642 done
644 for dir in etc/images/tree-widget/default etc/images/tree-widget/folder \
645 etc/images/smilies/grayscale etc/images/smilies/medium; do
646 echo "Making links to \`${dir}'"
647 (cd ${dir}
648 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../${tempdir}/${dir}
649 cd ../../../../${tempdir}/${dir}
650 rm -f *~ \#*\# *,v =* core)
651 done
653 for dir in etc/images/icons/hicolor/*/apps \
654 etc/images/icons/hicolor/*/mimetypes; do
655 echo "Making links to \`${dir}'"
656 (cd ${dir}
657 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../../../${tempdir}/${dir}
658 cd ../../../../../../${tempdir}/${dir}
659 rm -f *~ \#*\# *,v =* core)
660 done
662 echo "Making links to \`info'"
663 # Don't distribute backups or autosaves.
664 (cd info
665 ln `find . -type f -print | grep -v CVS | grep -v RCS | grep -v cvsignore` ../${tempdir}/info
666 #ln [a-zA-Z]* ../${tempdir}/info
667 cd ../${tempdir}/info
668 # Avoid an error when expanding the wildcards later.
669 ln emacs dummy~ ; ln emacs \#dummy\#
670 rm -f *~ \#*\# core .arch-inventory .gitignore)
672 echo "Making links to \`doc/emacs'"
673 (cd doc/emacs
674 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/emacs
675 ln makefile.w32-in ../../${tempdir}/doc/emacs
676 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/emacs
677 ln ChangeLog ../../${tempdir}/doc/emacs
678 cd ../../${tempdir}/doc/emacs
679 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
680 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
682 echo "Making links to \`doc/misc'"
683 (cd doc/misc
684 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/misc
685 ln makefile.w32-in ../../${tempdir}/doc/misc
686 ln gnus-news.el ../../${tempdir}/doc/misc
687 test -f README && ln README ../../${tempdir}/doc/misc
688 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/misc
689 ln ChangeLog ../../${tempdir}/doc/misc
690 cp texinfo.tex ../../${tempdir}/doc/misc
691 cd ../../${tempdir}/doc/misc
692 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
693 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
695 ## FIXME book-spine.texinfo unused?
696 echo "Making links to \`doc/lispref'"
697 (cd doc/lispref
698 ln *.texi *.aux *.fns *.kys *.vrs ../../${tempdir}/doc/lispref
699 ln *.txt *.el spellfile tindex.pl ../../${tempdir}/doc/lispref
700 ln makefile.w32-in ../../${tempdir}/doc/lispref
701 ln book-spine.texinfo two-volume.make ../../${tempdir}/doc/lispref
702 test -f README && ln README ../../${tempdir}/doc/lispref
703 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispref
704 ln ChangeLog ../../${tempdir}/doc/lispref
705 cd ../../${tempdir}/doc/lispref
706 rm -f \#*\# =* *~ core elisp-index* *.Z *.z xmail
707 rm -f elisp.?? *.log *.toc *.dvi *.oaux)
709 echo "Making links to \`doc/lispintro'"
710 (cd doc/lispintro
711 ln *.texi *.aux *.fns *.kys *.vrs *.eps *.pdf ../../${tempdir}/doc/lispintro
712 ln makefile.w32-in ../../${tempdir}/doc/lispintro
713 test -f README && ln README ../../${tempdir}/doc/lispintro
714 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispintro
715 ln ChangeLog ../../${tempdir}/doc/lispintro
716 cd ../../${tempdir}/doc/lispintro
717 rm -f \#*\# =* *~ core *.Z *.z xmail
718 rm -f emacs-lisp-intro.?? *.log *.toc *.dvi *.oaux)
720 echo "Making links to \`doc/man'"
721 (cd doc/man
722 ln *.1 ../../${tempdir}/doc/man
723 ln ChangeLog ../../${tempdir}/doc/man)
725 ### It would be nice if they could all be symlinks to top-level copy, but
726 ### you're not supposed to have any symlinks in distribution tar files.
727 echo "Making sure copying notices are all copies of \`COPYING'"
728 for subdir in . etc info leim lib-src lisp lwlib msdos nt src; do
729 rm -f ${tempdir}/${subdir}/COPYING
730 cp COPYING ${tempdir}/${subdir}
731 done
733 if [ "${newer}" ]; then
734 echo "Removing files older than $newer"
735 ## We remove .elc files unconditionally, on the theory that anyone picking
736 ## up an incremental distribution already has a running Emacs to byte-compile
737 ## them with.
738 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
741 if [ "${make_tar}" = yes ]; then
742 if [ "${default_gzip}" = "" ]; then
743 echo "Looking for gzip"
744 temppath=`echo $PATH | sed 's/^:/.:/
745 s/::/:.:/g
746 s/:$/:./
747 s/:/ /g'`
748 default_gzip=`(
749 for dir in ${temppath}; do
750 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
751 done
752 echo compress
755 case "${default_gzip}" in
756 bzip2) gzip_extension=.bz2 ;;
757 compress* ) gzip_extension=.Z ;;
758 lzma) gzip_extension=.lzma ;;
759 * ) gzip_extension=.gz ;;
760 esac
761 echo "Creating tar file"
762 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
763 | ${default_gzip} \
764 > ${emacsname}.tar${gzip_extension}
767 if [ "${clean_up}" = yes ]; then
768 echo "Cleaning up the staging directory"
769 rm -rf ${tempparent}
770 else
771 (cd ${tempparent}; mv ${emacsname} ..)
772 rm -rf ${tempparent}
775 # arch-tag: 26e3eb50-a394-4ab2-82b2-d8e5af500de7
776 ### make-dist ends here