Changeset b636cda3
- Timestamp:
- 12/26/2015 10:40:39 PM (9 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 7.9, 8.0, 8.1, 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, nosym, 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:
- 803ea89
- Parents:
- 909a015
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r909a015 rb636cda3 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 5"> <!-- Always 2 digits -->3 <!ENTITY day "26"> <!-- Always 2 digits --> 4 4 <!ENTITY month "12"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2015"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "December 2 5th &year;">9 <!ENTITY releasedate "December 26th &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
r909a015 rb636cda3 44 44 45 45 --> 46 47 <listitem> 48 <para>December 26th, 2015</para> 49 <itemizedlist> 50 <listitem> 51 <para>[fernando] - Update to tigervnc-1.6.0. Fixes 52 <ulink url="&blfs-ticket-root;7177">#7177</ulink>.</para> 53 </listitem> 54 </itemizedlist> 55 </listitem> 46 56 47 57 <listitem> -
packages.ent
r909a015 rb636cda3 671 671 <!ENTITY rxvt-unicode-version "9.21"> 672 672 <!ENTITY thunderbird-version "38.5.0"> 673 <!ENTITY tigervnc-version "1. 5.0">673 <!ENTITY tigervnc-version "1.6.0"> 674 674 <!ENTITY transmission-version "2.84"> 675 675 <!ENTITY xarchiver-version "0.5.4"> -
xsoft/other/tigervnc.xml
r909a015 rb636cda3 7 7 <!ENTITY tigervnc-download-http "&sources-anduin-http;/tigervnc/tigervnc-&tigervnc-version;.tar.gz"> 8 8 <!ENTITY tigervnc-download-ftp " "> 9 <!ENTITY tigervnc-md5sum " b11cc4c4d5249b9b8e355ee6f47ec4fe">10 <!ENTITY tigervnc-size "1. 6MB">11 <!ENTITY tigervnc-buildsize "1 67MB">9 <!ENTITY tigervnc-md5sum "78b736445781d86c48e942465a391ccc"> 10 <!ENTITY tigervnc-size "1.3 MB"> 11 <!ENTITY tigervnc-buildsize "171 MB"> 12 12 <!ENTITY tigervnc-time "1.6 SBU"> 13 <!ENTITY tigervnc-xorg-version "1.1 7.2">13 <!ENTITY tigervnc-xorg-version "1.18.0"> 14 14 ]> 15 15 … … 67 67 Required file: 68 68 <ulink url="&xorg-download-http;/xserver/xorg-server-&tigervnc-xorg-version;.tar.bz2"/> 69 </para> 70 </listitem> 71 <listitem> 72 <para> 73 Required patch: 74 <ulink url="&patch-root;/tigervnc-&tigervnc-version;-xorg118-1.patch"/> 69 75 </para> 70 76 </listitem> … … 111 117 commands:</para> 112 118 113 <screen><userinput>tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 -C unix/xserver --strip-components=1 && 114 115 patch -Np1 -i ../tigervnc-&tigervnc-version;-gethomedir-1.patch && 116 sed -i 's/iconic/nowin/' unix/vncserver && 117 118 cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr && 119 <screen><userinput>patch -Np1 -i ../tigervnc-&tigervnc-version;-xorg118-1.patch && 120 patch -Np1 -i ../tigervnc-&tigervnc-version;-gethomedir-1.patch &&<!-- 121 sed -i 's/iconic/nowin/' unix/vncserver &&--> 122 123 mkdir -vp build && 124 cd build && 125 126 # Build viewer 127 cmake -G "Unix Makefiles" \ 128 -DCMAKE_INSTALL_PREFIX=/usr \ 129 -DCMAKE_BUILD_TYPE=Release \ 130 -Wno-dev .. && 119 131 make && 120 132 121 pushd unix/xserver && 122 patch -Np1 -i ../xserver116.patch && 123 autoreconf -fiv && 133 # Build server 134 cp -vR ../unix/xserver unix/ && 135 tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 -C unix/xserver --strip-components=1 && 136 137 pushd unix/xserver && 138 patch -Np1 -i ../../../unix/xserver117.patch && 139 autoreconf -fi && 124 140 125 141 ./configure $XORG_CONFIG \ … … 131 147 --disable-static --enable-dri3 \ 132 148 --without-dtrace --enable-dri2 --enable-glx \ 133 -- enable-glx-tls --with-pic&&134 make 149 --with-pic && 150 make TIGERVNC_SRCDIR=`pwd`/../../../ && 135 151 popd</userinput></screen> 136 152 … … 139 155 <para>Now, as the <systemitem class="username">root</systemitem> user:</para> 140 156 141 <screen role="root"><userinput>make install && 142 143 cd unix/xserver/hw/vnc && 144 make install && 157 <screen role="root"><userinput>#Install viewer 158 make install && 159 160 #Install server 161 pushd unix/xserver/hw/vnc && 162 make install && 163 popd && 145 164 146 165 [ -e /usr/bin/Xvnc ] || ln -svf $XORG_PREFIX/bin/Xvnc /usr/bin/Xvnc</userinput></screen> … … 159 178 StartupNotify=false 160 179 Categories=Network;RemoteAccess;</literal> 161 EOF</userinput></screen> 180 EOF 181 182 install -vm644 ../media/icons/tigervnc_24.png /usr/share/pixmaps && 183 ln -sfv tigervnc_24.png /usr/share/pixmaps/tigervnc.png</userinput></screen> 162 184 163 185 </sect2> … … 166 188 <title>Command Explanations</title> 167 189 190 <para><command>patch ...</command>: This set of patches modifies the standard 191 Xorg server so that the Xvnc command can be built.</para> 192 168 193 <para><command>tar -xf .. xorg-server...</command>: This command extracts the 169 194 standard Xorg packages into the tree in a location needed for modification.</para> 170 171 <para><command>patch ...</command>: This set of patches modifies the standard172 Xorg server so that the Xvnc command can be built.</para>173 195 174 196 <para><option>--disable ...</option>: Most options that are usually needed for … … 218 240 219 241 <seg>libvnc.so</seg> 220 <seg> None</seg>242 <seg>/usr/share/doc/tigervnc-&tigervnc-version;</seg> 221 243 </seglistitem> 222 244 </segmentedlist> … … 284 306 <term><command>x0vncserver</command></term> 285 307 <listitem> 286 <para>is a program to make an X display on ma physical308 <para>is a program to make an X display on a physical 287 309 terminal accessible via TigerVNC or compatible viewers.</para> 288 310 <indexterm zone="tigervnc x0vncserver">
Note:
See TracChangeset
for help on using the changeset viewer.