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 /devel/libg++ | |
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 'devel/libg++')
-rw-r--r-- | devel/libg++/Makefile | 3 | ||||
-rw-r--r-- | devel/libg++/PLIST.pre | 6 | ||||
-rw-r--r-- | devel/libg++/files/Makefile | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/devel/libg++/Makefile b/devel/libg++/Makefile index 0374f1dc186..04da6892339 100644 --- a/devel/libg++/Makefile +++ b/devel/libg++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2001/05/17 08:38:44 abs Exp $ +# $NetBSD: Makefile,v 1.20 2002/02/18 15:14:13 seb Exp $ # DISTNAME= libg++-${GXXVERSION} @@ -33,4 +33,5 @@ post-install: /bin/ls 2>/dev/null -1d lib/libg++*.a lib/libg++.so*) \ >${PLIST_SRC} +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/libg++/PLIST.pre b/devel/libg++/PLIST.pre index b7f62525458..42d394e2060 100644 --- a/devel/libg++/PLIST.pre +++ b/devel/libg++/PLIST.pre @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST.pre,v 1.1 2001/11/01 01:30:52 zuntum Exp $ +@comment $NetBSD: PLIST.pre,v 1.2 2002/02/18 15:14:13 seb Exp $ bin/genclass include/g++/gen/AVLMap.hP include/g++/gen/AVLSet.hP @@ -172,6 +172,6 @@ include/g++/sysent.h include/g++/typemacros.h @dirrm include/g++/gen @dirrm include/g++ -@unexec install-info --delete %D/info/libg++.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/libg++.info %D/info/dir info/libg++.info -@exec install-info %D/info/libg++.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/libg++.info %D/info/dir diff --git a/devel/libg++/files/Makefile b/devel/libg++/files/Makefile index fc79af3c93c..4132607a156 100644 --- a/devel/libg++/files/Makefile +++ b/devel/libg++/files/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1998/05/18 14:05:44 tv Exp $ +# $NetBSD: Makefile,v 1.3 2002/02/18 15:14:13 seb Exp $ # Makefile for libg++ add-on for NetBSD. Requires libstdc++ shlib v1.x. LIB=g++ @@ -67,7 +67,7 @@ genclass: libg++/genclass/genclass.sh sed -e "s,<VERSION>,${GXXVERSION},;s,^PROTODIR.*,PROTODIR=${PREFIX}/include/g++/gen," ${.ALLSRC} >${.TARGET} libg++.info: libg++/libg++.texi - makeinfo --no-split -I libg++/texinfo -o libg++.info libg++/libg++.texi + ${MAKEINFO} --no-split -I libg++/texinfo -o libg++.info libg++/libg++.texi .PATH: libg++/src librx |