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 /math/calc/patches | |
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 'math/calc/patches')
-rw-r--r-- | math/calc/patches/patch-aa | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/math/calc/patches/patch-aa b/math/calc/patches/patch-aa index 4bd04c828a0..b632b4b4d9a 100644 --- a/math/calc/patches/patch-aa +++ b/math/calc/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.2 2000/12/13 23:51:35 jtb Exp $ +$NetBSD: patch-aa,v 1.3 2002/02/18 15:14:29 seb Exp $ ---- Makefile.orig Mon Dec 16 04:50:45 1996 +--- Makefile.orig Mon Dec 16 05:50:45 1996 +++ Makefile -@@ -29,10 +29,10 @@ +@@ -29,10 +29,9 @@ # Programs. @@ -11,11 +11,10 @@ $NetBSD: patch-aa,v 1.2 2000/12/13 23:51:35 jtb Exp $ TEX = tex TEXINDEX = texindex -MAKEINFO = makeinfo -+MAKEINFO = makeinfo --no-validate MAKE = make ECHO = @echo REMOVE = -rm -f -@@ -54,13 +54,10 @@ +@@ -54,13 +53,10 @@ # to make the steps more explicit while the `make' is in progress. all: $(MAKE) compile @@ -29,14 +28,14 @@ $NetBSD: patch-aa,v 1.2 2000/12/13 23:51:35 jtb Exp $ $(MAKE) info $(ECHO) "Calc is now installed." -@@ -83,9 +80,9 @@ +@@ -83,9 +79,9 @@ # Format the Calc manual for the Info system using makeinfo. info: calc.info calc.info: calc.texinfo - -$(MAKEINFO) calc.texinfo - $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial." - $(MAKE) texinfo -+ $(MAKEINFO) calc.texinfo ++ $(MAKEINFO) --no-validate calc.texinfo +# $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial." +# $(MAKE) texinfo |