--- Local.rules.template 2016-09-19 05:15:36.000000000 +0900 +++ Local.rules 2016-10-03 15:58:51.714394000 +0900 @@ -65,8 +65,8 @@ # is installed -- normally /usr/local, and set using the `--prefix' # parameter to `configure'. See the INSTALL file. -XEMACS_INSTALLED_PACKAGES_ROOT = /usr/local/share/xemacs -# XEMACS_INSTALLED_PACKAGES_ROOT = /usr/local/lib/xemacs +#XEMACS_INSTALLED_PACKAGES_ROOT = /usr/local/share/xemacs +#XEMACS_INSTALLED_PACKAGES_ROOT = /usr/local/lib/xemacs # If you are developing XEmacs, you probably don't want to install the # packages under /usr/local, which is where the stable, released version of @@ -76,7 +76,7 @@ # in package-src/, and the installed packages in xemacs-packages/ and # mule-packages/. If you do everything this way, you might want to set things as follows: # -#XEMACS_INSTALLED_PACKAGES_ROOT = ${XEMACS_PACKAGES_BASE}/.. +XEMACS_INSTALLED_PACKAGES_ROOT = ${XEMACS_PACKAGES_BASE}/.. # # which puts the xemacs-packages/ and mule-packages/ directories as sisters # of the package-src/ directory, and you have to tell configure the @@ -157,10 +157,18 @@ #### Path to various programs -# Path to BSD install. -# INSTALL = ginstall -c +# path to GNU make, If you are running FreeBSD, +# install devel/gmake port or corresponding package and then +# use the latter. +# +# MAKE = make +MAKE = gmake + +# Path to BSD install. If you use ginstall, install sysutils/coreutils +# port or corresponding package. +INSTALL = ginstall -c # -INSTALL = install -c +#INSTALL = install -c # Define to build tarfiles for installation/distribution # @@ -170,12 +178,11 @@ BUILD_TARS = endif -# Path to GNU tar. +# Path to GNU tar. If you run FreeBSD, install archivers/gtar port +# or corresponding package and then use the latter. # -TAR = tar -# if you run FreeBSD install the gtar package in archivers/gtar -# and use this option -# TAR = gtar +#TAR = tar +TAR = gtar # Path to bzip2 # If this is set, then tar.bz2 packages will be created. @@ -198,6 +205,10 @@ # MAKEINFO = makeinfo +# set INFO_ENCODING. If null, set iso-2022-7 +# +INFO_ENCODING = utf-8 + # path to texi2html or texi2any # TEXI2HTML = texi2any @@ -242,6 +253,10 @@ # LATEX = latex +# Stuff TEXINPUTS setting only current directory and standard texmf path. +# +TEXINPUTS = .//:/usr/local/share/texmf//:/usr/local/share/texmf-local//:/usr/local/share/texmf-dist// + # path to msgfmt # # Under Cygwin, you need to install the gettext-devel package under the @@ -250,20 +265,28 @@ MSGFMT = msgfmt ifneq ('$(symlink)','t') - # path to GNU cp, use the latter if no GNU cp is available. - # use the latter option if you are running FreeBSD. - # - RCOPY = cp -af - # RCOPY = cp -pR +# path to GNU cp. If you are running FreeBSD, +# install sysutils/coreutils port or corresponding package and then +# use the latter. +# +# RCOPY = cp -af +RCOPY = gcp -af else - # This next one is for running in-place from a CVS checkout. - # NOTE: cp on FreeBSD does not have a --symbolic-link option - # so this will not work. You could try something like - # `pax -rw -l -p p', but this will create hard links rather than - # symbolic links. - # - RCOPY = cp --force --recursive --symbolic-link +# This next one is for running in-place from a CVS checkout. +# If you are running FreeBSD, install sysutils/coreutils port +# or corresponding package and then use the latter. +# +# RCOPY = cp --force --recursive --symbolic-link +RCOPY = gcp --force --recursive --symbolic-link endif + +# path to GNU env. If you are running FreeBSD, +# install sysutils/coreutils port or corresponding package and then +# use the latter. +# +# ENV = env +ENV = genv + # # Local Variables: # mode: makefile