Changeset a1108958
- Timestamp:
- 03/10/2019 10:32:46 PM (6 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 9.0, 9.1, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
- 565321fe
- Parents:
- c7918a9
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
rc7918a9 ra1108958 45 45 <para>March 10th, 2019</para> 46 46 <itemizedlist> 47 <listitem> 48 <para>[bdubbs] - Update to xprop-1.2.4. Fixes 49 <ulink url="&blfs-ticket-root;11782">#11782</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[bdubbs] - Update to wireshark-3.0.0. Fixes 53 <ulink url="&blfs-ticket-root;11777">#11777</ulink>.</para> 54 </listitem> 47 55 <listitem> 48 56 <para>[bdubbs] - Add lua-5.2.4. Supports wireshark.</para> -
networking/netutils/wireshark.xml
rc7918a9 ra1108958 7 7 <!ENTITY wireshark-download-http "https://www.wireshark.org/download/src/all-versions/wireshark-&wireshark-version;.tar.xz"> 8 8 <!ENTITY wireshark-download-ftp " "> 9 <!ENTITY wireshark-md5sum " 6d0545309cace70e51f5555a3a966fbc">10 <!ENTITY wireshark-size " 27MB">11 <!ENTITY wireshark-buildsize " 2.0 GB (with default GUI front-end, andall optional dependencies available in the BLFS book)">12 <!ENTITY wireshark-time " 3.8 SBU (with parallelism=4, default GUI front-end,and all optional dependencies available in the BLFS book)">9 <!ENTITY wireshark-md5sum "258d62ac7434d126dc497303c8f7961b"> 10 <!ENTITY wireshark-size "30 MB"> 11 <!ENTITY wireshark-buildsize "553 GB (with all optional dependencies available in the BLFS book)"> 12 <!ENTITY wireshark-time "2.3 SBU (with parallelism=4 and all optional dependencies available in the BLFS book)"> 13 13 ]> 14 14 … … 70 70 <bridgehead renderas="sect3">Additional Downloads</bridgehead> 71 71 <itemizedlist spacing="compact"> 72 <listitem>73 <para>74 Optional patch:75 <ulink url=76 "&patch-root;/wireshark-&wireshark-version;-lua_5_3-1.patch"/>77 (allows building the LUA bindings if <xref linkend="lua"/> is78 installed and LUA is not disabled by passing <option>--without-lua79 </option> to <command>configure</command>)80 </para>81 </listitem>82 72 <listitem> 83 73 <para> … … 93 83 <bridgehead renderas="sect4">Required</bridgehead> 94 84 <para role="required"> 95 <xref linkend="glib2"/> and 96 <xref linkend="libgcrypt"/> 85 <xref linkend="glib2"/>, 86 <xref linkend="libgcrypt"/>, and 87 <xref linkend="qt5"/> 97 88 </para> 98 89 … … 100 91 <para role="recommended"> 101 92 <xref linkend="libpcap"/> (required to capture data), and 102 <xref linkend="qt5"/> (for the <application>Qt5</application> GUI)103 93 </para> 104 94 … … 106 96 <para role="optional"> 107 97 <xref linkend="c-ares"/>, 98 <xref linkend="doxygen"/>, 99 <xref linkend="git"/>, 108 100 <xref linkend="gnutls"/>, 109 <xref linkend="gtk3"/> or <xref linkend="gtk2"/> (for the legacy GTK GUI),110 101 <xref linkend="libnl"/>, 111 <xref linkend="lua"/>, 102 <xref linkend="libxslt-lib"/>, 103 <xref linkend="libxml2"/>, 104 <xref linkend="lua52"/>, 112 105 <xref linkend="mitkrb"/>, 113 106 <xref linkend="nghttp2"/>, 114 107 <xref linkend="sbc"/>, 108 <ulink url="https://asciidoctor.org/">Asciidoctor</ulink>, 109 <ulink url="https://www.linphone.org/technical-corner/bcg729">BCG729</ulink>, 115 110 <ulink url="http://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</ulink>, 116 111 <ulink url="http://lz4.github.io/lz4/">lz4</ulink>, 117 <ulink url="https://dev.maxmind.com/geoip/legacy/downloadable/">GeoIP</ulink>,118 112 <ulink url="https://www.libssh.org/">libssh</ulink>, 119 <ulink url="http://www.portaudio.com/">PortAudio</ulink> 120 (for GTK+ RTP player), 113 <ulink url="https://github.com/maxmind/libmaxminddb">MaxMindDB</ulink>, 121 114 <ulink url="http://google.github.io/snappy/">Snappy</ulink>, and 122 115 <ulink url="https://www.soft-switch.org/">Spandsp</ulink> 123 116 </para> 124 125 <note>126 <para>127 The Qt GUI front-end is built by default, if <xref linkend="qt5"/> is128 found. If you want to build the GTK+ GUI front-end, some configure129 switches have to be set (see <quote>Command Explanations</quote>).130 </para>131 </note>132 117 133 118 <para condition="html" role="usernotes"> … … 179 164 </para> 180 165 181 <screen><userinput>patch -Np1 -i ../wireshark-&wireshark-version;-lua_5_3-1.patch && 182 183 ./configure --prefix=/usr --sysconfdir=/etc && 184 make</userinput></screen> 166 <screen><userinput>mkdir build && 167 cd build && 168 169 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 170 -DCMAKE_BUILD_TYPE=Release \ 171 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/PROGRAM=wireshark-&wireshark-version; \ 172 -G Ninja \ 173 .. && 174 ninja</userinput></screen> 185 175 186 176 <para> … … 192 182 </para> 193 183 194 <screen role="root"><userinput> makeinstall &&184 <screen role="root"><userinput>ninja install && 195 185 196 186 install -v -m755 -d /usr/share/doc/wireshark-&wireshark-version; && 197 install -v -m644 README.linux doc/README.* doc/ *.{pod,txt} \187 install -v -m644 README.linux doc/README.* doc/{*.pod,randpkt.txt} \ 198 188 /usr/share/doc/wireshark-&wireshark-version; && 199 189 … … 238 228 239 229 </sect2> 240 230 <!-- 241 231 <sect2 role="commands"> 242 232 <title>Command Explanations</title> 243 233 244 234 <para> 245 <option>--with-gtk=[yes/no/2/3]</option>: For the Gtk+ GUI. Default is no. 246 If both Gtk+2 and 3 are installed, and <quote>yes</quote> is selected, 247 default is 3. Obviously, <xref linkend="gtk2"/> or <xref linkend="gtk3"/> 248 must have been built for this to work. 249 </para> 250 251 <para> 252 <option>--with-qt=[yes/no/4/5]</option>: For the Qt GUI. Default is yes, 253 if <xref linkend="qt5"/> is found on the system. 254 </para> 255 256 <para> 257 <option>--disable-wireshark</option>: Use this switch if you 235 <option>- -disable-wireshark</option>: Use this switch if you 258 236 have <application>Qt</application> installed but do not want to build 259 237 any of the GUIs. 260 238 </para> 261 262 239 </sect2> 240 --> 263 241 264 242 <sect2 role="configuration"> … … 315 293 <seglistitem> 316 294 <seg> 317 capinfos, captype, d ftest, dumpcap, editcap, idl2wrs,295 capinfos, captype, dumpcap, editcap, idl2wrs, 318 296 mergecap, randpkt, rawshark, reordercap, sharkd, 319 text2pcap, tshark, wireshark, and wireshark-gtk (optional)297 text2pcap, tshark, and wireshark 320 298 </seg> 321 299 <seg> 322 libwireshark.so, libwiretap.so, libwscodecs.so (optional),300 libwireshark.so, libwiretap.so, libwscodecs.so, 323 301 libwsutil.so, and numerous modules under /usr/lib/wireshark/plugins 324 302 </seg> 325 303 <seg> 326 /usr/{ lib,share}/wireshark and304 /usr/{include,lib,share}/wireshark and 327 305 /usr/share/doc/wireshark-&wireshark-version; 328 306 </seg> … … 353 331 <indexterm zone="wireshark captype"> 354 332 <primary sortas="b-captype">captype</primary> 355 </indexterm>356 </listitem>357 </varlistentry>358 359 <varlistentry id="dftest">360 <term><command>dftest</command></term>361 <listitem>362 <para>is a display-filter-compiler test program.</para>363 <indexterm zone="wireshark dftest">364 <primary sortas="b-dftest">dftest</primary>365 333 </indexterm> 366 334 </listitem> -
packages.ent
rc7918a9 ra1108958 571 571 <!ENTITY whois-version "5.4.1"> 572 572 <!ENTITY wicd-version "1.7.4"> 573 <!ENTITY wireshark-version " 2.6.7"> <!-- even minors only -->573 <!ENTITY wireshark-version "3.0.0"> <!-- even minors only --> 574 574 575 575 <!ENTITY wicd-major-version "1.7"> -
x/installing/x7app.xml
rc7918a9 ra1108958 95 95 <!ENTITY xpr-md5sum "eaac255076ea351fd08d76025788d9f9"> 96 96 97 <!ENTITY xprop-version "1.2. 3">98 <!ENTITY xprop-md5sum " 4becb3ddc4674d741487189e4ce3d0b6">97 <!ENTITY xprop-version "1.2.4"> 98 <!ENTITY xprop-md5sum "cc369c28383a5d7144e7197ee7d30bfa"> 99 99 100 100 <!ENTITY xrandr-version "1.5.0">
Note:
See TracChangeset
for help on using the changeset viewer.