diff options
author | taoka <taoka@FreeBSD.org> | 2000-09-18 10:05:45 +0800 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 2000-09-18 10:05:45 +0800 |
commit | 2bfe31fd1bdb1c93b6d77d7911fe5b2ff5eabc00 (patch) | |
tree | faaf72c80d3994bdba110cd5e0ff2f04b1235c6e /print/yatex/files | |
parent | 7f215823c354043b73c54a070aa6259413facea9 (diff) | |
download | freebsd-ports-gnome-2bfe31fd1bdb1c93b6d77d7911fe5b2ff5eabc00.tar.gz freebsd-ports-gnome-2bfe31fd1bdb1c93b6d77d7911fe5b2ff5eabc00.tar.zst freebsd-ports-gnome-2bfe31fd1bdb1c93b6d77d7911fe5b2ff5eabc00.zip |
(1) Fixed a problem hunging up the package-making system on bento
Pointed out: asami
(2) Modified to use variables defined in Mk/bsd.emacs.mk as many as possible.
Diffstat (limited to 'print/yatex/files')
-rw-r--r-- | print/yatex/files/DEINSTALL.tmpl | 2 | ||||
-rw-r--r-- | print/yatex/files/INSTALL.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/print/yatex/files/DEINSTALL.tmpl b/print/yatex/files/DEINSTALL.tmpl index 3691c577f747..a5fb17959c23 100644 --- a/print/yatex/files/DEINSTALL.tmpl +++ b/print/yatex/files/DEINSTALL.tmpl @@ -11,7 +11,7 @@ SED=${SED:-%%SED%%} infodir=${INFODIR:-%%INFODIR%%} infofiles=${INFOFILES:-%%INFOFILES%%} -if [ "X$2" = X"DEINSTALL" -a %%EMACS%% != xemacs ]; then +if [ "X$2" = X"DEINSTALL" -a %%EMACS_NAME%% != xemacs ]; then ${ECHO} "Deleting entry for \"${pkgname}\" from ${infodir}/dir" for file in `echo ${infofiles} | ${SED} "s,:, ,g"`; do install-info --delete ${infodir}/${file} ${infodir}/dir diff --git a/print/yatex/files/INSTALL.tmpl b/print/yatex/files/INSTALL.tmpl index 6b343f1846df..1a7b39c38195 100644 --- a/print/yatex/files/INSTALL.tmpl +++ b/print/yatex/files/INSTALL.tmpl @@ -28,7 +28,7 @@ if [ "X$2" = X"POST-INSTALL" ]; then break fi file=`${ECHO} ${infofiles} | ${CUT} -d : -f $count` - if [ X%%EMACS%% = Xxemacs ]; then + if [ X%%EMACS_NAME%% = Xxemacs ]; then file=${file}.info fi nodename=`${ECHO} ${infonodes} | ${CUT} -d : -f $count` @@ -43,7 +43,7 @@ if [ "X$2" = X"POST-INSTALL" ]; then fi count=`${EXPR} $count + 1` done - if [ X%%EMACS%% != Xxemacs ]; then + if [ X%%EMACS_NAME%% != Xxemacs ]; then ${ECHO} "Adding entry for \"${pkgname}\" to ${infodir}/dir" for file in `${ECHO} ${infofiles} | ${SED} "s,:, ,g"`; do install-info ${infodir}/${file} ${infodir}/dir |