Changeset a42c273
- Timestamp:
- 05/21/2019 12:39:37 PM (4 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 9.0, 9.1, kea, ken/inkscape-core-mods, lazarus, lxqt, plabs/python-mods, qt5new, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 77deb22e
- Parents:
- 1dbb694f
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r1dbb694f ra42c273 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 0"> <!-- Always 2 digits -->3 <!ENTITY day "21"> <!-- Always 2 digits --> 4 4 <!ENTITY month "05"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2019"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "May 2 0th, &year;">9 <!ENTITY releasedate "May 21st, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/genlib/gsl.xml
r1dbb694f ra42c273 99 99 installed, buid the documentation with:</para> 100 100 101 <screen ><userinput>make html</userinput></screen>101 <screen remap="doc"><userinput>make html</userinput></screen> 102 102 103 103 <para> … … 113 113 <para>If you built the documentation, install it (as root) with:</para> 114 114 115 <screen role="root"><userinput>mkdir /usr/share/doc/gsl-&gsl-version; && 115 <screen role="root" 116 remap="doc"><userinput>mkdir /usr/share/doc/gsl-&gsl-version; && 116 117 cp -R doc/_build/html/* /usr/share/doc/gsl-&gsl-version;</userinput></screen> 117 118 -
general/genlib/libassuan.xml
r1dbb694f ra42c273 115 115 116 116 <screen><userinput>./configure --prefix=/usr && 117 make</userinput></screen> 118 119 <para> 120 If you wish to build documentation, you must have 121 <xref linkend="texlive"/> installed and issue the following commands: 117 make && 118 119 make -C doc html && 120 makeinfo --html --no-split -o doc/assuan_nochunks.html doc/assuan.texi && 121 makeinfo --plaintext -o doc/assuan.txt doc/assuan.texi 122 </userinput></screen> 123 124 <para> 125 The above commands build the documentation in html and plaintext formats. 126 If you wish to build alternate formats of the documentation, you must 127 have <xref linkend="texlive"/> installed and issue the following commands: 122 128 </para> 123 129 124 130 <!--<screen><userinput>patch -Np1 -i ../libassuan-&libassuan-version;-fix_doc_build-1.patch &&--> 125 <screen ><userinput>make -C doc pdf ps</userinput></screen>131 <screen remap="doc"><userinput>make -C doc pdf ps</userinput></screen> 126 132 127 133 <para> … … 133 139 </para> 134 140 135 <screen role="root"><userinput>make install</userinput></screen> 136 137 <para> 138 If you built the documentation, install it by running the 139 following commands as the 141 <screen role="root"><userinput>make install && 142 143 install -v -dm755 /usr/share/doc/libassuan-1.8.4/html && 144 install -v -m644 doc/assuan.html/* \ 145 /usr/share/doc/libassuan-1.8.4/html && 146 install -v -m644 doc/assuan_nochunks.html \ 147 /usr/share/doc/libassuan-1.8.4 && 148 install -v -m644 doc/assuan.{txt,texi} \ 149 /usr/share/doc/libassuan-1.8.4</userinput></screen> 150 151 <para> 152 If you built alternate formats of the documentation, install them by 153 running the following commands as the 140 154 <systemitem class="username">root</systemitem> user: 141 155 </para> 142 156 143 <screen role="root" ><userinput>install -v -dm755 /usr/share/doc/libassuan-&libassuan-version; &&144 install -v -m644 doc/assuan.{pdf,ps,dvi} \157 <screen role="root" 158 remap="doc"><userinput>install -v -m644 doc/assuan.{pdf,ps,dvi} \ 145 159 /usr/share/doc/libassuan-&libassuan-version;</userinput></screen> 146 160 </sect2> -
general/genlib/libgcrypt.xml
r1dbb694f ra42c273 103 103 104 104 <screen><userinput>./configure --prefix=/usr && 105 make</userinput></screen> 106 107 <para> 108 Only <command>info</command> documentation is shipped in the package 109 tarball. If you wish to build alternate formats of the documentation, 110 (you must have <xref linkend="texlive"/> installed to build the PDF 111 and PostScript documentation), then issue the following commands: 112 </para> 113 114 <screen><userinput>make -C doc pdf ps html && 105 make && 106 107 make -C doc html && 115 108 makeinfo --html --no-split -o doc/gcrypt_nochunks.html doc/gcrypt.texi && 116 109 makeinfo --plaintext -o doc/gcrypt.txt doc/gcrypt.texi</userinput></screen> 110 111 <para> 112 The above commands build the documentation in html and plaintext 113 formats. If you wish to build alternate formats of the documentation, you 114 need <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>). Issue 115 the following command: 116 </para> 117 118 <screen remap="doc"><userinput>make -C doc pdf ps</userinput></screen> 117 119 118 120 <para> … … 127 129 install -v -dm755 /usr/share/doc/libgcrypt-&libgcrypt-version; && 128 130 install -v -m644 README doc/{README.apichanges,fips*,libgcrypt*} \ 129 /usr/share/doc/libgcrypt-&libgcrypt-version;</userinput></screen> 130 131 <para> 132 If you built the additional documentation, install it by issuing the 133 following commands as the <systemitem class="username">root</systemitem> 134 user: 135 </para> 136 137 <screen role="root"><userinput>install -v -dm755 /usr/share/doc/libgcrypt-&libgcrypt-version;/html && 131 /usr/share/doc/libgcrypt-&libgcrypt-version; && 132 133 install -v -dm755 /usr/share/doc/libgcrypt-&libgcrypt-version;/html && 138 134 install -v -m644 doc/gcrypt.html/* \ 139 135 /usr/share/doc/libgcrypt-&libgcrypt-version;/html && 140 136 install -v -m644 doc/gcrypt_nochunks.html \ 141 /usr/share/doc/libgcrypt-&libgcrypt-version; && 142 install -v -m644 doc/gcrypt.{pdf,ps,dvi,txt,texi} \ 137 /usr/share/doc/libgcrypt-&libgcrypt-version; && 138 install -v -m644 doc/gcrypt.{txt,texi} \ 139 /usr/share/doc/libgcrypt-&libgcrypt-version;</userinput></screen> 140 141 <para> 142 If you built alternate formats of the documentation, install them by 143 issuing the following command as the 144 <systemitem class="username">root</systemitem> user: 145 </para> 146 147 <screen role="root" 148 remap="doc"><userinput>install -v -m644 doc/gcrypt.{pdf,ps,dvi} \ 143 149 /usr/share/doc/libgcrypt-&libgcrypt-version;</userinput></screen> 144 150 -
general/genlib/libical.xml
r1dbb694f ra42c273 117 117 </para> 118 118 119 <screen ><userinput>make docs</userinput></screen>119 <screen remap="doc"><userinput>make docs</userinput></screen> 120 120 --> 121 121 <para> … … 137 137 </para> 138 138 139 <screen role="root"><userinput>install -vdm755 /usr/share/doc/libical-&libical-version;/html && 139 <screen role="root" 140 remap="doc"><userinput>install -vdm755 /usr/share/doc/libical-&libical-version;/html && 140 141 cp -vr apidocs/html/* /usr/share/doc/libical-&libical-version;/html</userinput></screen> 141 142 --> -
general/genlib/libusb.xml
r1dbb694f ra42c273 107 107 </para> 108 108 109 <screen ><userinput>make -C doc docs</userinput></screen>109 <screen remap="doc"><userinput>make -C doc docs</userinput></screen> 110 110 111 111 <para> … … 124 124 </para> 125 125 126 <screen role="root"><userinput>install -v -d -m755 /usr/share/doc/libusb-&libusb-version;/apidocs && 126 <screen role="root" 127 remap="doc"><userinput>install -v -d -m755 /usr/share/doc/libusb-&libusb-version;/apidocs && 127 128 install -v -m644 doc/html/* \ 128 129 /usr/share/doc/libusb-&libusb-version;/apidocs</userinput></screen> -
general/genlib/popt.xml
r1dbb694f ra42c273 73 73 74 74 <para>If you have <xref linkend="doxygen"/> installed and wish to build 75 the API documentation, issue <command>doxygen</command>.</para> 75 the API documentation, issue:</para> 76 77 <screen remap="doc"><userinput>doxygen</userinput></screen> 76 78 77 79 <para>To test the results, issue: <command>make check</command>.</para> … … 85 87 user:</para> 86 88 87 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/popt-&popt-version; && 89 <screen role="root" 90 remap="doc"><userinput>install -v -m755 -d /usr/share/doc/popt-&popt-version; && 88 91 install -v -m644 doxygen/html/* /usr/share/doc/popt-&popt-version;</userinput></screen> 89 92 -
general/graphlib/graphite2.xml
r1dbb694f ra42c273 151 151 </para> 152 152 153 <screen ><userinput>make docs</userinput></screen>153 <screen remap="doc"><userinput>make docs</userinput></screen> 154 154 155 155 <para> … … 168 168 </para> 169 169 170 <screen role="root"><userinput>install -v -d -m755 /usr/share/doc/graphite2-&graphite2-version; && 170 <screen role="root" 171 remap="doc"><userinput>install -v -d -m755 /usr/share/doc/graphite2-&graphite2-version; && 171 172 <!-- doc/doxygen seems to have gone, so I removed the api dir, but now both html 172 173 and pdf for the GTF and the manual -
general/prog/doxygen.xml
r1dbb694f ra42c273 150 150 </para> 151 151 152 <screen ><userinput>cmake -DDOC_INSTALL_DIR=share/doc/doxygen-&doxygen-version; -Dbuild_doc=ON .. &&152 <screen remap="doc"><userinput>cmake -DDOC_INSTALL_DIR=share/doc/doxygen-&doxygen-version; -Dbuild_doc=ON .. && 153 153 154 154 make docs</userinput></screen> -
general/prog/gdb.xml
r1dbb694f ra42c273 120 120 </para> 121 121 122 <screen ><userinput>make -C gdb/doc doxy</userinput></screen>122 <screen remap="doc"><userinput>make -C gdb/doc doxy</userinput></screen> 123 123 124 124 <para> … … 126 126 </para> 127 127 128 <screen ><userinput>pushd gdb/testsuite &&128 <screen remap="test"><userinput>pushd gdb/testsuite && 129 129 make site.exp && 130 130 echo "set gdb_test_timeout 120" >> site.exp && … … 205 205 </para> 206 206 207 <screen role="root"><userinput>install -d /usr/share/doc/gdb-&gdb-version; && 207 <screen role="root" 208 remap="doc"><userinput>install -d /usr/share/doc/gdb-&gdb-version; && 208 209 rm -rf gdb/doc/doxy/xml && 209 210 cp -Rv gdb/doc/doxy /usr/share/doc/gdb-&gdb-version;</userinput></screen> -
general/prog/git.xml
r1dbb694f ra42c273 165 165 </para> 166 166 167 <screen ><userinput>make html</userinput></screen>167 <screen remap="doc"><userinput>make html</userinput></screen> 168 168 169 169 <para> … … 172 172 </para> 173 173 174 <screen ><userinput>make man</userinput></screen>174 <screen remap="doc"><userinput>make man</userinput></screen> 175 175 176 176 <para> … … 195 195 </para> 196 196 197 <screen role="root" ><userinput>make install-man</userinput></screen>197 <screen role="root" remap="doc"><userinput>make install-man</userinput></screen> 198 198 199 199 <para> … … 202 202 </para> 203 203 204 <screen role="root" ><userinput>make htmldir=/usr/share/doc/git-&git-version; install-html</userinput></screen>204 <screen role="root" remap="doc"><userinput>make htmldir=/usr/share/doc/git-&git-version; install-html</userinput></screen> 205 205 206 206 <!-- ==== Method 2 for docs ====== --> -
general/prog/llvm.xml
r1dbb694f ra42c273 211 211 212 212 <para> 213 If you have installed <application>Sphinx</application> and 214 <application>recommonmark</application> and wish 215 to generate the html documentation and manual pages, issue the following 216 commands: 217 </para> 218 219 <screen remap="doc"><userinput>cmake -DLLVM_ENABLE_SPHINX=ON \ 220 -DSPHINX_WARNINGS_AS_ERRORS=OFF \ 221 -Wno-dev -G Ninja .. && 222 ninja docs-llvm-html docs-llvm-man</userinput></screen> 223 224 <para> 225 If you have downloaded the optional packages, the clang documentation 226 can be built too: 227 </para> 228 229 <screen remap="doc"><userinput>ninja docs-clang-html docs-clang-man</userinput></screen> 230 231 <para> 213 232 <!-- EDITORS - if you have more than 4 cores, take some offline to measure 214 233 the elapsed time for the tests. Also, libstdc++.a and perhaps libstdc++fs.a … … 234 253 235 254 <para> 236 If you have installed <application>Sphinx</application> and 237 <application>recommonmark</application> and wish 238 to generate the html documentation and manual pages, issue the following 239 commands: 240 </para> 241 <screen><userinput>cmake -DLLVM_ENABLE_SPHINX=ON \ 242 -DSPHINX_WARNINGS_AS_ERRORS=OFF \ 243 -Wno-dev -G Ninja .. && 244 ninja docs-llvm-html docs-llvm-man</userinput></screen> 245 <para> 246 If you have downloaded the optional packages, the clang documentation 247 can be built too: 248 </para> 249 <screen><userinput>ninja docs-clang-html docs-clang-man</userinput></screen> 250 251 <para> 252 Install the llvm documentation by running the following command as the 253 <systemitem class="username">root</systemitem> user: 254 </para> 255 256 <screen role="root"><userinput>install -v -m644 docs/man/* /usr/share/man/man1 && 255 If you have built the the llvm documentation, install it by running the 256 following commands as the <systemitem class="username">root</systemitem> 257 user: 258 </para> 259 260 <screen role="root" 261 remap="doc"><userinput>install -v -m644 docs/man/* /usr/share/man/man1 && 257 262 install -v -d -m755 /usr/share/doc/llvm-&llvm-version;/llvm-html && 258 263 cp -Rv docs/html/* /usr/share/doc/llvm-&llvm-version;/llvm-html</userinput></screen> 259 264 260 265 <para> 261 The clang documentation can be installed in the same way (again as the 266 If you have built the clang documentation, it can be installed in the 267 same way (again as the 262 268 <systemitem class="username">root</systemitem> user): 263 269 </para> 264 270 265 <screen role="root"><userinput>install -v -m644 tools/clang/docs/man/* /usr/share/man/man1 && 271 <screen role="root" 272 remap="doc"><userinput>install -v -m644 tools/clang/docs/man/* /usr/share/man/man1 && 266 273 install -v -d -m755 /usr/share/doc/llvm-&llvm-version;/clang-html && 267 274 cp -Rv tools/clang/docs/html/* /usr/share/doc/llvm-&llvm-version;/clang-html</userinput></screen> -
general/prog/mercurial.xml
r1dbb694f ra42c273 100 100 issue:</para> 101 101 102 <screen ><userinput>sed -i '/runrst/s/N)/N)3/' doc/Makefile &&102 <screen remap="doc"><userinput>sed -i '/runrst/s/N)/N)3/' doc/Makefile && 103 103 2to3-3.7 -w doc/hgmanpage.py && 104 104 make doc</userinput></screen> … … 111 111 issue:</para> 112 112 113 <screen ><userinput>cat > tests/blacklists/failed-tests << "EOF"113 <screen remap="test"><userinput>cat > tests/blacklists/failed-tests << "EOF" 114 114 <literal># Test Failures 115 115 test-gpg.t</literal> … … 119 119 To run the test suite, issue: 120 120 </para> 121 <screen ><userinput>rm -rf tests/tmp &&121 <screen remap="test"><userinput>rm -rf tests/tmp && 122 122 TESTFLAGS="-j<replaceable><N></replaceable> --tmpdir tmp --blacklist blacklists/failed-tests" make check</userinput></screen> 123 123 … … 130 130 the tests that failed before:</para> 131 131 132 <screen ><userinput>pushd tests &&132 <screen remap="test"><userinput>pushd tests && 133 133 rm -rf tmp && 134 134 ./run-tests.py --tmpdir tmp test-gpg.t … … 142 142 or not. One test, test-https.t, is known to fail.</para> 143 143 144 <para>An interesting switch is "- 144 <para>An interesting switch is "--time", which will generate at the end of 145 145 the test suite execution, a table with all executed tests and respective 146 146 start, end, user, system and real times. Notice that the switches may be … … 156 156 command (as <systemitem class="username">root</systemitem>):</para> 157 157 158 <screen role="root"><userinput>make PREFIX=/usr install-doc</userinput></screen> 158 <screen role="root" 159 remap="doc"><userinput>make PREFIX=/usr install-doc</userinput></screen> 159 160 160 161 <para>After installed, two very quick and simple tests should run correctly. -
general/sysutils/cpio.xml
r1dbb694f ra42c273 88 88 both of the following commands:</para> 89 89 90 <screen ><userinput>make -C doc pdf &&90 <screen remap="doc"><userinput>make -C doc pdf && 91 91 make -C doc ps</userinput></screen> 92 92 … … 106 106 <systemitem class="username">root</systemitem> user:</para> 107 107 108 <screen role="root"><userinput>install -v -m644 doc/cpio.{pdf,ps,dvi} \ 108 <screen role="root" 109 remap="doc"><userinput>install -v -m644 doc/cpio.{pdf,ps,dvi} \ 109 110 /usr/share/doc/cpio-&cpio-version;</userinput></screen> 110 111 -
multimedia/videoutils/ffmpeg.xml
r1dbb694f ra42c273 194 194 <!-- sed -i '$s/$/\n\n@bye/' doc/{git-howto,nut,fate}.texi && 195 195 sed -i '/machine:i386/ s/\\/@backslashchar{}/g' doc/platform.texi && --> 196 <screen ><userinput>pushd doc &&196 <screen remap="doc"><userinput>pushd doc && 197 197 for DOCNAME in `basename -s .html *.html` 198 198 do … … 209 209 If you have <xref linkend="doxygen"/> installed 210 210 and you wish to build (if --disable-doc was 211 used) or rebuild the html documentation, issue the command 212 <command>doxygen doc/Doxyfile</command>. 213 </para> 211 used) or rebuild the html documentation, issue: 212 </para> 213 214 <screen remap="doc"><userinput>doxygen doc/Doxyfile</userinput></screen> 214 215 215 216 <para> … … 235 236 </para> 236 237 237 <screen role="root"><userinput>install -v -m644 doc/*.pdf /usr/share/doc/ffmpeg-&ffmpeg-version; && 238 <screen role="root" 239 remap="doc"><userinput>install -v -m644 doc/*.pdf /usr/share/doc/ffmpeg-&ffmpeg-version; && 238 240 install -v -m644 doc/*.ps /usr/share/doc/ffmpeg-&ffmpeg-version;</userinput></screen> 239 241 … … 244 246 </para> 245 247 246 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/ffmpeg-&ffmpeg-version;/api && 248 <screen role="root" 249 remap="doc"><userinput>install -v -m755 -d /usr/share/doc/ffmpeg-&ffmpeg-version;/api && 247 250 cp -vr doc/doxy/html/* /usr/share/doc/ffmpeg-&ffmpeg-version;/api && 248 251 find /usr/share/doc/ffmpeg-&ffmpeg-version;/api -type f -exec chmod -c 0644 \{} \; && … … 257 260 </para> 258 261 259 <screen ><userinput>make fate-rsync SAMPLES=fate-suite/</userinput></screen>262 <screen remap="test"><userinput>make fate-rsync SAMPLES=fate-suite/</userinput></screen> 260 263 261 264 <para> … … 274 277 </para> 275 278 276 <screen ><userinput><command>rsync -vrltLW --delete --timeout=60 --contimeout=60 \279 <screen role="nodump"><userinput><command>rsync -vrltLW --delete --timeout=60 --contimeout=60 \ 277 280 rsync://fate-suite.ffmpeg.org/fate-suite/ fate-suite/</command></userinput></screen> 278 281 … … 282 285 </para> 283 286 284 <screen ><userinput>make fate THREADS=<replaceable>N</replaceable> SAMPLES=fate-suite/ | tee ../fate.log &&287 <screen remap="test"><userinput>make fate THREADS=<replaceable>N</replaceable> SAMPLES=fate-suite/ | tee ../fate.log && 285 288 grep ^TEST ../fate.log | wc -l</userinput></screen> 286 289 -
networking/netlibs/libevent.xml
r1dbb694f ra42c273 107 107 <para> 108 108 If you have <xref linkend="doxygen"/> installed and wish to build API 109 documentation, issue <command>doxygen Doxyfile</command>. 110 </para> 109 documentation, issue : 110 </para> 111 112 <screen remap="doc"><userinput>doxygen Doxyfile</userinput></screen> 111 113 112 114 <para> … … 125 127 </para> 126 128 127 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libevent-&libevent-version;/api && 129 <screen role="root" 130 remap="doc"><userinput>install -v -m755 -d /usr/share/doc/libevent-&libevent-version;/api && 128 131 cp -v -R doxygen/html/* \ 129 132 /usr/share/doc/libevent-&libevent-version;/api</userinput></screen> -
networking/netprogs/rsync.xml
r1dbb694f ra42c273 91 91 92 92 <para>If you have <xref linkend="doxygen"/> installed and wish to 93 build HTML API documentation, issue <command>doxygen</command>.</para> 93 build HTML API documentation, issue:</para> 94 95 <screen remap="doc"><userinput>doxygen</userinput></screen> 94 96 95 97 <para>To test the results, issue: <command>make check</command>.</para> … … 102 104 commands as the <systemitem class="username">root</systemitem> user:</para> 103 105 104 <screen role='root'><userinput>install -v -m755 -d /usr/share/doc/rsync-&rsync-version;/api && 106 <screen role='root' 107 remap="doc"><userinput>install -v -m755 -d /usr/share/doc/rsync-&rsync-version;/api && 105 108 install -v -m644 dox/html/* /usr/share/doc/rsync-&rsync-version;/api</userinput></screen> 106 109 … … 202 205 <systemitem class="username">root</systemitem> user:</para> 203 206 204 <screen role=" root"><userinput>systemctl stop rsyncd &&207 <screen role="nodump"><userinput>systemctl stop rsyncd && 205 208 systemctl disable rsyncd && 206 209 systemctl enable rsyncd.socket && -
postlfs/security/gnupg2.xml
r1dbb694f ra42c273 132 132 133 133 makeinfo --html --no-split -o doc/gnupg_nochunks.html doc/gnupg.texi && 134 makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi</userinput></screen> 134 makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi && 135 make -C doc html</userinput></screen> 135 136 136 137 <para>If you have <xref linkend="texlive"/> … … 140 141 the ps format):</para> 141 142 142 <screen ><userinput>make -C doc pdf ps html</userinput></screen>143 <screen remap="doc"><userinput>make -C doc pdf ps</userinput></screen> 143 144 144 145 <para>To test the results, issue: <command>make check</command>.</para> … … 155 156 /usr/share/doc/gnupg-&gnupg2-version;/html/gnupg.html && 156 157 install -v -m644 doc/*.texi doc/gnupg.txt \ 157 /usr/share/doc/gnupg-&gnupg2-version;</userinput></screen> 158 /usr/share/doc/gnupg-&gnupg2-version; && 159 install -v -m644 doc/gnupg.html/* \ 160 /usr/share/doc/gnupg-&gnupg2-version;/html</userinput></screen> 158 161 <!-- Now intalls as gpg, not gpg2. This should be no longer needed. 159 162 <para>The BLFS editors recommend the creation of symlinks for compatibility … … 168 171 unset f</userinput></screen> 169 172 --> 170 <para>If you created alternate formats of the documentation, install it173 <para>If you created alternate formats of the documentation, install them 171 174 using the following command as the 172 175 <systemitem class="username">root</systemitem> user:</para> 173 176 174 <screen role="root"><userinput>install -v -m644 doc/gnupg.html/* \ 175 /usr/share/doc/gnupg-&gnupg2-version;/html && 176 install -v -m644 doc/gnupg.{pdf,dvi,ps} \ 177 <screen role="root" 178 remap="doc"><userinput>install -v -m644 doc/gnupg.{pdf,dvi,ps} \ 177 179 /usr/share/doc/gnupg-&gnupg2-version;</userinput></screen> 178 180 -
postlfs/security/liboauth.xml
r1dbb694f ra42c273 119 119 120 120 <para> 121 If you have installed <xref linkend="doxygen"/>, issue 122 <command>make dox</command> to build the documentation. 123 </para> 121 If you wish to build the documentation (needs <xref linkend="doxygen"/>), 122 issue: 123 </para> 124 125 <screen remap="doc"><userinput>make dox</userinput></screen> 124 126 125 127 <para> … … 139 141 </para> 140 142 141 <screen role="root"><userinput>install -v -dm755 /usr/share/doc/liboauth-&liboauth-version; && 143 <screen role="root" 144 remap="doc"><userinput>install -v -dm755 /usr/share/doc/liboauth-&liboauth-version; && 142 145 cp -rv doc/html/* /usr/share/doc/liboauth-&liboauth-version;</userinput></screen> 143 146 -
x/installing/libinput.xml
r1dbb694f ra42c273 129 129 during the testsuite from interfering with your desktop. Copy the 130 130 file <filename>test/50-litest.conf</filename> into 131 <filename class="directory"> 131 <filename class="directory">${XORG_PREFIX}/share/X11/xorg.conf.d</filename> 132 132 and restart X. For further information see 133 133 <ulink url="https://wayland.freedesktop.org/libinput/doc/&libinput-version;/test-suite.html">libinput test suite</ulink>. … … 187 187 </para> 188 188 189 <screen role="root"><userinput>install -v -dm755 /usr/share/doc/libinput-&libinput-version;/{html,api} && 189 <screen role="root" 190 remap="doc"><userinput>install -v -dm755 /usr/share/doc/libinput-&libinput-version;/{html,api} && 190 191 cp -rv Documentation/* /usr/share/doc/libinput-&libinput-version;/html && 191 192 cp -rv api/* /usr/share/doc/libinput-&libinput-version;/api</userinput></screen>
Note:
See TracChangeset
for help on using the changeset viewer.