diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2003-04-17 02:15:07 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2003-04-17 02:15:07 +0000 |
commit | d4ca78288eb49168ccd20c8ebddb72e47eeb8de9 (patch) | |
tree | 169fbc36244b5f669e19c552b7e95dfa53cdeeee /devel/flim | |
parent | 4372bdeb233454cd3603f2aa6bf37803f90a8887 (diff) | |
download | pkgsrc-d4ca78288eb49168ccd20c8ebddb72e47eeb8de9.tar.gz |
Take care of a qkc(1)'s odd redirect behavior.
Diffstat (limited to 'devel/flim')
-rw-r--r-- | devel/flim/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/devel/flim/Makefile b/devel/flim/Makefile index 6edf2128ce8..c757092ac45 100644 --- a/devel/flim/Makefile +++ b/devel/flim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/04/13 04:14:23 uebayasi Exp $ +# $NetBSD: Makefile,v 1.7 2003/04/17 02:15:07 uebayasi Exp $ DISTNAME= flim-1.14.5 PKGREVISION= 1 @@ -26,10 +26,13 @@ MAKEFLAGS+= PACKAGEDIR=${EMACS_LISPPREX:C|/lisp$||} INFO_FILES= mime-en.info mime-ja.info pre-build: - ${RM} -f ${WRKSRC}/mime-*.info - ${LOCALBASE}/bin/qkc -eu ${WRKSRC}/mime-*.texi - cd ${WRKSRC} && ${MAKEINFO} --no-validate --no-split mime-en.texi - cd ${WRKSRC} && ${MAKEINFO} --no-validate --no-split mime-ja.texi + @cd ${WRKSRC}; \ + for i in mime-en mime-ja; do \ + ${RM} -f $${i}.info; \ + ${CP} $${i}.texi $${i}.texi.orig; \ + ${LOCALBASE}/bin/qkc -Oeu $${i}.texi.orig >$${i}.texi; \ + ${MAKEINFO} --force --no-validate --no-split $${i}.texi; \ + done pre-install: ${INSTALL_DATA} ${WRKSRC}/mime-*.info ${PREFIX}/info |