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/semantic | |
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/semantic')
-rw-r--r-- | devel/semantic/Makefile | 3 | ||||
-rw-r--r-- | devel/semantic/PLIST | 6 | ||||
-rw-r--r-- | devel/semantic/distinfo | 3 | ||||
-rw-r--r-- | devel/semantic/patches/patch-aa | 12 |
4 files changed, 19 insertions, 5 deletions
diff --git a/devel/semantic/Makefile b/devel/semantic/Makefile index fc81894efe6..36ad2a8fe0b 100644 --- a/devel/semantic/Makefile +++ b/devel/semantic/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/09/27 23:17:58 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2002/02/18 15:14:15 seb Exp $ # DISTNAME= semantic-1.4beta5 @@ -48,4 +48,5 @@ do-install: cd ${WRKSRC} && ${INSTALL_DATA} ${INFO_FILES} ${OTHER_INFO} \ ${PREFIX}/info +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/semantic/PLIST b/devel/semantic/PLIST index 71145147f52..34e8c67dd16 100644 --- a/devel/semantic/PLIST +++ b/devel/semantic/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:26:43 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:15 seb Exp $ ${LISPDIR}/semantic.el ${LISPDIR}/semantic.elc ${LISPDIR}/semantic-util.el @@ -40,9 +40,9 @@ ${LISPDIR}/make.bnf ${LISPDIR}/java.bnf ${LISPDIR}/scheme.bnf ${LISPDIR}/semantic-load.el -@unexec install-info --delete %D/info/semantic.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/semantic.info %D/info/dir info/semantic.info info/semantic.info-1 info/semantic.info-2 -@exec install-info %D/info/semantic.info %D/info/dir +@exec ${INSTALL_INFO} %D/info/semantic.info %D/info/dir @dirrm ${LISPDIR} diff --git a/devel/semantic/distinfo b/devel/semantic/distinfo index a1195a7e09d..7599c4f3e35 100644 --- a/devel/semantic/distinfo +++ b/devel/semantic/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/07/10 21:54:39 cjones Exp $ +$NetBSD: distinfo,v 1.3 2002/02/18 15:14:16 seb Exp $ SHA1 (semantic-1.4beta5.tar.gz) = 10e6e41a13c79cb1e84aae99b072557d63e3f105 Size (semantic-1.4beta5.tar.gz) = 177179 bytes +SHA1 (patch-aa) = 281922cbbbd09783ad581acfb59244a2ec5abbe8 diff --git a/devel/semantic/patches/patch-aa b/devel/semantic/patches/patch-aa new file mode 100644 index 00000000000..ceb731ac703 --- /dev/null +++ b/devel/semantic/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1 2002/02/18 15:14:16 seb Exp $ + +--- Makefile.orig Wed May 16 13:40:27 2001 ++++ Makefile +@@ -21,7 +21,6 @@ + LOADPATH= + misc_AUX=INSTALL NEWS + info_TEXINFOS=semantic.texi +-MAKEINFO=makeinfo + aux_AUX=c.bnf make.bnf java.bnf scheme.bnf + VERSION=1.4beta5 + DISTDIR=semantic-$(VERSION) |