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 /print/auctex | |
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 'print/auctex')
-rw-r--r-- | print/auctex/Makefile | 5 | ||||
-rw-r--r-- | print/auctex/PLIST | 6 | ||||
-rw-r--r-- | print/auctex/distinfo | 3 | ||||
-rw-r--r-- | print/auctex/patches/patch-ab | 33 |
4 files changed, 41 insertions, 6 deletions
diff --git a/print/auctex/Makefile b/print/auctex/Makefile index 6e0aa35b1fe..9179b56b6bd 100644 --- a/print/auctex/Makefile +++ b/print/auctex/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/05/03 22:16:52 jtb Exp $ +# $NetBSD: Makefile,v 1.7 2002/02/18 15:14:37 seb Exp $ DISTNAME= auctex-10.0g CATEGORIES= print @@ -40,7 +40,7 @@ post-patch: post-build: ${RM} -f ${WRKSRC}/doc/auctex* - cd ${WRKSRC}/doc && ${MAKE} auctex + cd ${WRKSRC}/doc && ${SETENV} ${MAKE_ENV} ${MAKE} auctex do-install: ${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}/auctex @@ -58,4 +58,5 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/style/*.el* ${PREFIX}/${LISPDIR}/auctex/style ${INSTALL_DATA} ${WRKSRC}/doc/auctex* ${PREFIX}/${INFODIR} +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/print/auctex/PLIST b/print/auctex/PLIST index d8b7efa03d5..28f40b464a6 100644 --- a/print/auctex/PLIST +++ b/print/auctex/PLIST @@ -1,10 +1,10 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 23:27:33 zuntum Exp $ -@unexec install-info --delete --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:38 seb Exp $ +@unexec ${INSTALL_INFO} --delete --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex ${INFODIR}/auctex ${INFODIR}/auctex-1 ${INFODIR}/auctex-2 ${INFODIR}/auctex-3 -@exec install-info --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex +@exec ${INSTALL_INFO} --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex ${LISPDIR}/auctex/auc-old.el ${LISPDIR}/auctex/auc-old.elc ${LISPDIR}/auctex/bib-cite.el diff --git a/print/auctex/distinfo b/print/auctex/distinfo index f60436a7fdc..d39885b5484 100644 --- a/print/auctex/distinfo +++ b/print/auctex/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2001/04/19 22:23:45 jtb Exp $ +$NetBSD: distinfo,v 1.3 2002/02/18 15:14:38 seb Exp $ SHA1 (auctex-10.0g.tar.gz) = b73539603ce1967560d1a9494b003ac292440d9d Size (auctex-10.0g.tar.gz) = 283767 bytes SHA1 (patch-aa) = b0c04b4d27fc90ec01673c002c9e529ccde9afde +SHA1 (patch-ab) = 08e32149fd6aa7d26c21f1881acdab54ce51b950 SHA1 (patch-ac) = 27f38d4176f542f4a69044ba7697197fd2556c8e diff --git a/print/auctex/patches/patch-ab b/print/auctex/patches/patch-ab new file mode 100644 index 00000000000..61e33ab09da --- /dev/null +++ b/print/auctex/patches/patch-ab @@ -0,0 +1,33 @@ +$NetBSD: patch-ab,v 1.3 2002/02/18 15:14:38 seb Exp $ + +--- doc/Makefile.orig Wed Apr 11 13:54:04 2001 ++++ doc/Makefile +@@ -39,23 +39,23 @@ + dvips auc-tex.dvi -o auc-tex.ps + + auctex: auc-tex.texi install.texi intro.texi changes.texi +- -makeinfo auc-tex.texi ++ -$(MAKEINFO) auc-tex.texi + @echo "**********************************************************" + @echo "** If this gave trouble, maybe you need to install" + @echo "** a newer version of texinfo?" + @echo "**********************************************************" + + INSTALLATION: install.texi +- -makeinfo --no-headers install.texi --output INSTALLATION ++ -$(MAKEINFO) --no-headers install.texi --output INSTALLATION + + README: intro.texi +- -makeinfo --no-headers intro.texi --output README ++ -$(MAKEINFO) --no-headers intro.texi --output README + + CHANGES: changes.texi +- -makeinfo --no-headers changes.texi --output CHANGES ++ -$(MAKEINFO) --no-headers changes.texi --output CHANGES + + HISTORY: history.texi +- -makeinfo --no-headers history.texi --output HISTORY ++ -$(MAKEINFO) --no-headers history.texi --output HISTORY + + install: auctex + cp auctex auctex-* $(infodir) |