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/gettext | |
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/gettext')
-rw-r--r-- | devel/gettext/Makefile | 4 | ||||
-rw-r--r-- | devel/gettext/PLIST | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/devel/gettext/Makefile b/devel/gettext/Makefile index b5f332b0a34..62553d17c2c 100644 --- a/devel/gettext/Makefile +++ b/devel/gettext/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2001/11/29 01:12:29 hubertf Exp $ +# $NetBSD: Makefile,v 1.34 2002/02/18 15:14:10 seb Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1998/08/09 15:13:33 kuriyama Exp # @@ -19,6 +19,7 @@ USE_LIBTOOL= yes LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig INFO_FILES= gettext.info +TEXINFO_OVERRIDE= YES post-patch: ${RM} -f ${WRKSRC}/intl/libgettext.h @@ -32,4 +33,5 @@ post-install: cd ${WRKSRC}/intl; ${MAKE_PROGRAM} install-data .include "../../devel/gettext-lib/buildlink.mk" +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/gettext/PLIST b/devel/gettext/PLIST index 24203558eeb..82472334cf8 100644 --- a/devel/gettext/PLIST +++ b/devel/gettext/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:23:39 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:10 seb Exp $ bin/gettext bin/gettextize bin/msgcmp @@ -7,14 +7,14 @@ bin/msgfmt bin/msgmerge bin/msgunfmt bin/xgettext -@unexec install-info --delete %D/info/gettext.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/gettext.info %D/info/dir info/gettext.info info/gettext.info-1 info/gettext.info-2 info/gettext.info-3 info/gettext.info-4 info/gettext.info-5 -@exec install-info %D/info/gettext.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/gettext.info %D/info/dir share/gettext/ABOUT-NLS share/gettext/intl/ChangeLog share/gettext/intl/Makefile.in |