Install self-contained ns leim files directly to their final destination
This is instead of installing them first in one place, then moving them. It also fixes the previous change, which was incorrect for the -disable-ns-self-contained case. * configure.in (LEIM_INSTALLDIR): New output variable. * leim/Makefile.in: (install_prefix): New. (LEIM_INSTALLDIR): New, set by configure. (install): Use LEIM_INSTALLDIR.
This commit is contained in:
parent
51b1e0596d
commit
ff57c2ec02
4 changed files with 36 additions and 25 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-05-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* configure.in (LEIM_INSTALLDIR): New output variable.
|
||||
|
||||
2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* .dir-locals.el (log-edit-mode): Enable gnu-style checks.
|
||||
|
|
|
@ -1636,6 +1636,7 @@ fail;
|
|||
fi
|
||||
AC_SUBST(TEMACS_LDFLAGS2)
|
||||
|
||||
LEIM_INSTALLDIR="\${install_prefix}/leim"
|
||||
ns_frag=/dev/null
|
||||
NS_OBJ=
|
||||
NS_OBJC_OBJ=
|
||||
|
@ -1651,6 +1652,7 @@ if test "${HAVE_NS}" = yes; then
|
|||
prefix=${ns_appresdir}
|
||||
exec_prefix=${ns_appbindir}
|
||||
libexecdir=${ns_appbindir}/libexec
|
||||
LEIM_INSTALLDIR="\${ns_appresdir}/leim"
|
||||
fi
|
||||
ns_frag=$srcdir/src/ns.mk
|
||||
NS_OBJ="fontset.o fringe.o image.o"
|
||||
|
@ -1658,6 +1660,7 @@ if test "${HAVE_NS}" = yes; then
|
|||
fi
|
||||
CFLAGS="$tmp_CFLAGS"
|
||||
CPPFLAGS="$tmp_CPPFLAGS"
|
||||
AC_SUBST(LEIM_INSTALLDIR)
|
||||
AC_SUBST(NS_OBJ)
|
||||
AC_SUBST(NS_OBJC_OBJ)
|
||||
AC_SUBST(LIB_STANDARD)
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
2012-05-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in: Install self-contained ns files directly to
|
||||
their final destination.
|
||||
(install_prefix): New.
|
||||
(LEIM_INSTALLDIR): New, set by configure.
|
||||
(install): Use LEIM_INSTALLDIR.
|
||||
|
||||
* Makefile.in (MV_DIRS): Remove.
|
||||
(install): Simplify the --with-ns case.
|
||||
|
||||
|
|
|
@ -34,9 +34,12 @@ datadir=@datadir@
|
|||
srcdir=@srcdir@
|
||||
ns_appresdir=@ns_appresdir@
|
||||
|
||||
install_prefix=$(DESTDIR)${datadir}/emacs/${version}
|
||||
|
||||
# Where to install LEIM files.
|
||||
# Should be $ns_appresdir/leim if $ns_appresdir is set.
|
||||
INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim
|
||||
# For most builds, this is ${install_prefix}/leim.
|
||||
# For self-contained ns builds, it is ${ns_appresdir}/leim.
|
||||
LEIM_INSTALLDIR=@LEIM_INSTALLDIR@
|
||||
|
||||
GZIP_PROG = @GZIP_PROG@
|
||||
|
||||
|
@ -176,49 +179,44 @@ compile-main: ${TIT_MISC}
|
|||
done
|
||||
|
||||
install: all
|
||||
if [ ! -d ${INSTALLDIR} ] ; then \
|
||||
umask 022; ${srcdir}/../build-aux/install-sh -d ${INSTALLDIR}; \
|
||||
if [ ! -d ${LEIM_INSTALLDIR} ] ; then \
|
||||
umask 022; ${srcdir}/../build-aux/install-sh -d ${LEIM_INSTALLDIR}; \
|
||||
else true; fi
|
||||
if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
|
||||
rm -f ${INSTALLDIR}/leim-list.el; \
|
||||
rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
|
||||
echo "Copying leim files to ${INSTALLDIR} ..." ; \
|
||||
if [ x`(cd ${LEIM_INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
|
||||
rm -f ${LEIM_INSTALLDIR}/leim-list.el; \
|
||||
rm -rf ${LEIM_INSTALLDIR}/quail ${LEIM_INSTALLDIR}/ja-dic ; \
|
||||
echo "Copying leim files to ${LEIM_INSTALLDIR} ..." ; \
|
||||
if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
|
||||
tar -chf - leim-list.el quail ja-dic \
|
||||
| (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
| (cd ${LEIM_INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
else \
|
||||
tar -chf - leim-list.el quail \
|
||||
| (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
| (cd ${LEIM_INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
cd ${srcdir}; \
|
||||
tar -chf - quail/* ja-dic \
|
||||
| (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
| (cd ${LEIM_INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
|
||||
fi; \
|
||||
rm -f ${INSTALLDIR}/.gitignore ${INSTALLDIR}/*/.gitignore; \
|
||||
rm -f ${INSTALLDIR}/.arch-inventory ${INSTALLDIR}/*/.arch-inventory; \
|
||||
rm -f ${INSTALLDIR}/\#* ${INSTALLDIR}/*/\#* ; \
|
||||
rm -f ${INSTALLDIR}/.\#* ${INSTALLDIR}/*/.\#* ; \
|
||||
rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \
|
||||
rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \
|
||||
rm -f ${LEIM_INSTALLDIR}/.gitignore ${LEIM_INSTALLDIR}/*/.gitignore; \
|
||||
rm -f ${LEIM_INSTALLDIR}/.arch-inventory ${LEIM_INSTALLDIR}/*/.arch-inventory; \
|
||||
rm -f ${LEIM_INSTALLDIR}/\#* ${LEIM_INSTALLDIR}/*/\#* ; \
|
||||
rm -f ${LEIM_INSTALLDIR}/.\#* ${LEIM_INSTALLDIR}/*/.\#* ; \
|
||||
rm -f ${LEIM_INSTALLDIR}/*~ ${LEIM_INSTALLDIR}/*/*~ ; \
|
||||
rm -f ${LEIM_INSTALLDIR}/*.orig ${LEIM_INSTALLDIR}/*/*.orig ; \
|
||||
else true; fi
|
||||
-unset CDPATH; \
|
||||
if [ -n "${GZIP_PROG}" ]; \
|
||||
then \
|
||||
echo "Compressing *.el ..." ; \
|
||||
(cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \
|
||||
(cd ${LEIM_INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \
|
||||
${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
|
||||
done) \
|
||||
else true; fi
|
||||
-chmod -R a+r ${INSTALLDIR}
|
||||
-chmod -R a+r ${LEIM_INSTALLDIR}
|
||||
for installuser in $${LOGNAME} $${USERNAME} $${USER} \
|
||||
`id -un 2> /dev/null`; do \
|
||||
[ -n "$${installuser}" ] && break ; \
|
||||
done ; \
|
||||
find ${INSTALLDIR} -exec chown $${installuser} '{}' ';'
|
||||
if [ "${ns_appresdir}" != "" ]; then \
|
||||
rm -rf ${ns_appresdir}/leim; \
|
||||
mv ${INSTALLDIR} ${ns_appresdir} || exit 1; \
|
||||
rmdir -p ${ns_appresdir}/share/emacs/${version} 2>/dev/null || true; \
|
||||
else true ; fi
|
||||
find ${LEIM_INSTALLDIR} -exec chown $${installuser} '{}' ';'
|
||||
|
||||
clean mostlyclean:
|
||||
rm -f ${TIT_MISC} ${TIT_MISC:.el=.elc} \
|
||||
|
|
Loading…
Add table
Reference in a new issue