Changeset d58c5b7
- Timestamp:
- 10/01/2017 10:27:36 PM (7 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- ce794256
- Parents:
- 558fbe8
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r558fbe8 rd58c5b7 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day " 30"> <!-- Always 2 digits -->4 <!ENTITY month " 09"> <!-- Always 2 digits -->3 <!ENTITY day "01"> <!-- Always 2 digits --> 4 <!ENTITY month "10"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2017"> 6 6 <!ENTITY copyrightdate "2001-&year;"> 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate " September 30th, &year;">9 <!ENTITY releasedate "October 1st, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
r558fbe8 rd58c5b7 43 43 --> 44 44 <listitem> 45 <para>Octobber 1st, 2017</para> 46 <itemizedlist> 47 <listitem> 48 <para>[bdubbs] - Update to fuse3-3.2.0. Fixes 49 <ulink url="&blfs-ticket-root;9754">#9754</ulink>.</para> 50 </listitem> 51 </itemizedlist> 52 </listitem> 53 54 <listitem> 45 55 <para>September 30th, 2017</para> 46 56 <itemizedlist> -
kde/kf5/kf5-intro.xml
r558fbe8 rd58c5b7 109 109 pathappend $KF5_PREFIX/lib/pkgconfig PKG_CONFIG_PATH 110 110 111 pathappend /etc/xdg XDG_CONFIG_DIRS112 111 pathappend $KF5_PREFIX/etc/xdg XDG_CONFIG_DIRS 113 pathappend /usr/share XDG_DATA_DIRS114 112 pathappend $KF5_PREFIX/share XDG_DATA_DIRS 115 113 -
packages.ent
r558fbe8 rd58c5b7 51 51 <!ENTITY btrfs-progs-version "4.13"> 52 52 <!ENTITY dosfstools-version "4.1"> 53 <!ENTITY fuse3-version "3. 1.1">53 <!ENTITY fuse3-version "3.2.0"> 54 54 <!ENTITY fuse2-version "2.9.7"> 55 55 <!ENTITY jfsutils-version "1.1.15"> -
postlfs/filesystems/fuse3.xml
r558fbe8 rd58c5b7 7 7 <!ENTITY fuse3-download-http "https://github.com/libfuse/libfuse/releases/download/fuse-&fuse3-version;/fuse-&fuse3-version;.tar.gz"> 8 8 <!ENTITY fuse3-download-ftp " "> 9 <!ENTITY fuse3-md5sum " 20b10f24b825062c1db9a21a35157f97">10 <!ENTITY fuse3-size " 804KB">11 <!ENTITY fuse3-buildsize " 8.5MB">12 <!ENTITY fuse3-time " 0.1 SBU">9 <!ENTITY fuse3-md5sum "79e862bf915864aceef179607c0b3e4d"> 10 <!ENTITY fuse3-size "280 KB"> 11 <!ENTITY fuse3-buildsize "9.0 MB"> 12 <!ENTITY fuse3-time "less than 0.1 SBU"> 13 13 ]> 14 14 … … 109 109 </para> 110 110 111 <screen><userinput>./configure --prefix=/usr \ 112 --disable-static \ 113 --exec-prefix=/ \ 114 --with-pkgconfigdir=/usr/lib/pkgconfig \ 115 INIT_D_PATH=/tmp/init.d && 116 make</userinput></screen> 111 <screen><userinput>sed -i '/^udev/,$ s/^/#/' util/meson.build && 112 113 meson --prefix=/usr $PWD build && 114 cd build && 115 ninja</userinput></screen> 117 116 118 117 <para> … … 130 129 </para> 131 130 132 <screen role="root"><userinput>make install && 133 rm -v /lib/libfuse3.{so,la} && 134 ln -sfv ../../lib/libfuse3.so.3 /usr/lib/libfuse3.so && 135 136 rm -rf /tmp/init.d && 137 138 install -v -m755 -d /usr/share/doc/fuse-&fuse3-version; && 139 install -v -m644 doc/{README.NFS,kernel.txt} \ 140 /usr/share/doc/fuse-&fuse3-version; && 141 cp -Rv doc/html /usr/share/doc/fuse-&fuse3-version;</userinput></screen> 131 <screen role="root"><userinput>ninja install && 132 133 mv -vf /usr/lib/libfuse3.so.3* /lib && 134 ln -sfvn ../../lib/libfuse3.so.3.2.0 /usr/lib/libfuse3.so && 135 136 mv -vf /usr/bin/fusermount3 /bin && 137 mv -vf /usr/sbin/mount.fuse3 /sbin && 138 139 install -v -m755 -d /usr/share/doc/fuse-&fuse3-version; && 140 install -v -m644 ../doc/{README.NFS,kernel.txt} \ 141 /usr/share/doc/fuse-&fuse3-version; && 142 cp -Rv doc/html /usr/share/doc/fuse-&fuse3-version; && 143 144 gunzip /usr/share/man/{man1/fusermount3.1,man8/mount.fuse.8}.gz 145 </userinput></screen> 142 146 143 147 </sect2> … … 146 150 <title>Command Explanations</title> 147 151 148 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 149 href="../../xincludes/static-libraries.xml"/> 150 151 <para> 152 <parameter>--exec-prefix=/</parameter>: This parameter moves programs and 153 libraries that could be needed before the 154 <filename class="directory">/usr</filename> directory is mounted, to the 155 root filesystem. 156 </para> 157 158 <para> 159 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs 160 the bootscript into <filename class="directory">/tmp/init.d</filename> as 161 a bootscript is not required. 162 </para> 163 164 <para> 165 <command>rm -rf /tmp/init.d</command>: This removes the unneeded 166 bootscript. 152 <para> 153 <command>sed ... util/meson.build</command>: This command disables the 154 installation of a boot script and udev rule that are not needed. 155 </para> 156 157 <para> 158 <command>mv ... libfuse3.so.3*; ln ... libfuse3.so</command>: 159 These commands install the libraries in the /lib directory. 160 </para> 161 162 <para> 163 <command>unzip ...</command>: This uncompresses the installed man pages 164 to be consistent with the rest of the man pages. 167 165 </para> 168 166 … … 233 231 <listitem> 234 232 <para> 235 is a set users ID root program to mount and unmount Fuse 236 filesystems. 233 is a suid root program to mount and unmount Fuse filesystems. 237 234 </para> 238 235 <indexterm zone="fuse3 fusermount3"> … … 246 243 <listitem> 247 244 <para> 248 is the command <command>mount</command> would callto mount a Fuse245 is the command <command>mount</command> calls to mount a Fuse 249 246 filesystem. 250 247 </para>
Note:
See TracChangeset
for help on using the changeset viewer.