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 /audio/festdoc | |
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 'audio/festdoc')
-rw-r--r-- | audio/festdoc/Makefile | 3 | ||||
-rw-r--r-- | audio/festdoc/PLIST | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/audio/festdoc/Makefile b/audio/festdoc/Makefile index f4bfd8d7849..d24131202d1 100644 --- a/audio/festdoc/Makefile +++ b/audio/festdoc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/07/18 15:19:35 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2002/02/18 15:14:01 seb Exp $ DISTNAME= festdoc-1.4.0.1 PKGNAME= festival-doc-1.4.0.1 @@ -33,4 +33,5 @@ do-install: ${RMDIR} festival/info ${RM} ${PREFIX}/info/festival.info.orig +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/audio/festdoc/PLIST b/audio/festdoc/PLIST index a6d38c298cf..b82d2ba671b 100644 --- a/audio/festdoc/PLIST +++ b/audio/festdoc/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:15:47 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:02 seb Exp $ share/doc/festival/speechtools/images_gen/docppimath_929959730_6.gif share/doc/festival/speechtools/images_gen/docppmath_929959728_2.gif share/doc/festival/speechtools/images_gen/docppmath_929959741_1.gif @@ -140,7 +140,7 @@ share/doc/festival/speechtools/index.html share/doc/festival/speechtools/HTML.index share/doc/festival/speechtools/TeX.formulae @dirrm share/doc/festival/speechtools -@unexec install-info --delete %D/info/festival.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/festival.info %D/info/dir info/festival.info info/festival.info-9 info/festival.info-8 @@ -152,7 +152,7 @@ info/festival.info-3 info/festival.info-2 info/festival.info-1 info/festival.info-10 -@exec install-info %D/info/festival.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/festival.info %D/info/dir share/doc/festival/festival/user-manual/festival_35.html share/doc/festival/festival/user-manual/festival_1.html share/doc/festival/festival/user-manual/festival_2.html |