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 /graphics/plotutils | |
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 'graphics/plotutils')
-rw-r--r-- | graphics/plotutils/Makefile | 5 | ||||
-rw-r--r-- | graphics/plotutils/PLIST | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/graphics/plotutils/Makefile b/graphics/plotutils/Makefile index 9e631132998..946451e7f82 100644 --- a/graphics/plotutils/Makefile +++ b/graphics/plotutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2001/06/11 06:34:38 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2002/02/18 15:14:21 seb Exp $ # DISTNAME= plotutils-2.4.1 @@ -20,6 +20,5 @@ USE_LIBTOOL= yes USE_X11BASE= yes LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig ${WRKSRC}/libxmi/ltconfig -INFO_FILES= plotutils.info - +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/plotutils/PLIST b/graphics/plotutils/PLIST index 9f5d85c3cbf..a220c47de8c 100644 --- a/graphics/plotutils/PLIST +++ b/graphics/plotutils/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 23:53:09 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:21 seb Exp $ bin/double bin/graph bin/ode @@ -67,9 +67,9 @@ share/tek2plot/scale.tek share/tek2plot/skymap.tek share/tek2plot/skymap2.tek share/tek2plot/usmap.tek -@unexec install-info --delete %D/info/plotutils.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/plotutils.info %D/info/dir info/plotutils.info -@exec install-info %D/info/plotutils.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/plotutils.info %D/info/dir @dirrm share/libplot @dirrm share/ode @dirrm share/pic2plot |