source: networking/netlibs/libmnl.xml@ 45ab6c7

11.0 11.1 11.2 11.3 12.0 12.1 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/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 45ab6c7 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY libmnl-download-http "https://netfilter.org/projects/libmnl/files/libmnl-&libmnl-version;.tar.bz2">
8 <!ENTITY libmnl-download-ftp " ">
9 <!ENTITY libmnl-md5sum "be9b4b5328c6da1bda565ac5dffadb2d">
10 <!ENTITY libmnl-size "296 KB">
11 <!ENTITY libmnl-buildsize "2.9 MB">
12 <!ENTITY libmnl-time "less than 0.1 SBU">
13]>
14
15<sect1 id="libmnl" xreflabel="libmnl-&libmnl-version;">
16 <?dbhtml filename="libmnl.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>libmnl-&libmnl-version;</title>
23
24 <indexterm zone="libmnl">
25 <primary sortas="a-libmnl">libmnl</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to libmnl</title>
30
31 <para>
32 The <application>libmnl</application> library provides a minimalistic
33 user-space library oriented to Netlink developers. There are a lot of
34 common tasks in parsing, validating, constructing of both the Netlink
35 header and TLVs that are repetitive and easy to get wrong. This library
36 aims to provide simple helpers that allows you to re-use code and to
37 avoid re-inventing the wheel.
38 </para>
39
40 &lfs101_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing='compact'>
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&libmnl-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&libmnl-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &libmnl-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &libmnl-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &libmnl-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &libmnl-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/libmnl"/>
78 </para>
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of libmnl</title>
83
84 <para>
85 Install <application>libmnl</application> by running the following
86 commands:
87 </para>
88
89<screen><userinput>./configure --prefix=/usr &amp;&amp;
90make</userinput></screen>
91
92 <para>
93 This package does not come with a test suite.
94 </para>
95
96 <para>
97 Now, as the <systemitem class="username">root</systemitem> user:
98 </para>
99
100<screen role="root"><userinput>make install &amp;&amp;
101mv /usr/lib/libmnl.so.* /lib &amp;&amp;
102ln -sfv ../../lib/$(readlink /usr/lib/libmnl.so) /usr/lib/libmnl.so</userinput></screen>
103
104 </sect2>
105
106 <sect2 role="commands">
107 <title>Command Explanations</title>
108
109 <para>
110 <command>mv -v /usr/lib/libmnl.so.* ...</command>: Move shared
111 libraries into /lib so they are available before /usr is mounted.
112 </para>
113
114 </sect2>
115
116 <sect2 role="content">
117 <title>Contents</title>
118
119 <segmentedlist>
120 <segtitle>Installed Library</segtitle>
121
122 <seglistitem>
123 <seg>
124 libmnl.so
125 </seg>
126 </seglistitem>
127 </segmentedlist>
128
129 <variablelist>
130 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
131 <?dbfo list-presentation="list"?>
132 <?dbhtml list-presentation="table"?>
133
134 <varlistentry id="libmnl-lib">
135 <term><filename class="libraryfile">libmnl.so</filename></term>
136 <listitem>
137 <para>
138 provides functions for parsing, validating, constructing of both
139 the Netlink header and TLVs
140 </para>
141 <indexterm zone="libmnl libmnl-lib">
142 <primary sortas="c-libmnl">libmnl.so</primary>
143 </indexterm>
144 </listitem>
145 </varlistentry>
146
147 </variablelist>
148
149 </sect2>
150
151</sect1>
Note: See TracBrowser for help on using the repository browser.