source: archive/alpine.xml@ 3cf6041d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 3cf6041d was 3cf6041d, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Archive alpine

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

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