source: networking/netlibs/libnsl.xml@ 6397333

basic
Last change on this file since 6397333 was 6397333, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Convert internal like to external links for BLFS packages not in
the Basic book.

Reorder some chapters.

Merge System V and systemd sections so both are always displayed
with proper attribution for system type.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/basic@20524 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.4 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 libnsl-download-http "https://github.com/thkukuk/libnsl/archive/v&libnsl-version;/libnsl-&libnsl-version;.tar.gz">
8 <!ENTITY libnsl-download-ftp " ">
9 <!ENTITY libnsl-md5sum "05222024777e12e2f6d48f2e7d067ac7">
10 <!ENTITY libnsl-size "208 KB">
11 <!ENTITY libnsl-buildsize "9.3 MB">
12 <!ENTITY libnsl-time "0.2 SBU">
13]>
14
15<sect1 id="libnsl" xreflabel="libnsl-&libnsl-version;">
16 <?dbhtml filename="libnsl.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libnsl-&libnsl-version;</title>
24
25 <indexterm zone="libnsl">
26 <primary sortas="a-libnsl">libnsl</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libnsl</title>
31
32 <para>
33 The <application>libnsl</application> package contains the public client
34 interface for NIS(YP) and NIS+. It replaces the NIS library that used to
35 be in glibc.
36 </para>
37
38 &lfs83_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing='compact'>
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&libnsl-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&libnsl-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &libnsl-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &libnsl-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &libnsl-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &libnsl-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">libnsl Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="rpcsvc-proto"/> and
79 <xref linkend="libtirpc"/>
80 </para>
81
82 <para condition="html" role="usernotes">User Notes:
83 <ulink url="&blfs-wiki;/libnsl"/>
84 </para>
85 </sect2>
86
87 <sect2 role="installation">
88 <title>Installation of libnsl</title>
89
90 <para>
91 Install <application>libnsl</application> by running the following
92 commands:
93 </para>
94
95<screen><userinput>autoreconf -fi &amp;&amp;
96./configure --sysconfdir=/etc &amp;&amp;
97make</userinput></screen>
98
99 <para>
100 This package does not come with a test suite.
101 </para>
102
103 <para>
104 Now, as the <systemitem class="username">root</systemitem> user:
105 </para>
106
107<screen role="root"><userinput>make install &amp;&amp;
108mv /usr/lib/libnsl.so.2* /lib &amp;&amp;
109ln -sfv ../../lib/libnsl.so.2.0.0 /usr/lib/libnsl.so</userinput></screen>
110
111 </sect2>
112
113 <sect2 role="commands">
114 <title>Command Explanations</title>
115
116 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
117 href="../../xincludes/static-libraries.xml"/>
118
119 <para>
120 <command>mv -v /usr/lib/libnsl.so.2* ...</command>: Move shared
121 libraries into /lib so they are available before /usr is mounted.
122 </para>
123
124 </sect2>
125
126 <sect2 role="content">
127 <title>Contents</title>
128
129 <segmentedlist>
130 <segtitle>Installed Programs</segtitle>
131 <segtitle>Installed Libraries</segtitle>
132 <segtitle>Installed Directories</segtitle>
133
134 <seglistitem>
135 <seg>
136 None
137 </seg>
138 <seg>
139 libnsl.{a,so}
140 </seg>
141 <seg>
142 None
143 </seg>
144 </seglistitem>
145 </segmentedlist>
146
147 <variablelist>
148 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
149 <?dbfo list-presentation="list"?>
150 <?dbhtml list-presentation="table"?>
151
152 <varlistentry id="libnsl-lib">
153 <term><filename class="libraryfile">libnsl.{a,so}</filename></term>
154 <listitem>
155 <para>
156 provides the NIS (YP) API functions required by other programs.
157 </para>
158 <indexterm zone="libnsl libnsl-lib">
159 <primary sortas="c-libnsl">libnsl.so</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 </variablelist>
165
166 </sect2>
167
168</sect1>
Note: See TracBrowser for help on using the repository browser.