source: networking/netlibs/libtirpc.xml@ adf6dd9a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since adf6dd9a was adf6dd9a, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Archive unneeded packages: pkgconfig,

bc, ibus, udev, slib, gamin, and notify-python

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12015 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.9 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 libtirpc-download-http "&sourceforge-repo;/project/libtirpc/libtirpc/&libtirpc-version;/libtirpc-&libtirpc-version;.tar.bz2">
8 <!ENTITY libtirpc-download-ftp " ">
9 <!ENTITY libtirpc-md5sum "b70e6c12a369a91e69fcc3b9feb23d61">
10 <!ENTITY libtirpc-size "456 KB">
11 <!ENTITY libtirpc-buildsize "7.5 MB">
12 <!ENTITY libtirpc-time "0.2 SBU">
13]>
14
15<sect1 id="libtirpc" xreflabel="libtirpc-&libtirpc-version;">
16 <?dbhtml filename="libtirpc.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libtirpc-&libtirpc-version;</title>
24
25 <indexterm zone="libtirpc">
26 <primary sortas="a-libtirpc">libtirpc</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libtirpc</title>
31
32 <para>
33 The <application>libtirpc</application> package contains
34 libraries that support programs that use the Remote Procedure Call (RPC)
35 API. It replaces the RPC, but not the NIS library entries that
36 used to be in glibc.
37 </para>
38
39 &lfs74_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing='compact'>
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&libtirpc-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&libtirpc-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &libtirpc-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &libtirpc-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &libtirpc-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &libtirpc-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
76 <itemizedlist spacing='compact'>
77 <listitem>
78 <para>
79 Required header tar file (Add rpc/nis headers):
80 <ulink url="&sources-anduin-other;/rpcnis-headers.tar.bz2"/>
81 </para>
82 </listitem>
83 <listitem>
84 <para>
85 Required patch (Remove nis dependencies):
86 <ulink url="&patch-root;/libtirpc-&libtirpc-version;-remove_nis-1.patch"/>
87 </para>
88 </listitem>
89 </itemizedlist>
90
91 <bridgehead renderas="sect3">libtirpc Dependencies</bridgehead>
92
93 <bridgehead renderas="sect4">Optional</bridgehead>
94 <para role="optional">
95 <ulink url="http://www.citi.umich.edu/projects/nfsv4/linux/libgssapi">libgssapi</ulink>
96 </para>
97
98 <para condition="html" role="usernotes">User Notes:
99 <ulink url="&blfs-wiki;/libtirpc"/>
100 </para>
101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of libtirpc</title>
105
106 <para>
107 In LFS-7.1 the NIS and RPC related headers were not installed by default.
108 If that applies to your system, install them by running the following
109 command as the <systemitem class="username">root</systemitem> user:
110 </para>
111
112<screen role="root"><userinput>if [ ! -r /usr/include/rpc/rpc.h ]; then
113 tar -xvf ../rpcnis-headers.tar.bz2 -C /usr/include
114fi</userinput></screen>
115
116 <para>
117 Install <application>libtirpc</application> by running the following
118 commands:
119 </para>
120
121<screen><userinput>patch -Np1 -i ../libtirpc-&libtirpc-version;-remove_nis-1.patch &amp;&amp;
122sed "s@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@g" -i configure.ac &amp;&amp;
123autoreconf -fi &amp;&amp;
124
125./configure --prefix=/usr --sysconfdir=/etc CFLAGS="-fPIC" --disable-static &amp;&amp;
126make</userinput></screen>
127
128 <para>
129 This package does not come with a test suite.
130 </para>
131
132 <para>
133 Now, as the <systemitem class="username">root</systemitem> user:
134 </para>
135
136<screen role="root"><userinput>make install &amp;&amp;
137mv -v /usr/lib/libtirpc.so.* /lib &amp;&amp;
138ln -sfv ../../lib/libtirpc.so.1.0.10 /usr/lib/libtirpc.so</userinput></screen>
139
140 </sect2>
141
142 <sect2 role="commands">
143 <title>Command Explanations</title>
144
145 <para>
146 <command>sed "s@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@g"
147 -i configure.ac</command>: This sed fixes some issues with
148 <application>Automake</application> 1.13 and later.
149 </para>
150
151 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
152 href="../../xincludes/static-libraries.xml"/>
153
154 <para>
155 <command>mv -v /usr/lib/libtirpc.so.* ...</command>: Move shared
156 libraries into /lib so they are available before /usr is mounted.
157 </para>
158
159 </sect2>
160
161 <sect2 role="content">
162 <title>Contents</title>
163
164 <segmentedlist>
165 <segtitle>Installed Programs</segtitle>
166 <segtitle>Installed Libraries</segtitle>
167 <segtitle>Installed Directory</segtitle>
168
169 <seglistitem>
170 <seg>
171 None
172 </seg>
173 <seg>
174 libtirpc.so
175 </seg>
176 <seg>
177 /usr/include/libtirpc
178 </seg>
179 </seglistitem>
180 </segmentedlist>
181
182 <variablelist>
183 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
184 <?dbfo list-presentation="list"?>
185 <?dbhtml list-presentation="table"?>
186
187 <varlistentry id="libtirpc-lib">
188 <term><filename class="libraryfile">libtirpc.so</filename></term>
189 <listitem>
190 <para>
191 provides the Remote Procedure Call (RPC) API functions required by
192 other programs.
193 </para>
194 <indexterm zone="libtirpc libtirpc-lib">
195 <primary sortas="c-libtirpc">libtirpc.so</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 </variablelist>
201
202 </sect2>
203
204</sect1>
Note: See TracBrowser for help on using the repository browser.