Displaying 17 results from an estimated 17 matches for "texi2any".
2019 Jul 09
2
Addition of a meta viewport tag to HTML manuals
The addition of a single line:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices.
texi2any (which generates the HTML files) is based on long-working Perl code that includes many modern HTML elements but does not include this one.
A Perl one-liner in the install-html: Makefile directive in Makefile.in:
install-html: installdirs
@for f in $(OBJECTS_HTML); do \
if test -...
2017 Apr 24
1
TEXINFO error when building R-3.4.0
...ild static HTML help
BUILD_HTML = YES
# unset this if you are *not* using MiKTeX
MIKTEX = TRUE
# Recent MiKTEX does not provide texi2dvi and needs something like
TEXI2DVI = TEXINDEX=C:/Rtools/bin/texindex.exe texify
# for texinfo >= 5.1. If the texinfo files are installed at /packages/texinfo,
TEXI2ANY = C:/Strawberry/perl/bin/perl.exe -I/C:/R/texinfo C:/R/texinfo/texi2any
# if you do not have texinfo (default),
# TEXI2ANY = missing
Nevertheless, while building R-3.4 I get the following error:
------ Making HTML documentation ------
creating doc/manual/version.texi
creating doc/manual/R-FAQ.ht...
2019 Jul 18
2
Addition of a meta viewport tag to HTML manuals
...> The addition of a single line:
> > <meta name="viewport" content="width=device-width, initial-scale=1.0">
>
> > at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices.
>
> > texi2any (which generates the HTML files) is based on long-working Perl code that includes many modern HTML elements but does not include this one.
>
> > A Perl one-liner in the install-html: Makefile directive in Makefile.in:
>
> > install-html: installdirs
> > @for f in...
2015 Jan 26
2
Building rinstaller using R-devel (3.2.0-to-be) halts when trying to copy html files
...ies, I have "\doc\manual" and
"F:\R\R-devel\doc\html" and there are no .html files in the \manual
directory, only pdfs.
I am building on Windows 7 64 bit, so the MkRules.local is being used,
and the pertinent settings therein include:
BUILD_HTML = YES
MIKTEX = TRUE
TEXI2ANY = missing
Is it as simple as changing line 74 in the Makefile under
src/gnuwin32/installer from:
$(CP) -p $(R_HOME)/doc/manual/*.html $(R_HOME)/doc/manual/*.pdf \
to
$(CP) -p $(R_HOME)/doc/html/*.html $(R_HOME)/doc/manual/*.pdf \
Or is the problem that MIKTEX alone can no longer be use...
2018 Feb 09
3
R Compilation gets stuck on Windows 64
...to YES to build static HTML help
BUILD_HTML = YES
# unset this if you are *not* using MiKTeX
MIKTEX = TRUE
# Recent MiKTEX does not provide texi2dvi and needs something like
TEXI2DVI = TEXINDEX=texindex.exe texify
# for texinfo >= 5.1. If the texinfo files are installed at
/packages/texinfo,
# TEXI2ANY = /path/to/perl -I/packages/texinfo /packages/texinfo/texi2any
# if you do not have texinfo (default),
# TEXI2ANY = missing
# additional optimization flags (use -mtune=native for a private build)
EOPTS = -mtune=native
# define to -fopenmp if the toolchain has OpenMP support
# OPENMP = -fopenmp
#...
2018 Feb 09
2
R Compilation gets stuck on Windows 64
On Fri, Feb 9, 2018 at 2:16 AM, Indrajit Sen Gupta <indrajitsg at gmail.com> wrote:
> Hi Avraham,
>
> A quick question - I realized I did not have Perl installed. So I installed
> ActiveState Perl right now. Also I see I need texinfo and texi2any. I was
> able to installed texinfo from here:
> http://gnuwin32.sourceforge.net/packages/texinfo.htm. But not sure where to
> get texi2any. Can you guide me in this step?
It is in the ZIP file "texinfo5.zip" here [1]. Unzip that entire file
into a directory and use that as your...
2018 Feb 09
0
R Compilation gets stuck on Windows 64
Hi Avraham,
A quick question - I realized I did not have *Perl* installed. So I
installed *ActiveState Perl* right now. Also I see I need *texinfo* and
*texi2any*. I was able to installed *texinfo* from here:
http://gnuwin32.sourceforge.net/packages/texinfo.htm. But not sure where to
get *texi2any*. Can you guide me in this step?
Regards,
Indrajit
On Fri, Feb 9, 2018 at 11:58 AM, Indrajit Sen Gupta <indrajitsg at gmail.com>
wrote:
> Hi Avraham,...
2015 Jan 27
0
Building rinstaller using R-devel (3.2.0-to-be) halts when trying to copy html files
..."F:\R\R-devel\doc\html" and there are no .html files in the \manual
> directory, only pdfs.
>
> I am building on Windows 7 64 bit, so the MkRules.local is being used,
> and the pertinent settings therein include:
>
> BUILD_HTML = YES
> MIKTEX = TRUE
> TEXI2ANY = missing
>
> Is it as simple as changing line 74 in the Makefile under
> src/gnuwin32/installer from:
>
> $(CP) -p $(R_HOME)/doc/manual/*.html $(R_HOME)/doc/manual/*.pdf \
>
> to
>
> $(CP) -p $(R_HOME)/doc/html/*.html $(R_HOME)/doc/manual/*.pdf \
>
> O...
2019 Jul 15
0
Addition of a meta viewport tag to HTML manuals
...14:24:24 -0400 writes:
> The addition of a single line:
> <meta name="viewport" content="width=device-width, initial-scale=1.0">
> at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices.
> texi2any (which generates the HTML files) is based on long-working Perl code that includes many modern HTML elements but does not include this one.
> A Perl one-liner in the install-html: Makefile directive in Makefile.in:
> install-html: installdirs
> @for f in $(OBJECTS_HTML); do \...
2019 Jul 21
0
Addition of a meta viewport tag to HTML manuals
...The addition of a single line:
>> > <meta name="viewport" content="width=device-width, initial-scale=1.0">
>>
>> > at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices.
>>
>> > texi2any (which generates the HTML files) is based on long-working Perl code that includes many modern HTML elements but does not include this one.
>>
>> > A Perl one-liner in the install-html: Makefile directive in Makefile.in:
>>
>> > install-html: installdirs
>> >...
2018 Feb 09
0
R Compilation gets stuck on Windows 64
...wrote:
> On Fri, Feb 9, 2018 at 2:16 AM, Indrajit Sen Gupta <indrajitsg at gmail.com>
> wrote:
> > Hi Avraham,
> >
> > A quick question - I realized I did not have Perl installed. So I
> installed
> > ActiveState Perl right now. Also I see I need texinfo and texi2any. I was
> > able to installed texinfo from here:
> > http://gnuwin32.sourceforge.net/packages/texinfo.htm. But not sure
> where to
> > get texi2any. Can you guide me in this step?
>
> It is in the ZIP file "texinfo5.zip" here [1]. Unzip that entire file
> into...
2018 Feb 09
2
R Compilation gets stuck on Windows 64
Hi All,
I am trying to compile R from source on a 64 bit Windows. I have downloaded
and installed all the third party software as per the R - documentation.
The compilation starts fine and after a while it stops with the following
error message:
D:/Rtools/mingw_64/bin/../lib/gcc/x86_64-w64-mingw32/4.9.3/../../../../x86_64-w64-mingw32/bin/ld.exe:
cannot find -lRgraphapp
collect2.exe: error: ld
2015 Sep 09
2
Build R form source - manuals
I built R form source succesfully on my Fedora 22 box. No errors.
I can read there is an issue with some manuals at build time when
running makeinfo, especially these two:
doc/manual/R-exts.texi
cp doc/manual/R-intro.texi
Some distro have hacks about makeinfo 5 in their build script.
I wonder if some manuals are broken but couldn't see it when running make.
May someone tells me more about
2018 Feb 09
1
R Compilation gets stuck on Windows 64
...in.html
https://cran.r-project.org/bin/windows/base/rw-FAQ.html
Tomas
On 02/09/2018 08:16 AM, Indrajit Sen Gupta wrote:
> Hi Avraham,
>
> A quick question - I realized I did not have *Perl* installed. So I
> installed *ActiveState Perl* right now. Also I see I need *texinfo* and
> *texi2any*. I was able to installed *texinfo* from here:
> http://gnuwin32.sourceforge.net/packages/texinfo.htm. But not sure where to
> get *texi2any*. Can you guide me in this step?
>
> Regards,
> Indrajit
>
> On Fri, Feb 9, 2018 at 11:58 AM, Indrajit Sen Gupta <indrajitsg at gmail....
2019 Apr 26
0
R 3.6.0 is released
...old versions
of Linux has been removed.
* configure --with-blas (without specifying a value) includes
OpenBLAS in its search (before ATLAS and a generic BLAS). This
follows recent versions of the ax_blas autoconf macro.
* The configure macro MAKEINFO has been updated to TEXI2ANY.
* Support for make install-strip has been enhanced.
PACKAGE INSTALLATION:
* Source package installation is by default 'staged': the package
is installed into a temporary location under the final library
directory and moved into place once the installation is comple...
2019 Apr 26
0
R 3.6.0 is released
...old versions
of Linux has been removed.
* configure --with-blas (without specifying a value) includes
OpenBLAS in its search (before ATLAS and a generic BLAS). This
follows recent versions of the ax_blas autoconf macro.
* The configure macro MAKEINFO has been updated to TEXI2ANY.
* Support for make install-strip has been enhanced.
PACKAGE INSTALLATION:
* Source package installation is by default 'staged': the package
is installed into a temporary location under the final library
directory and moved into place once the installation is comple...
2019 Apr 26
0
R 3.6.0 is released
...old versions
of Linux has been removed.
* configure --with-blas (without specifying a value) includes
OpenBLAS in its search (before ATLAS and a generic BLAS). This
follows recent versions of the ax_blas autoconf macro.
* The configure macro MAKEINFO has been updated to TEXI2ANY.
* Support for make install-strip has been enhanced.
PACKAGE INSTALLATION:
* Source package installation is by default 'staged': the package
is installed into a temporary location under the final library
directory and moved into place once the installation is comple...