diff options
author | seb <seb> | 2002-02-18 15:14:00 +0000 |
---|---|---|
committer | seb <seb> | 2002-02-18 15:14:00 +0000 |
commit | 3d0911b16019865b66bd0db4ae4768f4d13d0909 (patch) | |
tree | c84409a165bd501342b10b825394cf1eb3684d02 /math/gsl | |
parent | 41d99a9521443bed0b4de1c8b7469d9717545251 (diff) | |
download | pkgsrc-3d0911b16019865b66bd0db4ae4768f4d13d0909.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/gsl')
-rw-r--r-- | math/gsl/Makefile | 4 | ||||
-rw-r--r-- | math/gsl/PLIST | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile index cf843b3bbdb..0a13a3e1b82 100644 --- a/math/gsl/Makefile +++ b/math/gsl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/11/22 12:58:40 agc Exp $ +# $NetBSD: Makefile,v 1.7 2002/02/18 15:14:30 seb Exp $ # DISTNAME= gsl-1.0 @@ -22,8 +22,8 @@ HOMEPAGE= http://sources.redhat.com/gsl/ COMMENT= The GNU Scientific Library GNU_CONFIGURE= yes -USE_GTEXINFO= yes USE_LIBTOOL= yes LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/gsl/PLIST b/math/gsl/PLIST index a06353df86a..864bc956018 100644 --- a/math/gsl/PLIST +++ b/math/gsl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2001/11/22 12:58:40 agc Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/02/18 15:14:31 seb Exp $ bin/gsl-config bin/gsl-histogram bin/gsl-randist @@ -207,7 +207,7 @@ include/gsl/gsl_vector_uint.h include/gsl/gsl_vector_ulong.h include/gsl/gsl_vector_ushort.h include/gsl/gsl_version.h -@unexec install-info --delete --info-dir=%D/info %D/info/gsl-ref.info +@unexec ${INSTALL_INFO} --delete --info-dir=%D/info %D/info/gsl-ref.info info/gsl-ref.info info/gsl-ref.info-1 info/gsl-ref.info-10 @@ -231,7 +231,7 @@ info/gsl-ref.info-6 info/gsl-ref.info-7 info/gsl-ref.info-8 info/gsl-ref.info-9 -@exec install-info --info-dir=%D/info %D/info/gsl-ref.info +@exec ${INSTALL_INFO} --info-dir=%D/info %D/info/gsl-ref.info lib/libgsl.a lib/libgsl.la lib/libgsl.so |