summaryrefslogtreecommitdiff
path: root/print/yatex/files
diff options
context:
space:
mode:
authorSatoshi Taoka <taoka@FreeBSD.org>1999-09-27 13:48:10 +0000
committerSatoshi Taoka <taoka@FreeBSD.org>1999-09-27 13:48:10 +0000
commitaae99987f81d3b5083f366fc850f402c0dd94a96 (patch)
tree293325f88b9854ac9b61021ce3efe814eb9c623e /print/yatex/files
parentChanged a lookup port for XEmacs to XEmacs's package style (diff)
Updated to lastest version
Modified MASTER_SITES Changed two ports for XEmacs to XEmacs's package style
Notes
Notes: svn path=/head/; revision=22003
Diffstat (limited to 'print/yatex/files')
-rw-r--r--print/yatex/files/DEINSTALL.tmpl2
-rw-r--r--print/yatex/files/INSTALL.tmpl10
2 files changed, 7 insertions, 5 deletions
diff --git a/print/yatex/files/DEINSTALL.tmpl b/print/yatex/files/DEINSTALL.tmpl
index 526f1ee7df18..3691c577f747 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" ]; then
+if [ "X$2" = X"DEINSTALL" -a %%EMACS%% != 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 23726eaa8d6e..fd33fb2b64a1 100644
--- a/print/yatex/files/INSTALL.tmpl
+++ b/print/yatex/files/INSTALL.tmpl
@@ -40,10 +40,12 @@ if [ "X$2" = X"POST-INSTALL" ]; then
fi
count=`${EXPR} $count + 1`
done
- ${ECHO} "Adding entry for \"${pkgname}\" to ${infodir}/dir"
- for file in `${ECHO} ${infofiles} | ${SED} "s,:, ,g"`; do
- install-info ${infodir}/${file} ${infodir}/dir
- done
+ if [ %%EMACS%% != xemacs ]; then
+ ${ECHO} "Adding entry for \"${pkgname}\" to ${infodir}/dir"
+ for file in `${ECHO} ${infofiles} | ${SED} "s,:, ,g"`; do
+ install-info ${infodir}/${file} ${infodir}/dir
+ done
+ fi
exit 0
else
exit 0