diff options
author | seb <seb@pkgsrc.org> | 2002-02-18 15:14:00 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2002-02-18 15:14:00 +0000 |
commit | 66111c6d15be91debc28f649061f5ed03d48e340 (patch) | |
tree | c84409a165bd501342b10b825394cf1eb3684d02 /editors/mule/Makefile | |
parent | 0b7fe93445e5b9c2ed4f512cd83d2c904922531b (diff) | |
download | pkgsrc-66111c6d15be91debc28f649061f5ed03d48e340.tar.gz |
Introduce new framework for handling info files generation and installation.
Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
removal of USE_GTEXINFO
INSTALL_INFO added to PLIST_SUBST
`${INSTALL_INFO}' replace `install-info' in target rules
print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
makeinfo command usage
See -newly added by this commit- section 10.24 of Packages.txt for
further information.
Diffstat (limited to 'editors/mule/Makefile')
-rw-r--r-- | editors/mule/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/editors/mule/Makefile b/editors/mule/Makefile index fc34c595cb7..21dc0c5cd6f 100644 --- a/editors/mule/Makefile +++ b/editors/mule/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2002/01/08 09:36:51 agc Exp $ +# $NetBSD: Makefile,v 1.8 2002/02/18 15:14:17 seb Exp $ DISTNAME= mule-2.3 CATEGORIES= editors @@ -22,7 +22,6 @@ DEPENDS+= Canna-lib-3.5b2:../../japanese/canna-lib WRKSRC= ${WRKDIR}/mule GNU_CONFIGURE= yes USE_GMAKE= yes -USE_GTEXINFO= yes CONFIGURE_ARGS+= ${MACHINE_ARCH}--netbsd --with-x --with-x-toolkit=lucid CONFIGURE_ARGS+= --terminal-face --mcpath @@ -40,6 +39,8 @@ CONFIGURE_ARGS+= --canna --canna-includes=${LOCALBASE}/include --canna-libraries INFO_FILES= antenews-jp canna-jp cl dired-x egg-jp emacs forms gnus mule \ mule-jp sc vip +TEXINFO_OVERRIDE= YES +TEXINFO_PATTERNS+= Makefile MAN1= coco.1 ctags.1 etags.1 m2ps.1 mule.1 @@ -48,4 +49,5 @@ post-patch: @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/info.patch @${RM} -f ${WRKSRC}/info/*.orig +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" |