when building, automatically generate an HTML version of the info page,
nano.html git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3168 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
de39a2b05b
commit
6533e235e8
|
@ -136,6 +136,10 @@ CVS code -
|
||||||
do_yesno()
|
do_yesno()
|
||||||
- Make mouse clicks on the Yes/No/All shortcuts work properly
|
- Make mouse clicks on the Yes/No/All shortcuts work properly
|
||||||
when the MORE_SPACE flag is set. (DLR)
|
when the MORE_SPACE flag is set. (DLR)
|
||||||
|
- README.CVS:
|
||||||
|
- Mention that the minimum required version of texinfo is 4.0,
|
||||||
|
since that's the first version that supports generating HTML.
|
||||||
|
(DLR)
|
||||||
- doc/nano.texi:
|
- doc/nano.texi:
|
||||||
- Fix inconsistent wording and punctuation. (DLR)
|
- Fix inconsistent wording and punctuation. (DLR)
|
||||||
- Add missing configure options. (Mike Frysinger, minor tweaks
|
- Add missing configure options. (Mike Frysinger, minor tweaks
|
||||||
|
@ -145,6 +149,9 @@ CVS code -
|
||||||
- doc/nanorc.sample:
|
- doc/nanorc.sample:
|
||||||
- Tweak the "c-file" regex for characters to properly accept
|
- Tweak the "c-file" regex for characters to properly accept
|
||||||
'\"' and reject '"' and '''. (DLR)
|
'\"' and reject '"' and '''. (DLR)
|
||||||
|
- doc/texinfo/Makefile.am:
|
||||||
|
- Automatically generate an HTML version of the info page,
|
||||||
|
nano.html. (DLR)
|
||||||
- src/Makefile.am:
|
- src/Makefile.am:
|
||||||
- Add browser.c, help.c, and prompt.c to nano_SOURCES. (DLR)
|
- Add browser.c, help.c, and prompt.c to nano_SOURCES. (DLR)
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ packages:
|
||||||
- automake (version >= 1.7)
|
- automake (version >= 1.7)
|
||||||
- gettext (version >= 0.11.5)
|
- gettext (version >= 0.11.5)
|
||||||
- groff
|
- groff
|
||||||
- texinfo
|
- texinfo (version >= 4.0)
|
||||||
- cvs
|
- cvs
|
||||||
- ssh (with support for the SSH version 2 protocol)
|
- ssh (with support for the SSH version 2 protocol)
|
||||||
- glib 2.x (if your system doesn't have vsnprintf())
|
- glib 2.x (if your system doesn't have vsnprintf())
|
||||||
|
|
|
@ -2,4 +2,9 @@ info_TEXINFOS = nano.texi
|
||||||
|
|
||||||
MAKEINFO = makeinfo --no-split
|
MAKEINFO = makeinfo --no-split
|
||||||
|
|
||||||
EXTRA_DIST = nano.info
|
BUILT_SOURCES = nano.html
|
||||||
|
|
||||||
|
nano.html: nano.texi
|
||||||
|
cat $< | makeinfo --no-split --html > $@
|
||||||
|
|
||||||
|
EXTRA_DIST = $(info_TEXINFOS) $(BUILT_SOURCES)
|
||||||
|
|
Loading…
Reference in New Issue