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 /sysutils/findutils | |
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 'sysutils/findutils')
-rw-r--r-- | sysutils/findutils/Makefile | 4 | ||||
-rw-r--r-- | sysutils/findutils/PLIST | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/findutils/Makefile b/sysutils/findutils/Makefile index a68ae6101c8..a32a63a4b50 100644 --- a/sysutils/findutils/Makefile +++ b/sysutils/findutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/17 17:42:13 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2002/02/18 15:14:41 seb Exp $ # FreeBSD Id: Makefile,v 1.13 1999/01/27 07:41:14 fenner Exp $ DISTNAME= findutils-4.1 @@ -9,10 +9,10 @@ MAINTAINER= bouyer@netbsd.org HOMEPAGE= http://www.gnu.org/software/findutils/findutils.html COMMENT= The GNU find, xargs and locate utilities -USE_GTEXINFO= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --program-prefix=g INFO_FILES= find.info +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/sysutils/findutils/PLIST b/sysutils/findutils/PLIST index 120f74ae943..f739ebabd8f 100644 --- a/sysutils/findutils/PLIST +++ b/sysutils/findutils/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:53:07 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:41 seb Exp $ bin/gfind bin/gxargs bin/glocate @@ -6,11 +6,11 @@ bin/gupdatedb libexec/gfrcode libexec/gcode libexec/gbigram -@unexec install-info --delete %D/info/find.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/find.info %D/info/dir info/find.info info/find.info-1 info/find.info-2 -@exec install-info %D/info/find.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/find.info %D/info/dir man/cat1/gfind.1 man/cat1/gxargs.1 man/cat1/glocate.1 |