mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-02 22:07:15 +08:00
Remove eol spaces
This commit is contained in:
parent
eed39e34ab
commit
54d589072b
@ -16,7 +16,7 @@
|
||||
on the LFS book. It will also be useful for those who are using other
|
||||
distributions, and for one reason or another want to manually build
|
||||
software and need some assistance. Note that the material
|
||||
in this book, in particular the dependency listings,
|
||||
in this book, in particular the dependency listings,
|
||||
assumes that you are using a basic LFS system with every
|
||||
package listed in the LFS book already installed and configured. BLFS can
|
||||
be used to create a range of diverse systems and so the target audience is
|
||||
|
@ -4,7 +4,7 @@
|
||||
]>
|
||||
<sect2>
|
||||
<title>Dummy xml file</title>
|
||||
<!-- Used in Makefile to avoid warning for first build of
|
||||
<!-- Used in Makefile to avoid warning for first build of
|
||||
general/prog/python-dependencies/pythonhosted.xml
|
||||
-->
|
||||
<para>
|
||||
|
@ -165,7 +165,7 @@
|
||||
export -f as_root</userinput></screen>
|
||||
</note>">
|
||||
|
||||
<!ENTITY not-katamari "<para>This package is provided for testing the
|
||||
<!ENTITY not-katamari "<para>This package is provided for testing the
|
||||
completed Xorg installation.</para>">
|
||||
|
||||
<!ENTITY % package-entities SYSTEM "packages.ent">
|
||||
|
@ -127,7 +127,7 @@
|
||||
<para>
|
||||
To run the Boost.Build's regression test, issue
|
||||
<command>pushd tools/build/test; python3 test_all.py; popd</command>.
|
||||
With python-3.10.x all 168 tests should pass. With
|
||||
With python-3.10.x all 168 tests should pass. With
|
||||
<xref linkend='python3'/>, 20 tests fail for undetermined reasons.
|
||||
</para>
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
||||
<bridgehead renderas="sect4">Recommended</bridgehead>
|
||||
<para role="recommended">
|
||||
<xref linkend="libxslt"/> and
|
||||
<xref linkend="pcre2"/>
|
||||
<xref linkend="pcre2"/>
|
||||
</para>
|
||||
|
||||
<bridgehead renderas="sect4">Optional</bridgehead>
|
||||
|
@ -91,7 +91,7 @@
|
||||
make</userinput></screen>
|
||||
|
||||
<para>
|
||||
If you have <xref linkend="sphinx_rtd_theme"/>
|
||||
If you have <xref linkend="sphinx_rtd_theme"/>
|
||||
installed, build the documentation with:
|
||||
</para>
|
||||
|
||||
|
@ -95,7 +95,7 @@
|
||||
<sect2 role="installation">
|
||||
<title>Installation of libarchive</title>
|
||||
|
||||
<!-- no longer required in 3.6.2.
|
||||
<!-- no longer required in 3.6.2.
|
||||
<para>
|
||||
First, adapt the package to changes in glibc-2.36:
|
||||
</para>
|
||||
|
@ -709,7 +709,7 @@ rmdir -v --ignore-fail-on-non-empty /usr/share/doc/LLVM</userinput></screen>
|
||||
<term><command>FileCheck</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a tool that reads two files (one from standard input,
|
||||
is a tool that reads two files (one from standard input,
|
||||
and one specified on the command line) and uses one to verify the other.
|
||||
</para>
|
||||
<indexterm zone="llvm FileCheck">
|
||||
|
@ -25,8 +25,8 @@
|
||||
<title>Introduction to pythonhosted.org Files</title>
|
||||
|
||||
<para>
|
||||
This section is for user convenience and is optional.
|
||||
It can be used to fetch and install all the pythonhosted.org module
|
||||
This section is for user convenience and is optional.
|
||||
It can be used to fetch and install all the pythonhosted.org module
|
||||
packages below in two convenient scripts.
|
||||
</para>
|
||||
|
||||
@ -99,7 +99,7 @@
|
||||
|
||||
<para>
|
||||
The easiest way to install the modules from the files.pythonhosted.org site
|
||||
is to run a script to install them all at once.
|
||||
is to run a script to install them all at once.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@ -147,7 +147,7 @@ EOF</userinput></screen>
|
||||
</para>
|
||||
|
||||
<screen><userinput>cat > get-pythonhosted-files.sh << "EOF"
|
||||
<literal>#! /bin/bash
|
||||
<literal>#! /bin/bash
|
||||
|
||||
PYTHONHOSTED=https://files.pythonhosted.org/packages/source
|
||||
|
||||
@ -190,12 +190,12 @@ for package in $(grep -v '^#' ../pythonhosted-files.md5 | awk '{print $2}')
|
||||
do
|
||||
name=$(echo $package|sed 's/-[[:digit:]].*$//')
|
||||
|
||||
# Don't try to install the package if it already installed
|
||||
# Don't try to install the package if it already installed
|
||||
installed=$(pip3 show $name 2> /dev/null | grep Version:)
|
||||
|
||||
|
||||
unset version
|
||||
if [ -n $installed ]; then
|
||||
version=$(echo $installed | awk '{print $2}')
|
||||
if [ -n $installed ]; then
|
||||
version=$(echo $installed | awk '{print $2}')
|
||||
fi
|
||||
|
||||
if [ -n "$version" ]; then
|
||||
@ -214,17 +214,17 @@ do
|
||||
sudo pip3 install --no-index --find-links dist --no-cache-dir \
|
||||
--no-user --upgrade $name
|
||||
popd
|
||||
done</literal></userinput></screen>
|
||||
done</literal></userinput></screen>
|
||||
|
||||
<para>
|
||||
Now run the script to install the files. If the script is run
|
||||
Now run the script to install the files. If the script is run
|
||||
multiple times, it will not try to reinstall the modules unless
|
||||
the version in the .md5 file has been changed.
|
||||
</para>
|
||||
|
||||
<screen><userinput>bash install-pythonhosted-files.sh</userinput></screen>
|
||||
|
||||
<para>Some of the packages have test procedures. See the individual
|
||||
<para>Some of the packages have test procedures. See the individual
|
||||
package sections below to run any desired tests.</para>
|
||||
|
||||
</sect3>
|
||||
@ -238,4 +238,4 @@ done</literal></userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
</sect2>
|
||||
|
@ -26,7 +26,7 @@
|
||||
<para>
|
||||
<application>Smartypants</application> translates plain ASCII
|
||||
punctuation characters into <quote>smart</quote> typographic
|
||||
punctuation HTML entities.
|
||||
punctuation HTML entities.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
@ -142,7 +142,7 @@
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
|
||||
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
|
@ -184,7 +184,7 @@ deactivate</userinput></screen>
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
|
||||
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
|
@ -55,7 +55,7 @@
|
||||
from Python-3.10.x to Python-3.11.0), you will need to reinstall
|
||||
any Python3 modules you have installed. You should also
|
||||
reinstall packages that generate Python3 modules
|
||||
including
|
||||
including
|
||||
<xref linkend="gobject-introspection"/>,
|
||||
<xref linkend="opencv"/>,
|
||||
<xref linkend="graphviz"/> (if swig is installed).
|
||||
|
@ -114,7 +114,7 @@ make</userinput></screen>
|
||||
</para>
|
||||
<!-- With 3.0.2:
|
||||
Finished tests in 443.541527s, 47.5739 tests/s, 6031.9921 assertions/s.
|
||||
21101 tests, 2675439 assertions, 4 failures, 1 errors, 45 skips
|
||||
21101 tests, 2675439 assertions, 4 failures, 1 errors, 45 skips
|
||||
|
||||
with 3.2.0 there are several summaries:
|
||||
* PASS all 1789 tests
|
||||
|
@ -137,9 +137,9 @@ make</userinput></screen>
|
||||
|
||||
<!-- 731 tests, 6 stderr failures, 0 stdout failures, 1 stderrB failure,
|
||||
0 stdoutB failures, 1 post failure -bdubbs Apr 13. 22
|
||||
valgrind-3.19.0
|
||||
valgrind-3.19.0
|
||||
|
||||
732 tests, 4 stderr failures, 0 stdout failures, 1 stderrB failure,
|
||||
732 tests, 4 stderr failures, 0 stdout failures, 1 stderrB failure,
|
||||
0 stdoutB failures, 1 post failure - bdubbs Oct 26, 22
|
||||
gdbserver_tests/hginfo (stderrB)
|
||||
memcheck/tests/cdebug_zlib_gnu (stderr)
|
||||
|
@ -581,7 +581,7 @@ chmod 755 blfs-yes-test2</userinput></screen>
|
||||
entries. The <command>mv</command> just removes the destination file from
|
||||
the directory but does not touch its content, so that it satisfies the
|
||||
condition for the kernel to use the old (deleted) file. The script below
|
||||
is just an example.
|
||||
is just an example.
|
||||
It should be run as the &root; user:
|
||||
</para>
|
||||
|
||||
|
@ -95,7 +95,7 @@
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to gstreamer-1.22.0 stack. Includes
|
||||
gst-plugins-base, gst-plugins-good, gst-plugins-bad,
|
||||
gst-plugins-base, gst-plugins-good, gst-plugins-bad,
|
||||
gst-plugins-ugly, gst-libav, and gstreamer-vaapi. Fixes
|
||||
<ulink url="&blfs-ticket-root;17555">#17555</ulink>.</para>
|
||||
</listitem>
|
||||
@ -750,7 +750,7 @@
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to gstreamer-1.20.5 stack. Includes
|
||||
gst-plugins-base, gst-plugins-good, gst-plugins-bad,
|
||||
gst-plugins-base, gst-plugins-good, gst-plugins-bad,
|
||||
gst-plugins-ugly, gst-libav, and gstreamer-vaapi. Fixes
|
||||
<ulink url="&blfs-ticket-root;17420">#17420</ulink>.</para>
|
||||
</listitem>
|
||||
@ -1061,7 +1061,7 @@
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>December 22nd, 2022</para>
|
||||
<itemizedlist>
|
||||
@ -1384,12 +1384,12 @@
|
||||
<para>[bdubbs] - Add kuserfeedback-1.2.0 needed by plasma.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to kf5-apps-22.12.0, including kate, kwave,
|
||||
<para>[bdubbs] - Update to kf5-apps-22.12.0, including kate, kwave,
|
||||
and falkon. Fixes
|
||||
<ulink url="&blfs-ticket-root;17006">#17006</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to kf5-5.101, including extra-cmake-modules,
|
||||
<para>[bdubbs] - Update to kf5-5.101, including extra-cmake-modules,
|
||||
oxygen-icons and breeze-icons. Fixes
|
||||
<ulink url="&blfs-ticket-root;17021">#17021</ulink>.</para>
|
||||
</listitem>
|
||||
@ -2383,8 +2383,8 @@
|
||||
<ulink url="&blfs-ticket-root;17176">#17176</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to gstreamer-1.20.4 gst-plugins-base
|
||||
gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav
|
||||
<para>[bdubbs] - Update to gstreamer-1.20.4 gst-plugins-base
|
||||
gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav
|
||||
gstreamer-vaapi. Fixes
|
||||
<ulink url="&blfs-ticket-root;17175">#17175</ulink>.</para>
|
||||
</listitem>
|
||||
@ -2917,7 +2917,7 @@
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>September 17th, 2022</para>
|
||||
<itemizedlist>
|
||||
@ -2927,7 +2927,7 @@
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>September 16th, 2022</para>
|
||||
<itemizedlist>
|
||||
@ -2974,7 +2974,7 @@
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>September 15th, 2022</para>
|
||||
<itemizedlist>
|
||||
|
@ -74,7 +74,7 @@ EOF</userinput></screen>
|
||||
|
||||
<blockquote>
|
||||
<para>This form of text is used to encapsulate text that should be
|
||||
modified, and is not to be typed as shown, or copied and pasted.
|
||||
modified, and is not to be typed as shown, or copied and pasted.
|
||||
The angle brackets are not part of the literal text; they are part of the
|
||||
substitution.</para>
|
||||
</blockquote>
|
||||
@ -115,7 +115,7 @@ EOF</userinput></screen>
|
||||
<bridgehead renderas="sect3">Optional Dependencies</bridgehead>
|
||||
|
||||
<para>These are dependencies the package <emphasis>may</emphasis> use. Integration
|
||||
of optional dependencies may be automatic by the package, or
|
||||
of optional dependencies may be automatic by the package, or
|
||||
additional steps not presented by BLFS may be necessary. Optional dependencies are
|
||||
sometimes listed without explicit BLFS instructions. In this case you must
|
||||
determine how to perform the installation yourself. </para>
|
||||
|
@ -100,7 +100,7 @@
|
||||
<xref linkend="avahi"/> (DNS-SD backend for KDNSSD),
|
||||
<xref linkend="libdbusmenu-qt"/> (built with qt5),
|
||||
<xref linkend="NetworkManager"/> (needed to build NetworkManager-Qt),
|
||||
<xref linkend="pcre"/>, and
|
||||
<xref linkend="pcre"/>, and
|
||||
<xref linkend="polkit-qt"/> (Authentication backend for KAuth)
|
||||
</para>
|
||||
|
||||
@ -290,7 +290,7 @@ EOF</userinput></screen>
|
||||
optional dependency has been installed. The
|
||||
kdewebkit may be built if the external package
|
||||
<ulink url="https://download.qt.io/community_releases/5.9/5.9.0-final/">
|
||||
QtWebkit</ulink> has been built.
|
||||
QtWebkit</ulink> has been built.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
<para>
|
||||
The <application>kuserfeedback</application> package contains a
|
||||
framework for collecting user feedback for applications via telemetry
|
||||
framework for collecting user feedback for applications via telemetry
|
||||
and surveys.
|
||||
</para>
|
||||
|
||||
|
@ -111,7 +111,7 @@ ninja</userinput></screen>
|
||||
|
||||
<para>
|
||||
The tests are not recommended. Test 6 of 6 times out after 3 minutes.
|
||||
To run the tests anyway, issue: <command>ninja test</command>.
|
||||
To run the tests anyway, issue: <command>ninja test</command>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
@ -76,7 +76,7 @@
|
||||
<title>Installation of SoundTouch</title>
|
||||
|
||||
<note>
|
||||
<para>The tarball expands to 'soundtouch' instead of the expected
|
||||
<para>The tarball expands to 'soundtouch' instead of the expected
|
||||
'soundtouch-&soundtouch-version;'</para>
|
||||
</note>
|
||||
|
||||
|
@ -141,7 +141,7 @@
|
||||
-i src/combined/ffmpeg/demux_avformat.c </userinput></screen>
|
||||
-->
|
||||
<note>
|
||||
<para>This package tarball expands to the directory xine-lib.1.2.13/,
|
||||
<para>This package tarball expands to the directory xine-lib.1.2.13/,
|
||||
not he expected xine-lib-1.2.13/.</para>
|
||||
</note>
|
||||
|
||||
|
@ -281,7 +281,7 @@ make</userinput></screen>
|
||||
|
||||
<para>
|
||||
<option>--disable-vpx</option>: Use this switch to disable
|
||||
<application>libvpx</application>.
|
||||
<application>libvpx</application>.
|
||||
</para>
|
||||
|
||||
<!--<para>
|
||||
|
@ -213,7 +213,7 @@ install -v -m644 README /usr/share/doc/heirloom-mailx-&mailx-version;</userinput
|
||||
|
||||
<para>
|
||||
Other interesting options to set in the config files might
|
||||
be EDITOR and MAILDIR.
|
||||
be EDITOR and MAILDIR.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
@ -113,7 +113,7 @@ make</userinput></screen>
|
||||
|
||||
<para>
|
||||
<command>sed -i ...</command>: This command forces the use of
|
||||
<application>Python 3</application> in an utility.
|
||||
<application>Python 3</application> in an utility.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
@ -146,12 +146,12 @@ cp -v doc/man/{dig.1,host.1,nslookup.1} /usr/share/man/man1</userinput></screen>
|
||||
|
||||
<para>
|
||||
<command>make -C doc</command>: This command builds the
|
||||
manual pages if the optional Python module
|
||||
manual pages if the optional Python module
|
||||
<xref linkend="sphinx"/> is installed.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Use <command>cp -v doc/man/{dig.1,host.1,nslookup.1} /usr/share/man/man1</command>
|
||||
Use <command>cp -v doc/man/{dig.1,host.1,nslookup.1} /usr/share/man/man1</command>
|
||||
to install the the manual pages if they have been built.
|
||||
</para>
|
||||
|
||||
|
@ -216,7 +216,7 @@ to avoid building libxml2 twice, which is slow with all deps -->
|
||||
<!ENTITY libspiro-version "20220722">
|
||||
<!ENTITY libtiff-version "4.5.0">
|
||||
<!ENTITY libwebp-version "1.3.0">
|
||||
<!ENTITY mypaint-brushes-version "1.3.1">
|
||||
<!ENTITY mypaint-brushes-version "1.3.1">
|
||||
<!ENTITY newt-version "0.52.23">
|
||||
<!ENTITY opencv-version "4.7.0">
|
||||
<!ENTITY opencv-contrib-version "4.7.0">
|
||||
|
@ -264,7 +264,7 @@ chmod -v 4755 /usr/sbin/unix_chkpwd</userinput></screen>
|
||||
|
||||
<para>
|
||||
<command>chmod -v 4755 /usr/sbin/unix_chkpwd</command>:
|
||||
The setuid bit for the <command>unix_chkpwd</command> helper program must be
|
||||
The setuid bit for the <command>unix_chkpwd</command> helper program must be
|
||||
turned on, so that non-<systemitem class="username">root</systemitem>
|
||||
processes can access the shadow file.
|
||||
</para>
|
||||
|
@ -152,7 +152,7 @@ chmod -v 0644 /etc/sudo.conf</userinput></screen>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
gnome-ssh-askpass3, ssh-askpass (symlink to
|
||||
gnome-ssh-askpass3, ssh-askpass (symlink to
|
||||
<filename>gnome-ssh-askpass3</filename>)
|
||||
</seg>
|
||||
<seg>
|
||||
|
@ -116,7 +116,7 @@ Oct 26 17:11:53 SRVNAME systemd[1]: Failed to start PostgreSQL database server.<
|
||||
Most database server software provides some basic
|
||||
tools to create backups of your data. Usually the backups created with
|
||||
those tools can be read by newer versions of the software (via a
|
||||
restore tool). Using older restore tools with newer backup data is
|
||||
restore tool). Using older restore tools with newer backup data is
|
||||
a bad idea; you should <emphasis>never</emphasis> blindly assume that
|
||||
it will work. It might, but usually it doesn't.
|
||||
</para>
|
||||
@ -146,7 +146,7 @@ Oct 26 17:11:53 SRVNAME systemd[1]: Failed to start PostgreSQL database server.<
|
||||
suffice. The best strategy for you depends on
|
||||
the amount of data stored in your database (is it a few hundred table
|
||||
rows, or is it hundreds of terabytes?). A full backup in the latter case
|
||||
can't be done quickly. To
|
||||
can't be done quickly. To
|
||||
fully protect your data, create a backup of the old
|
||||
programs (and/or their sources) and save it, along with the data
|
||||
files, to be certain there is a fallback solution if
|
||||
@ -189,7 +189,7 @@ Oct 26 17:11:53 SRVNAME systemd[1]: Failed to start PostgreSQL database server.<
|
||||
<para>
|
||||
Some database systems (for instance Postgresql) provide
|
||||
a tool which can reformat (upgrade) the existing database
|
||||
files to the new format.
|
||||
files to the new format.
|
||||
If you need to restore from a backup (for example, running
|
||||
the upgrade tool failed) you will have to reinstall the old software
|
||||
to recover your data.
|
||||
|
@ -11,7 +11,7 @@
|
||||
<!ENTITY postfix-download-ftp "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-&postfix-version;.tar.gz">
|
||||
<!ENTITY postfix-md5sum "2442d1e53d58e61842d99fb5978fec4a">
|
||||
<!ENTITY postfix-size "4.6 MB">
|
||||
<!ENTITY postfix-buildsize "148 MB">
|
||||
<!ENTITY postfix-buildsize "148 MB">
|
||||
<!ENTITY postfix-time "0.2 SBU (Using parallelism=4)">
|
||||
]>
|
||||
|
||||
|
@ -29,8 +29,8 @@
|
||||
<title>Introduction to pythonhosted.org Files</title>
|
||||
|
||||
<para>
|
||||
This section is for user convenience and is optional.
|
||||
It can be used to fetch and install all the pythonhosted.org module
|
||||
This section is for user convenience and is optional.
|
||||
It can be used to fetch and install all the pythonhosted.org module
|
||||
packages below in two convenient scripts.
|
||||
</para>
|
||||
|
||||
@ -103,7 +103,7 @@
|
||||
|
||||
<para>
|
||||
The easiest way to install the modules from the files.pythonhosted.org site
|
||||
is to run a script to install them all at once.
|
||||
is to run a script to install them all at once.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@ -121,7 +121,7 @@ EOF</userinput></screen>
|
||||
</para>
|
||||
|
||||
<screen><userinput>cat > get-pythonhosted-files.sh << "EOF"
|
||||
<literal>#! /bin/bash
|
||||
<literal>#! /bin/bash
|
||||
|
||||
PYTHONHOSTED=https://files.pythonhosted.org/packages/source
|
||||
|
||||
@ -164,12 +164,12 @@ for package in $(grep -v '^#' ../pythonhosted-files.md5 | awk '{print $2}')
|
||||
do
|
||||
name=$(echo $package|sed 's/-[[:digit:]].*$//')
|
||||
|
||||
# Don't try to install the package if it already installed
|
||||
# Don't try to install the package if it already installed
|
||||
installed=$(pip3 show $name 2> /dev/null | grep Version:)
|
||||
|
||||
|
||||
unset version
|
||||
if [ -n $installed ]; then
|
||||
version=$(echo $installed | awk '{print $2}')
|
||||
if [ -n $installed ]; then
|
||||
version=$(echo $installed | awk '{print $2}')
|
||||
fi
|
||||
|
||||
if [ -n "$version" ]; then
|
||||
@ -188,17 +188,17 @@ do
|
||||
sudo pip3 install --no-index --find-links dist --no-cache-dir \
|
||||
--no-user --upgrade $name
|
||||
popd
|
||||
done</literal></userinput></screen>
|
||||
done</literal></userinput></screen>
|
||||
|
||||
<para>
|
||||
Now run the script to install the files. If the script is run
|
||||
Now run the script to install the files. If the script is run
|
||||
multiple times, it will not try to reinstall the modules unless
|
||||
the version in the .md5 file has been changed.
|
||||
</para>
|
||||
|
||||
<screen><userinput>bash install-pythonhosted-files.sh</userinput></screen>
|
||||
|
||||
<para>Some of the packages have test procedures. See the individual
|
||||
<para>Some of the packages have test procedures. See the individual
|
||||
package sections below to run any desired tests.</para>
|
||||
|
||||
</sect3>
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
|
||||
<!-- No other tags inside any title.
|
||||
Use Title Case in All Titles
|
||||
Use Title Case in All Titles
|
||||
(i.e., Capitalize Everything
|
||||
*Except* Articles, Short Prepositions,
|
||||
and Coordinating Conjunctions.-->
|
||||
|
@ -175,7 +175,7 @@
|
||||
<xref linkend="xmlto"/> with one or more of the following:
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="Links"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://github.com/vapier/ncompress">ncompress</ulink> (for some tests), and
|
||||
<ulink url="&w3m-url;">W3m</ulink> (to generate additional PDF or text
|
||||
documentation for the libXfont package).
|
||||
@ -266,7 +266,7 @@ md5sum -c ../lib-&xorg-version;.md5</userinput></screen>
|
||||
|
||||
<para>
|
||||
BLFS developers have confirmed that <application>libX11</application>,
|
||||
<application>libXt</application>, <application>libXmu</application>,
|
||||
<application>libXt</application>, <application>libXmu</application>,
|
||||
<application>libXpm</application>, and
|
||||
<application>libxshmfence</application> are distributed with working test
|
||||
suites.
|
||||
@ -339,13 +339,13 @@ done</userinput></screen>
|
||||
|
||||
<para>
|
||||
<command>sed ... test/TestAllFiles.h</command>:
|
||||
Fix a test file to work without the optional <command>compress</command>
|
||||
Fix a test file to work without the optional <command>compress</command>
|
||||
program.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<parameter>--disable-open-zfile</parameter>: Allow
|
||||
<application>libXpm</application> to build without the
|
||||
<parameter>--disable-open-zfile</parameter>: Allow
|
||||
<application>libXpm</application> to build without the
|
||||
optional <command>compress</command> command present.
|
||||
</para>
|
||||
|
||||
|
@ -113,7 +113,7 @@
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The BLFS editors recommend using the <filename class="directory">/usr</filename>
|
||||
The BLFS editors recommend using the <filename class="directory">/usr</filename>
|
||||
prefix.
|
||||
</para>
|
||||
|
||||
|
@ -220,7 +220,7 @@
|
||||
|
||||
<para role="recommended">
|
||||
<xref linkend="apache-ant"/>,
|
||||
<xref linkend="boost"/>,
|
||||
<xref linkend="boost"/>,
|
||||
<xref linkend="clucene"/>,
|
||||
<xref linkend="cups"/>,
|
||||
<xref linkend="curl"/>,
|
||||
|
@ -125,16 +125,16 @@
|
||||
<xref linkend="libjpeg"/>,
|
||||
<phrase revision='sysv'><xref linkend="linux-pam"/>,</phrase>
|
||||
<xref linkend="pixman"/>,
|
||||
<phrase revision='systemd'><xref linkend="systemd"/>
|
||||
<phrase revision='systemd'><xref linkend="systemd"/>
|
||||
(with <xref linkend="linux-pam"/>),</phrase>
|
||||
<xref linkend="xorg7-app"/>,
|
||||
<xref linkend="xorg7-app"/>,
|
||||
<xref linkend="xinit"/>, and
|
||||
<xref linkend="xorg7-legacy"/>
|
||||
</para>
|
||||
|
||||
<bridgehead renderas="sect4">Recommended</bridgehead>
|
||||
<para role="recommended">
|
||||
<xref linkend="imagemagick"/>
|
||||
<xref linkend="imagemagick"/>
|
||||
</para>
|
||||
|
||||
<para condition="html" role="usernotes">User Notes:
|
||||
|
Loading…
Reference in New Issue
Block a user