2002-07-04 19:33:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#### make-package: create a Mac OS X package for use by the installer.
|
|
|
|
#### The installer will place the Emacs OSX application in
|
|
|
|
#### /Application/Emacs and the rest of emacs in the usual unix places
|
|
|
|
#### under /usr/local or some other location if specified as the first
|
|
|
|
#### argument. The disc image will be in the file EmacsInstaller.dmg.
|
|
|
|
####
|
|
|
|
#### Upon installation, this will leave two versions of emacs on the
|
|
|
|
#### computer, 20.7 and 21.1.
|
|
|
|
####
|
|
|
|
#### Examples:
|
|
|
|
#### ./make-package
|
|
|
|
#### Will create an installer that will place the emacs support
|
|
|
|
#### files inside /usr/local.
|
|
|
|
#### ./make-package /usr
|
|
|
|
#### Will create an installer that will place the emacs support
|
|
|
|
#### files inside /usr. This will replace the default version of
|
|
|
|
#### emacs included with Mac OS X.
|
|
|
|
|
|
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of GNU Emacs.
|
|
|
|
#
|
|
|
|
# GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# Contributed by Steven Tamm (steventamm@mac.com).
|
|
|
|
|
|
|
|
progname="$0"
|
|
|
|
## Default location to place it is /usr/local
|
2002-07-05 19:03:19 +00:00
|
|
|
|
2002-07-04 19:33:39 +00:00
|
|
|
prefix=/usr/local
|
2002-07-05 19:03:19 +00:00
|
|
|
with_config=yes
|
2002-10-09 02:20:28 +00:00
|
|
|
with_app=yes
|
|
|
|
with_x=no
|
2002-07-05 19:03:19 +00:00
|
|
|
|
|
|
|
ac_prev=
|
|
|
|
display_usage=false;
|
2002-10-09 02:20:28 +00:00
|
|
|
config_options=;
|
2002-07-05 19:03:19 +00:00
|
|
|
while test $# != 0
|
|
|
|
do
|
|
|
|
if test -n "$ac_prev"; then
|
|
|
|
eval "$ac_prev=\$1"
|
|
|
|
ac_prev=
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
case $1 in
|
|
|
|
-help | --help | --hel | --he | -h)
|
|
|
|
display_usage=yes ;;
|
|
|
|
-p | -prefix | --p | --prefix)
|
|
|
|
ac_prev=prefix ;;
|
|
|
|
-p=* | -prefix=* | --p=* | --prefix=*)
|
|
|
|
prefix=`expr "x$1" : 'x[^=]*=\(.*\)'` ;;
|
2002-10-07 20:36:24 +00:00
|
|
|
-no-configure | -no-conf | --no-configure | --no-conf | --without-config)
|
2002-07-05 19:03:19 +00:00
|
|
|
with_config=no ;;
|
2002-10-09 02:20:28 +00:00
|
|
|
-no-app | --no-app | -without-app | --without-app)
|
|
|
|
with_app=no ;;
|
|
|
|
-without-x | --without-x)
|
|
|
|
with_x=no ;;
|
2002-07-05 19:03:19 +00:00
|
|
|
-with-x | --with-x)
|
2002-10-09 02:20:28 +00:00
|
|
|
with_x=yes
|
|
|
|
with_app=no ;;
|
|
|
|
-C,* | -c,*)
|
|
|
|
config_options="$config_options `expr "x$1" : 'x[^,]*,\(.*\)'`" ;;
|
|
|
|
-M,* | -m,*)
|
|
|
|
make_options="$make_options `expr "x$1" : 'x[^,]*,\(.*\)'`" ;;
|
|
|
|
|
2002-07-05 19:03:19 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2002-10-09 02:20:28 +00:00
|
|
|
if test "$with_x" = "no"; then
|
|
|
|
config_options="--without-x $config_options"
|
|
|
|
fi
|
|
|
|
|
2002-07-05 19:03:19 +00:00
|
|
|
if test "$display_usage" = "yes"; then
|
|
|
|
cat <<EOF
|
2002-10-09 02:20:28 +00:00
|
|
|
\`make-package' generates a Mac OS X installer package from an Emacs
|
|
|
|
distribution. By default, this first runs ./configure on the emacs
|
|
|
|
directory. Then make install to create the emacs distribution.
|
|
|
|
Then some mac-specific commands to generate the required information
|
|
|
|
for the mac package. The installer will, by default, create a
|
|
|
|
Carbon application called Emacs in the /Applications directory, and
|
2002-07-05 19:03:19 +00:00
|
|
|
|
|
|
|
Usage: $0 [OPTION]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help display this help and exit
|
|
|
|
--prefix=DIR Set install location for the Mac OS X package
|
|
|
|
of the emacs related file. By default /usr/local
|
|
|
|
--no-conf Do not run the configure script before running
|
|
|
|
make install.
|
2002-10-09 02:20:28 +00:00
|
|
|
--without-app Do not create the Emacs application bundle
|
2002-07-05 19:03:19 +00:00
|
|
|
--with-x Setup the install to use X Windows for its
|
2002-10-09 02:20:28 +00:00
|
|
|
windowed display, instead of carbon. Implies
|
|
|
|
--without-app.
|
|
|
|
-C,option Pass option to configure
|
|
|
|
-M,option Pass option to make
|
2002-07-05 19:03:19 +00:00
|
|
|
EOF
|
|
|
|
exit 0
|
2002-07-04 19:33:39 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
### Exit if a command fails.
|
|
|
|
#set -e
|
|
|
|
|
|
|
|
### Print out each line we read, for debugging's sake.
|
|
|
|
set -v
|
|
|
|
|
|
|
|
LANGUAGE=C
|
|
|
|
LC_ALL=C
|
|
|
|
LC_MESSAGES=
|
|
|
|
LANG=
|
|
|
|
export LANGUAGE LC_ALL LC_MESSAGES LANG
|
|
|
|
|
|
|
|
## Don't restrict access to any files.
|
|
|
|
umask 0
|
|
|
|
|
|
|
|
### Make sure we're running in the right place.
|
|
|
|
if [ -f Emacs.pkg ]; then
|
|
|
|
echo "${progname}: Package Emacs.pkg already exists.
|
|
|
|
Perhaps a previous invocation of \`${progname}' failed to clean up after
|
|
|
|
itself. Move or delete Emacs.pkg and try again." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2002-10-09 02:20:28 +00:00
|
|
|
if test $with_app == "yes" && [ ! -f Emacs.app/Contents/PkgInfo ]; then
|
2002-07-04 19:33:39 +00:00
|
|
|
echo "${progname}: Can't find \`Emacs.app/Contents/PkgInfo'" >&2
|
|
|
|
echo "${progname} must be run in the \`mac' directory of the Emacs" >&2
|
|
|
|
echo "distribution tree. cd to that directory and try again." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
### Check whether file ../lisp/version.el exists.
|
|
|
|
if [ ! -f ../lisp/version.el ]; then
|
|
|
|
echo "${progname}: Can't find \`../lisp/version.el'" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
### Find out which version of Emacs this is.
|
|
|
|
shortversion=`grep 'defconst[ ]*emacs-version' ../lisp/version.el \
|
|
|
|
| sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
|
|
|
|
version=`grep 'defconst[ ]*emacs-version' ../lisp/version.el \
|
|
|
|
| sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
|
|
|
|
if [ ! "${version}" ]; then
|
|
|
|
echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo Version numbers are $version and $shortversion
|
|
|
|
|
|
|
|
### Make sure we don't already have a directory emacs-${version}.
|
|
|
|
|
|
|
|
emacsname="emacs-${version}${new_extension}"
|
|
|
|
|
|
|
|
if [ -d ${emacsname} ]
|
|
|
|
then
|
|
|
|
echo Directory "${emacsname}" already exists >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
### Make sure the subdirectory is available.
|
|
|
|
tempparent="make-package.tmp.$$"
|
|
|
|
if [ -d ${tempparent} ]; then
|
|
|
|
echo "${progname}: staging directory \`${tempparent}' already exists.
|
|
|
|
Perhaps a previous invocation of \`${progname}' failed to clean up after
|
|
|
|
itself. Check that directories whose names are of the form
|
|
|
|
\`make-dist.tmp.NNNNN' don't contain any important information, remove
|
|
|
|
them, and try again." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d /Volumes/Emacs ]; then
|
|
|
|
echo "${progname}: Already have an Emacs disc image mounted. Please
|
|
|
|
eject that disc image and try again." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
tempparentfull="`pwd`/${tempparent}"
|
|
|
|
|
|
|
|
echo Installing into directory ${tempparentfull} >&2
|
|
|
|
|
2002-07-05 19:03:19 +00:00
|
|
|
if test "$with_config" = yes; then
|
|
|
|
(cd ..; ./configure ${config_options} --prefix=${prefix};)
|
|
|
|
fi
|
|
|
|
|
2002-10-07 20:36:24 +00:00
|
|
|
## Make bootstrap if .elc files are missing from distribution
|
|
|
|
if [ ! -f ../lisp/abbrev.elc ]; then
|
|
|
|
echo "Required .elc files missing; making bootstrap..."
|
2002-10-09 02:20:28 +00:00
|
|
|
if ! (cd ..; make bootstrap prefix=${tempparentfull}${prefix} $make_options); then
|
2002-10-07 20:36:24 +00:00
|
|
|
echo "Make bootstrap failed... Aborting make-package."
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-10-09 02:20:28 +00:00
|
|
|
if ! (cd ..; make install prefix=${tempparentfull}${prefix} $make_options); then
|
2002-10-07 20:36:24 +00:00
|
|
|
echo "Make failed... Aborting make-package."
|
|
|
|
exit 1
|
|
|
|
fi
|
2002-07-04 19:33:39 +00:00
|
|
|
|
|
|
|
### This trap ensures that the staging directory will be cleaned up even
|
|
|
|
### when the script is interrupted in mid-career.
|
|
|
|
trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; rm -rf Emacs.pkg; exit 1" 1 2 15
|
|
|
|
|
2002-10-09 02:20:28 +00:00
|
|
|
if test "$with_app" == "yes"; then
|
|
|
|
mkdir ${tempparentfull}/Applications
|
2002-07-04 19:33:39 +00:00
|
|
|
|
2002-10-09 02:20:28 +00:00
|
|
|
## Copy Emacs application
|
|
|
|
cp -r Emacs.app ${tempparentfull}/Applications
|
|
|
|
## Delete any CVS files
|
2002-10-14 09:57:20 +00:00
|
|
|
find ${tempparentfull}/Applications -name "CVS" -type d -exec rm -r {} \;
|
2002-10-09 02:20:28 +00:00
|
|
|
fi
|
2002-07-04 19:33:39 +00:00
|
|
|
|
|
|
|
echo "Creating Package Info file"
|
|
|
|
|
|
|
|
mkdir Emacs.pkg
|
|
|
|
mkdir Emacs.pkg/Contents
|
|
|
|
mkdir Emacs.pkg/Contents/Resources
|
|
|
|
mkdir Emacs.pkg/Contents/Resources/English.lproj
|
|
|
|
echo 'pmkrpkg1' > Emacs.pkg/Contents/PkgInfo
|
|
|
|
|
|
|
|
infofile=Emacs.pkg/Contents/Resources/English.lproj/Emacs.info
|
|
|
|
|
|
|
|
echo 'Title Emacs' > ${infofile}
|
|
|
|
echo "Version ${version}" >> ${infofile}
|
|
|
|
echo "Description Install GNU Emacs ${version} as a command-line app and a Mac OS Application" >> ${infofile}
|
|
|
|
echo 'DefaultLocation /' >> ${infofile}
|
|
|
|
echo 'DeleteWarning' >> ${infofile}
|
|
|
|
echo 'NeedsAuthorization YES' >> ${infofile}
|
|
|
|
echo 'Required NO' >> ${infofile}
|
|
|
|
echo 'Relocatable NO' >> ${infofile}
|
|
|
|
echo 'RequiresReboot NO' >> ${infofile}
|
|
|
|
echo 'UseUserMask NO' >> ${infofile}
|
|
|
|
echo 'OverwritePermissions NO' >> ${infofile}
|
|
|
|
echo 'InstallFat NO' >> ${infofile}
|
|
|
|
|
|
|
|
echo "Creating pax file"
|
|
|
|
(cd ${tempparentfull}; pax -w -f ../Emacs.pkg/Contents/Resources/Emacs.pax .; cd ..)
|
|
|
|
#echo "Compressing pax file"
|
|
|
|
#gzip Emacs.pkg/Contents/Resources/Emacs.pax
|
|
|
|
|
|
|
|
echo "Creating bom file"
|
|
|
|
mkbom ${tempparentfull} Emacs.pkg/Contents/Resources/Emacs.bom
|
|
|
|
|
|
|
|
echo "Generating sizes file"
|
|
|
|
sizesfile=Emacs.pkg/Contents/Resources/Emacs.sizes
|
|
|
|
|
|
|
|
numFiles=`du -a ${tmpparent} | wc -l`
|
|
|
|
installedSize=`du -s ${tmpparent} | cut -f1`
|
|
|
|
compressedSize=`du -s Emacs.pkg | cut -f1`
|
|
|
|
|
|
|
|
echo "NumFiles ${numFiles}" > ${sizesfile}
|
|
|
|
echo "InstalledSize ${installedSize}" >> ${sizesfile}
|
|
|
|
echo "CompressedSize ${compressedSize}" >> ${sizesfile}
|
|
|
|
cat ${sizesfile}
|
|
|
|
|
|
|
|
mv ${tempparentfull} ${emacsname}
|
|
|
|
|
|
|
|
echo "Creating Disc Image"
|
|
|
|
## Allocate an extra 5000 sectors (about 2.5 mg)
|
|
|
|
## Note a sector appears to be ~500k
|
|
|
|
sectorsAlloced=`echo 2*${compressedSize}+5000|bc`
|
|
|
|
hdiutil create -ov EmacsRW -sectors ${sectorsAlloced}
|
|
|
|
## Need to format the disc image before mounting
|
|
|
|
mountLoc=`hdid -nomount EmacsRW.dmg | grep HFS | cut -f1`
|
|
|
|
/sbin/newfs_hfs -v Emacs ${mountLoc}
|
|
|
|
hdiutil eject ${mountLoc}
|
|
|
|
echo "Copying Package to Disc Image"
|
|
|
|
hdid EmacsRW.dmg
|
|
|
|
|
|
|
|
rm -rf ${emacsname}
|
|
|
|
|
|
|
|
if [ ! -d /Volumes/Emacs ]; then
|
|
|
|
echo "Could not create disc image. The Emacs installer package in this
|
|
|
|
directory should be correct. Please use the Disc Copy program to create
|
|
|
|
a disc image." >&2
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2002-07-11 17:14:03 +00:00
|
|
|
cp -R Emacs.pkg /Volumes/Emacs
|
2002-07-04 19:33:39 +00:00
|
|
|
|
|
|
|
## Converting Disk Image to read-only
|
|
|
|
echo 'Converting Disc Image to read-only'
|
|
|
|
hdiutil eject ${mountLoc}
|
|
|
|
hdiutil resize EmacsRW.dmg -sectors min
|
|
|
|
hdiutil convert EmacsRW.dmg -format UDRO -o EmacsInstaller.dmg
|
|
|
|
gzip EmacsInstaller.dmg
|
|
|
|
rm EmacsRW.dmg
|
|
|
|
|
|
|
|
echo "Cleaning up the staging directory"
|
|
|
|
rm -rf Emacs.pkg
|
|
|
|
|
|
|
|
### make-package ends here
|