source: general/genutils/pinentry.xml@ 14b8417

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 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 14b8417 was 14b8417, checked in by Guy Dalziel <gdalziel@…>, 15 years ago

Updated to pinentry-0.7.6.

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

  • Property mode set to 100644
File size: 8.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 pinentry-download-http "&sources-anduin-http;/p/pinentry-&pinentry-version;.tar.gz">
8 <!ENTITY pinentry-download-ftp "ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-&pinentry-version;.tar.gz">
9 <!ENTITY pinentry-md5sum "5a4f676375fa882009da02013d77210f">
10 <!ENTITY pinentry-size "464 KB">
11 <!ENTITY pinentry-buildsize "9 MB">
12 <!ENTITY pinentry-time "0.1 SBU">
13]>
14
15<sect1 id="pinentry" xreflabel="PIN-Entry-&pinentry-version;">
16 <?dbhtml filename="pinentry.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>PIN-Entry-&pinentry-version;</title>
24
25 <indexterm zone="pinentry">
26 <primary sortas="a-PIN-Entry">PIN-Entry</primary>
27 </indexterm>
28
29 <!--Required section-->
30 <sect2 role="package">
31 <title>Introduction to PIN-Entry</title>
32
33 <para>The <application>PIN-Entry</application> package contains a
34 collection of simple PIN or pass-phrase entry dialogs which utilize the
35 Assuan protocol as described by the
36 <ulink url="http://www.gnupg.org/aegypten/">&#xC4;gypten project</ulink>.
37 <application>PIN-Entry</application> programs are usually invoked by
38 the <command>gpg-agent</command> daemon, but can be run from the command
39 line as well. There are programs for various text-based and GUI
40 environments, including interfaces designed for
41 <application>Ncurses</application> (text-based),
42 <application>Gtk+</application>, <application>Gtk+-2</application>,
43 and <application>Qt-3</application>.</para>
44
45 &lfs65_checked;
46
47 <bridgehead renderas="sect3">Package Information</bridgehead>
48 <itemizedlist spacing="compact">
49 <listitem>
50 <para>Download (HTTP): <ulink url="&pinentry-download-http;"/></para>
51 </listitem>
52 <listitem>
53 <para>Download (FTP): <ulink url="&pinentry-download-ftp;"/></para>
54 </listitem>
55 <listitem>
56 <para>Download MD5 sum: &pinentry-md5sum;</para>
57 </listitem>
58 <listitem>
59 <para>Download size: &pinentry-size;</para>
60 </listitem>
61 <listitem>
62 <para>Estimated disk space required: &pinentry-buildsize;</para>
63 </listitem>
64 <listitem>
65 <para>Estimated build time: &pinentry-time;</para>
66 </listitem>
67 </itemizedlist>
68
69 <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
70 <itemizedlist spacing="compact">
71 <listitem>
72 <para>Required patch: <ulink
73 url="&patch-root;/pinentry-&pinentry-version;-fixes-1.patch"/></para>
74 </listitem>
75 </itemizedlist> -->
76
77 <bridgehead renderas="sect3">PIN-Entry Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Optional</bridgehead>
80 <para role="optional"><xref linkend="GTK"/>,
81 <xref linkend="gtk2"/>,
82 <xref linkend="qt"/>, and
83 <ulink url="http://packages.debian.org/stable/source/libcap">libcap</ulink></para>
84
85 <para condition="html" role="usernotes">User Notes:
86 <ulink url="&blfs-wiki;/pinentry"/></para>
87
88 </sect2>
89
90 <sect2 role="installation">
91 <title>Installation of PIN-Entry</title>
92
93 <para>Install <application>PIN-Entry</application> by running the following
94 commands:</para>
95
96<screen><userinput>./configure --prefix=/usr \
97 --enable-pin-entry-curses \
98 --enable-fallback-curses \
99 --disable-pinentry-gtk \
100 --disable-pinentry-gtk2 \
101 --disable-pinentry-qt &amp;&amp;
102make</userinput></screen>
103
104 <para>Only <command>info</command> documentation is shipped in the package
105 tarball. If you wish to build alternate formats of the documentation, you
106 must have <xref linkend="tetex"/> installed, then issue the following
107 commands:</para>
108
109<screen><userinput>make -k -C doc pdf ps html &amp;&amp;
110makeinfo --html --no-split -o doc/pinentry_nochunks.html doc/pinentry.texi &amp;&amp;
111makeinfo --plaintext -o doc/pinentry.txt doc/pinentry.texi</userinput></screen>
112
113 <para>This package does not come with a test suite.</para>
114
115 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
116
117<screen role="root"><userinput>make install &amp;&amp;
118install -v -m644 -D README /usr/share/doc/pinentry-&pinentry-version;/README</userinput></screen>
119
120 <para>If you built the additional documentation, install it by issuing the
121 following commands as the <systemitem class="username">root</systemitem>
122 user:</para>
123
124<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
125install -v -m644 doc/pinentry.html/* \
126 /usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
127install -v -m644 doc/pinentry_*.html \
128 /usr/share/doc/pinentry-&pinentry-version; &amp;&amp;
129install -v -m644 doc/pinentry.{pdf,ps,dvi,txt,texi} \
130 /usr/share/doc/pinentry-&pinentry-version;</userinput></screen>
131
132 </sect2>
133
134 <sect2 role="commands">
135 <title>Command Explanations</title>
136
137 <para><parameter>--enable-...</parameter>: These two parameters are used to
138 fix a problem with the <command>configure</command> script if the optional
139 dependencies are not installed. If the dependencies are installed, these
140 parameters may be omitted.</para>
141
142 <para><parameter>--disable-...</parameter>: These three parameters are used
143 to fix a problem with the <command>configure</command> script if the
144 optional dependencies are not installed. If the dependencies are installed,
145 these parameters may be omitted.</para>
146
147 </sect2>
148
149 <sect2 role="content">
150 <title>Contents</title>
151
152 <segmentedlist>
153 <segtitle>Installed Programs</segtitle>
154 <segtitle>Installed Libraries</segtitle>
155 <segtitle>Installed Directory</segtitle>
156
157 <seglistitem>
158 <seg>pinentry, pinentry-curses, pinentry-gtk, pinentry-gtk-2,
159 and pinentry-qt</seg>
160 <seg>None</seg>
161 <seg>/usr/share/doc/pinentry-&pinentry-version;</seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="pinentry-prog">
171 <term><command>pinentry</command></term>
172 <listitem>
173 <para>is a symbolic link to the default
174 <application>PIN-Entry</application> program.</para>
175 <indexterm zone="pinentry pinentry-prog">
176 <primary sortas="g-pinentry">pinentry</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="pinentry-curses">
182 <term><command>pinentry-curses</command></term>
183 <listitem>
184 <para> is an <application>Ncurses</application> text-based
185 <application>PIN-Entry</application> program.</para>
186 <indexterm zone="pinentry pinentry-curses">
187 <primary sortas="g-pinentry-curses">pinentry-curses</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="pinentry-gtk">
193 <term><command>pinentry-gtk</command></term>
194 <listitem>
195 <para> is a <application>Gtk</application> GUI
196 <application>PIN-Entry</application> program.</para>
197 <indexterm zone="pinentry pinentry-gtk">
198 <primary sortas="g-pinentry-gtk">pinentry-gtk</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="pinentry-gtk-2">
204 <term><command>pinentry-gtk-2</command></term>
205 <listitem>
206 <para> is a <application>Gtk-2</application> GUI
207 <application>PIN-Entry</application> program.</para>
208 <indexterm zone="pinentry pinentry-gtk-2">
209 <primary sortas="g-pinentry-gtk-2">pinentry-gtk-2</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="pinentry-qt">
215 <term><command>pinentry-qt</command></term>
216 <listitem>
217 <para> is a <application>Qt</application> GUI
218 <application>PIN-Entry</application> program.</para>
219 <indexterm zone="pinentry pinentry-qt">
220 <primary sortas="g-pinentry-qt">pinentry-qt</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.