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 /editors/speedbar | |
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 'editors/speedbar')
-rw-r--r-- | editors/speedbar/Makefile | 3 | ||||
-rw-r--r-- | editors/speedbar/PLIST | 5 | ||||
-rw-r--r-- | editors/speedbar/distinfo | 3 | ||||
-rw-r--r-- | editors/speedbar/patches/patch-aa | 21 |
4 files changed, 28 insertions, 4 deletions
diff --git a/editors/speedbar/Makefile b/editors/speedbar/Makefile index 3b195cc6a79..7f83732aa68 100644 --- a/editors/speedbar/Makefile +++ b/editors/speedbar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/09/27 23:18:01 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2002/02/18 15:14:17 seb Exp $ # DISTNAME= speedbar-0.13a @@ -42,4 +42,5 @@ do-install: cd ${WRKSRC} && ${INSTALL_DATA} ${IMAGES} ${PREFIX}/${LISPDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/info +.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/editors/speedbar/PLIST b/editors/speedbar/PLIST index c68e756ba4e..e64aec70ea3 100644 --- a/editors/speedbar/PLIST +++ b/editors/speedbar/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2002/02/15 10:12:36 skrll Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/02/18 15:14:18 seb Exp $ ${LISPDIR}/dframe.el ${LISPDIR}/dframe.elc ${LISPDIR}/sb-dir-minus.xpm @@ -17,7 +17,8 @@ ${LISPDIR}/sb-tag-v.xpm ${LISPDIR}/sb-tag.xpm ${LISPDIR}/speedbar.el ${LISPDIR}/speedbar.elc -@unexec install-info --delete %D/info/speedbar.info %D/info/dir +@unexec ${INSTALL_INFO} --delete %D/info/speedbar.info %D/info/dir info/speedbar.info +@exec ${INSTALL_INFO} %D/info/speedbar.info %D/info/dir @exec install-info %D/info/speedbar.info %D/info/dir @unexec ${RMDIR} %D/${LISPDIR} 2>/dev/null || true diff --git a/editors/speedbar/distinfo b/editors/speedbar/distinfo index f8e56b47a75..85279ed0b31 100644 --- a/editors/speedbar/distinfo +++ b/editors/speedbar/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2001/06/08 20:50:11 cjones Exp $ +$NetBSD: distinfo,v 1.2 2002/02/18 15:14:18 seb Exp $ SHA1 (speedbar-0.13a.tar.gz) = 10adb4af2bef3cd1bd301103f79143fa0b21b231 Size (speedbar-0.13a.tar.gz) = 79535 bytes +SHA1 (patch-aa) = 70473a7400582616e70be72215cf50e1fbb7722b diff --git a/editors/speedbar/patches/patch-aa b/editors/speedbar/patches/patch-aa new file mode 100644 index 00000000000..f4c7a20d2d3 --- /dev/null +++ b/editors/speedbar/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1 2002/02/18 15:14:18 seb Exp $ + +--- Makefile.orig Mon Oct 9 06:21:34 2000 ++++ Makefile +@@ -11,7 +11,6 @@ + speedbar_LISP=dframe.el speedbar.el + EMACS=emacs + info_TEXINFOS=speedbar.texi +-MAKEINFO=makeinfo + opt_LISP=rpm.el sb-gud.el sb-info.el sb-rmail.el sb-w3.el sb-texinfo.el bigclock.el + aux_AUX=INSTALL + images_MISC=sb-dir-plus.xpm sb-dir-minus.xpm sb-dir.xpm sb-pg-plus.xpm sb-pg-minus.xpm sb-pg.xpm sb-mail.xpm sb-tag-plus.xpm sb-tag-minus.xpm sb-tag.xpm sb-tag-gt.xpm sb-tag-v.xpm sb-tag-type.xpm sb-image.el +@@ -35,7 +34,7 @@ + $(EMACS) -batch -l $@-compile-script -f batch-byte-compile $^ + + speedbar.info: $(info_TEXINFOS) +- makeinfo -o $@ $< ++ $(MAKEINFO) -o $@ $< + + opt: $(opt_LISP) + @echo "(add-to-list 'load-path nil)" > $@-compile-script |