diff options
author | seb <seb> | 2002-02-18 15:14:00 +0000 |
---|---|---|
committer | seb <seb> | 2002-02-18 15:14:00 +0000 |
commit | 94736fef3d3bc180c38e89ad3b9fc89d91756057 (patch) | |
tree | c84409a165bd501342b10b825394cf1eb3684d02 /print/teTeX-bin | |
parent | d1274f983b9d5510a39b04e8946f0ba1dc328035 (diff) | |
download | pkgsrc-94736fef3d3bc180c38e89ad3b9fc89d91756057.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/teTeX-bin')
-rw-r--r-- | print/teTeX-bin/Makefile | 3 | ||||
-rw-r--r-- | print/teTeX-bin/PLIST | 18 |
2 files changed, 11 insertions, 10 deletions
diff --git a/print/teTeX-bin/Makefile b/print/teTeX-bin/Makefile index aecbafe8cf7..910c0c99ab2 100644 --- a/print/teTeX-bin/Makefile +++ b/print/teTeX-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2002/01/28 15:25:13 drochner Exp $ +# $NetBSD: Makefile,v 1.34 2002/02/18 15:14:39 seb Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/05 06:56:41 tg Exp # @@ -69,4 +69,5 @@ post-install: texconfig font vardir /var/spool/texfonts texconfig font options appendonlydir varfonts +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/print/teTeX-bin/PLIST b/print/teTeX-bin/PLIST index a549a2c83c1..f8ce9d4cd20 100644 --- a/print/teTeX-bin/PLIST +++ b/print/teTeX-bin/PLIST @@ -1,11 +1,11 @@ -@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:12:57 skrll Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/02/18 15:14:39 seb Exp $ @comment There are three files in this package that teTeX-share installs @comment and that teTeX-bin modifies. Take care of this: lib/libkpathsea.a -@unexec install-info --delete %D/info/latex.info %D/info/dir -@unexec install-info --delete %D/info/dvips.info %D/info/dir -@unexec install-info --delete %D/info/web2c.info %D/info/dir -@unexec install-info --delete %D/info/kpathsea.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/latex.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/dvips.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/web2c.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/kpathsea.info %D/info/dir info/latex.info-3 info/latex.info-2 info/latex.info-1 @@ -21,10 +21,10 @@ info/web2c.info-2 info/web2c.info-1 info/web2c.info info/kpathsea.info -@exec install-info %D/info/latex.info %D/info/dir -@exec install-info %D/info/dvips.info %D/info/dir -@exec install-info %D/info/web2c.info %D/info/dir -@exec install-info %D/info/kpathsea.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/latex.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/dvips.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/web2c.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/kpathsea.info %D/info/dir include/kpathsea/xstat.h include/kpathsea/xopendir.h include/kpathsea/win32lib.h |