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 /print/a2ps | |
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 'print/a2ps')
-rw-r--r-- | print/a2ps/Makefile | 4 | ||||
-rw-r--r-- | print/a2ps/PLIST | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/print/a2ps/Makefile b/print/a2ps/Makefile index b4125eae448..5e4e961fde9 100644 --- a/print/a2ps/Makefile +++ b/print/a2ps/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2002/01/06 02:10:56 tron Exp $ +# $NetBSD: Makefile,v 1.34 2002/02/18 15:14:37 seb Exp $ # DISTNAME= a2ps-4.13b @@ -17,7 +17,6 @@ DEPENDS+= psutils-1.17:../../print/psutils STRIP= # empty USE_PERL5= YES USE_GMAKE= YES -USE_GTEXINFO= YES USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/auxdir/ltconfig @@ -32,4 +31,5 @@ pre-build: ${TOUCH} ${WRKSRC}/doc/*.info ${TOUCH} ${WRKSRC}/doc/*.dvi +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/print/a2ps/PLIST b/print/a2ps/PLIST index dfb98c340eb..180de08527a 100644 --- a/print/a2ps/PLIST +++ b/print/a2ps/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 23:27:28 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:37 seb Exp $ bin/a2ps bin/card bin/composeglyphs @@ -12,9 +12,9 @@ bin/texi2dvi4a2ps etc/a2ps-site.cfg etc/a2ps.cfg include/liba2ps.h -@unexec install-info --delete %D/info/a2ps.info %D/info/dir -@unexec install-info --delete %D/info/ogonkify.info %D/info/dir -@unexec install-info --delete %D/info/regex.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/a2ps.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/ogonkify.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/regex.info %D/info/dir info/a2ps.info info/a2ps.info-1 info/a2ps.info-2 @@ -27,9 +27,9 @@ info/regex.info info/regex.info-1 info/regex.info-2 info/regex.info-3 -@exec install-info %D/info/a2ps.info %D/info/dir -@exec install-info %D/info/ogonkify.info %D/info/dir -@exec install-info %D/info/regex.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/a2ps.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/ogonkify.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/regex.info %D/info/dir lib/liba2ps.a lib/liba2ps.la lib/liba2ps.so |