source: archive/alpine.xml@ 761f653

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 xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 761f653 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 19 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 7.0 KB
RevLine 
[1066772]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
[af14fff]7 <!ENTITY alpine-download-http "&sources-anduin-http;/alpine/alpine-&alpine-version;.tar.xz">
[a4f37269]8 <!ENTITY alpine-download-ftp " ">
9 <!ENTITY alpine-md5sum "02dad85c1be80ce020206f222ecf5ac8">
10 <!ENTITY alpine-size "4.6 MB">
11 <!ENTITY alpine-buildsize "122 MB">
12 <!ENTITY alpine-time "1.0 SBU">
[1066772]13]>
14
[a4f37269]15<sect1 id="alpine" xreflabel="Alpine-&alpine-version;">
16 <?dbhtml filename="alpine.html"?>
[1066772]17
18
[a4f37269]19 <title>Alpine-&alpine-version;</title>
[1066772]20
[a4f37269]21 <indexterm zone="alpine">
22 <primary sortas="a-alpine">alpine</primary>
[1066772]23 </indexterm>
24
25 <sect2 role="package">
[a4f37269]26 <title>Introduction to Alpine</title>
[1066772]27
[a4f37269]28 <para><application>Alpine</application> is a text-based email client
29 developed by the University of Washington.</para>
[0d7900a]30
[169c9a9]31 &lfs84_checked;
[1066772]32
33 <bridgehead renderas="sect3">Package Information</bridgehead>
34 <itemizedlist spacing='compact'>
35 <listitem>
[a4f37269]36 <para>Download (HTTP): <ulink url="&alpine-download-http;"/></para>
[1066772]37 </listitem>
38 <listitem>
[a4f37269]39 <para>Download (FTP): <ulink url="&alpine-download-ftp;"/></para>
[1066772]40 </listitem>
41 <listitem>
[a4f37269]42 <para>Download MD5 sum: &alpine-md5sum;</para>
[1066772]43 </listitem>
44 <listitem>
[a4f37269]45 <para>Download size: &alpine-size;</para>
[1066772]46 </listitem>
47 <listitem>
[a4f37269]48 <para>Estimated disk space required: &alpine-buildsize;</para>
[1066772]49 </listitem>
50 <listitem>
[a4f37269]51 <para>Estimated build time: &alpine-time;</para>
[1066772]52 </listitem>
53 </itemizedlist>
[54f740f]54
[a4f37269]55 <bridgehead renderas="sect3">Alpine Dependencies</bridgehead>
[94b42903]56<!--
[1066772]57 <bridgehead renderas="sect4">Recommended</bridgehead>
58 <para role="recommended">
59 <xref linkend="openssl"/>
60 </para>
[94b42903]61-->
[1066772]62 <bridgehead renderas="sect4">Optional</bridgehead>
63 <para role="optional">
64 <xref linkend="openldap"/>,
65 <xref linkend="mitkrb"/>,
66 <xref linkend="aspell"/>,
[8b3dd72]67 <xref linkend="tcl"/>, and
[1066772]68 <xref linkend="linux-pam"/>
69 </para>
70
71 <para condition="html" role="usernotes">User Notes:
[a4f37269]72 <ulink url="&blfs-wiki;/alpine"/></para>
[1066772]73
74 </sect2>
75
76 <sect2 role="installation">
[a4f37269]77 <title>Installation of Alpine</title>
[1066772]78
[a4f37269]79 <para>Install <application>Alpine</application> by running the following
[1066772]80 commands:</para>
81
[a4f37269]82<screen><userinput>LIBS+="-lcrypto" ./configure --prefix=/usr \
83 --sysconfdir=/etc \
84 --without-ldap \
85 --without-krb5 \
86 --without-pam \
87 --without-tcl \
88 --with-ssl-dir=/usr \
89 --with-passfile=.pine-passfile &amp;&amp;
[1066772]90make</userinput></screen>
91
92 <para>This package does not come with a test suite.</para>
93
94 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
95
96<screen role='root'><userinput>make install</userinput></screen>
97
98 </sect2>
99
100 <sect2 role="commands">
101 <title>Command Explanations</title>
102
[a4f37269]103 <para><command>LIBS+="-lcrypto"</command>: Enable linking to
[94b42903]104 openssl. Additional linker flags are required for
[a4f37269]105 <xref linkend="linux-pam"/>, <option>-lpam</option>, and for
106 <xref linkend="mitkrb"/>, <option>-lkrb5</option>.</para>
107
[1066772]108 <para><parameter>--without-ldap</parameter>: Disables LDAP support.</para>
[0d7900a]109
[1066772]110 <para><parameter>--without-krb5</parameter>: Disables Kerberos support.</para>
111
[a4f37269]112 <para><parameter>--without-pam</parameter>: Disables Linux-PAM
113 support.</para>
114
115 <para><parameter>--without-tcl</parameter>: Disables TCL support.</para>
116
[0d7900a]117 <para><parameter>--with-ssl-dir=/usr</parameter>: Sets the root path to
[1066772]118 OpenSSL libraries and include files.</para>
[0d7900a]119
[1066772]120 <para><parameter>--with-passfile=.pine-passfile</parameter>: Sets the
121 password cache file.</para>
[0d7900a]122
[c2625d8f]123 <para><option>--without-ssl</option>: Disables OpenSSL support.</para>
[0d7900a]124
[1066772]125 </sect2>
126
127 <sect2 role="configuration">
[a4f37269]128 <title>Configuring Alpine</title>
[1066772]129
[a4f37269]130 <sect3 id="alpine-config">
[1066772]131 <title>Config Files</title>
132
133 <para><filename>~/.pinerc</filename></para>
134
[a4f37269]135 <indexterm zone="alpine alpine-config">
[1066772]136 <primary sortas="e-AA.pinerc">~/.pinerc</primary>
137 </indexterm>
138
139 </sect3>
140
141 <sect3>
142 <title>Configuration Information</title>
143
144 <para>It is not required to manually edit any configuration files to use
[0d7900a]145 the <application>Alpine</application> email client. Users can configure
[1066772]146 <application>Alpine</application> using the graphical configuration menu,
147 which stores the changes in <filename>~/.pinerc</filename>.</para>
148
149 </sect3>
150
151 </sect2>
152
153 <sect2 role="content">
154 <title>Contents</title>
155
156 <segmentedlist>
157 <segtitle>Installed Programs</segtitle>
158 <segtitle>Installed Libraries</segtitle>
159 <segtitle>Installed Directories</segtitle>
160
161 <seglistitem>
[8b3dd72]162 <seg>alpine, pico, pilot, rpdump, and rpload</seg>
[1066772]163 <seg>none</seg>
164 <seg>none</seg>
165 </seglistitem>
166 </segmentedlist>
167
168 <variablelist>
169 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
170 <?dbfo list-presentation="list"?>
171 <?dbhtml list-presentation="table"?>
172
[a4f37269]173 <varlistentry id="alpine-bin">
[1066772]174 <term><command>alpine</command></term>
175 <listitem>
176 <para>is the Alpine mailer.</para>
[a4f37269]177 <indexterm zone="alpine alpine-bin">
178 <primary sortas="b-alpine-bin">alpine</primary>
[1066772]179 </indexterm>
180 </listitem>
181 </varlistentry>
182
183 <varlistentry id="pico">
184 <term><command>pico</command></term>
185 <listitem>
186 <para>is a standalone text editor similar to the Alpine message composer.</para>
[a4f37269]187 <indexterm zone="alpine pico">
[1066772]188 <primary sortas="b-pico">pico</primary>
189 </indexterm>
190 </listitem>
191 </varlistentry>
[0d7900a]192
[1066772]193 <varlistentry id="pilot">
194 <term><command>pilot</command></term>
195 <listitem>
196 <para>is a standalone file system navigator.</para>
[a4f37269]197 <indexterm zone="alpine pilot">
[1066772]198 <primary sortas="b-pilot">pilot</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="rpdump">
204 <term><command>rpdump</command></term>
205 <listitem>
[73fe507]206 <para>is a utility for downloading a pinerc or address book to the
[028759b]207 local machine.</para>
[a4f37269]208 <indexterm zone="alpine rpdump">
[1066772]209 <primary sortas="b-rpdump">rpdump</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="rpload">
215 <term><command>rpload</command></term>
216 <listitem>
[73fe507]217 <para> is a utility for uploading a local pinerc or address book to
[028759b]218 an IMAP server.</para>
[a4f37269]219 <indexterm zone="alpine rpload">
[1066772]220 <primary sortas="b-rpload">rpload</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 </variablelist>
226
227 </sect2>
228
229</sect1>
Note: See TracBrowser for help on using the repository browser.