summaryrefslogtreecommitdiff
path: root/editors/flim113-emacs20
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-01-18 02:33:02 +0000
committerSteve Price <steve@FreeBSD.org>1999-01-18 02:33:02 +0000
commit8fc0da1a4c347139ae438d4f75a3c422ba4581ed (patch)
treecacad7b45943e2b7cd26c310f36e3f5d39c20c72 /editors/flim113-emacs20
parentGet this to build in -current. (diff)
The new version of texinfo in -current defaults to bailing with no
output on errors. Add the --force flag so it doesn't.
Notes
Notes: svn path=/head/; revision=16122
Diffstat (limited to 'editors/flim113-emacs20')
-rw-r--r--editors/flim113-emacs20/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/editors/flim113-emacs20/Makefile b/editors/flim113-emacs20/Makefile
index 1fe17fd3faf6..7656141fa0cd 100644
--- a/editors/flim113-emacs20/Makefile
+++ b/editors/flim113-emacs20/Makefile
@@ -3,7 +3,7 @@
# Date created: 23 September 1998
# Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
#
-# $Id$
+# $Id: Makefile,v 1.1.1.1 1999/01/16 01:36:55 kuriyama Exp $
#
DISTNAME= flim-${FLIM_VER}
@@ -37,13 +37,21 @@ EMACS_VER= 20.3
EMACS_LIBDIR= share/${EMACS_NAME}
EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER}
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 300006
+MAKEINFO= makeinfo --no-split --force
+.else
+MAKEINFO= makeinfo --no-split
+.endif
+
post-build:
@(cd ${WRKSRC} ; \
for i in mime-en.texi mime-ja.texi; do \
${MV} $${i} $${i}.jis ; \
${CAT} $${i}.jis | nkf -e > $${i} ; \
${ECHO} "===> Please ignore the following errors." ; \
- makeinfo --no-split $${i} || ${TRUE} ; \
+ ${MAKEINFO} $${i} || ${TRUE} ; \
done)
post-install:
@@ -59,4 +67,4 @@ post-install:
done
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>