source: general/genutils/pinentry.xml@ d4e8cd93

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 d4e8cd93 was d4e8cd93, checked in by Xi Ruoyao <xry111@…>, 5 years ago

Resurrect ftp.gnupg.org URLs

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

  • Property mode set to 100644
File size: 8.1 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 "&gnupg-http;/pinentry/pinentry-&pinentry-version;.tar.bz2">
8 <!ENTITY pinentry-download-ftp "&gnupg-ftp;/pinentry/pinentry-&pinentry-version;.tar.bz2">
9 <!ENTITY pinentry-download-ftp " ">
10 <!ENTITY pinentry-md5sum "3829315cb0a1e9cedc05ffe6def7a2c6">
11 <!ENTITY pinentry-size "460 KB">
12 <!ENTITY pinentry-buildsize "11 MB">
13 <!ENTITY pinentry-time "less than 0.1 SBU">
14]>
15
16<sect1 id="pinentry" xreflabel="pinentry-&pinentry-version;">
17 <?dbhtml filename="pinentry.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>pinentry-&pinentry-version;</title>
25
26 <indexterm zone="pinentry">
27 <primary sortas="a-PIN-Entry">PIN-Entry</primary>
28 </indexterm>
29
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), and for the common
42 <application>GTK</application> and <application>Qt</application>
43 toolkits.</para>
44
45 &lfs84_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">PIN-Entry Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Required</bridgehead>
72 <para role="required">
73 <xref linkend="libassuan"/> and
74 <xref linkend="libgpg-error"/>
75 </para>
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="emacs"/>,
80 <xref linkend="gcr"/>,
81 <xref linkend="gtk2"/>,
82 <xref linkend="gtk3"/>,
83 <!-- <xref linkend="libcap-pam"/>, This is in LFS already. PAM is not
84 necessary. -->
85 <xref linkend="libsecret"/>, and
86 <xref linkend="qt5"/>
87 </para>
88
89 <para condition="html" role="usernotes">User Notes:
90 <ulink url="&blfs-wiki;/pinentry"/></para>
91
92 </sect2>
93
94 <sect2 role="installation">
95 <title>Installation of PIN-Entry</title>
96
97 <para>Install <application>PIN-Entry</application> by running the following
98 commands:</para>
99
100<screen><userinput>./configure --prefix=/usr --enable-pinentry-tty &amp;&amp;
101make</userinput></screen>
102
103 <para>This package does not come with a test suite.</para>
104
105 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
106
107<screen role="root"><userinput>make install</userinput></screen>
108
109 </sect2>
110
111 <sect2 role="commands">
112 <title>Command Explanations</title>
113
114 <para>
115 <option>--enable-inside-emacs=yes/no</option>: Default is no.
116 </para>
117
118 <para>
119 <option>--enable-pinentry-qt=yes/no</option>: Default is yes.
120 </para>
121
122 <para>
123 <option>--enable-pinentry-gtk2=yes/no</option>: Default is yes. Even if
124 other <command>pinentry-*</command> is installed,
125 <command>pinentry</command> will be a symlink to
126 <command>pinentry-gtk-2</command>.
127 </para>
128
129 <para>
130 <option>--enable-pinentry-gnome3=yes/no</option>: Default is yes.
131 Actually, it is the gtk3 pinentry.
132 </para>
133
134 <para>
135 <option>--enable-pinentry-tty</option>: Default is 'maybe'.
136 </para>
137
138 </sect2>
139
140 <sect2 role="content">
141 <title>Contents</title>
142
143 <segmentedlist>
144 <segtitle>Installed Programs</segtitle>
145 <segtitle>Installed Libraries</segtitle>
146 <segtitle>Installed Directory</segtitle>
147
148 <seglistitem>
149 <seg>
150 pinentry (symlink), pinentry-curses, pinentry-emacs, pinentry-gnome3,
151 pinentry-gtk-2, pinentry-qt, and pinentry-tty
152 </seg>
153 <seg>None</seg>
154 <seg>None</seg>
155 </seglistitem>
156 </segmentedlist>
157
158 <variablelist>
159 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
160 <?dbfo list-presentation="list"?>
161 <?dbhtml list-presentation="table"?>
162
163 <varlistentry id="pinentry-prog">
164 <term><command>pinentry</command></term>
165 <listitem>
166 <para>is a symbolic link to the default
167 <application>PIN-Entry</application> program.</para>
168 <indexterm zone="pinentry pinentry-prog">
169 <primary sortas="b-pinentry">pinentry</primary>
170 </indexterm>
171 </listitem>
172 </varlistentry>
173
174 <varlistentry id="pinentry-curses">
175 <term><command>pinentry-curses</command></term>
176 <listitem>
177 <para> is an <application>Ncurses</application> text-based
178 <application>PIN-Entry</application> helper program.</para>
179 <indexterm zone="pinentry pinentry-curses">
180 <primary sortas="b-pinentry-curses">pinentry-curses</primary>
181 </indexterm>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry id="pinentry-emacs">
186 <term><command>pinentry-emacs</command></term>
187 <listitem>
188 <para> is an <application>Emacs</application> version of the
189 <application>PIN-Entry</application> helper program.</para>
190 <indexterm zone="pinentry pinentry-emacs">
191 <primary sortas="b-pinentry-emacs">pinentry-emacs</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="pinentry-gnome3">
197 <term><command>pinentry-gnome3</command></term>
198 <listitem>
199 <para> is a <application>GNOME-3</application>
200 <application>PIN-Entry</application> helper program.</para>
201 <indexterm zone="pinentry pinentry-gnome3">
202 <primary sortas="b-pinentry-gnome3">pinentry-gnome3</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 <varlistentry id="pinentry-gtk-2">
208 <term><command>pinentry-gtk-2</command></term>
209 <listitem>
210 <para> is a <application>GTK+2</application>
211 <application>PIN-Entry</application> program program.</para>
212 <indexterm zone="pinentry pinentry-gtk-2">
213 <primary sortas="b-pinentry-gtk-2">pinentry-gtk-2</primary>
214 </indexterm>
215 </listitem>
216 </varlistentry>
217
218 <varlistentry id="pinentry-qt">
219 <term><command>pinentry-qt</command></term>
220 <listitem>
221 <para> is a <application>Qt4 or 5</application>
222 <application>PIN-Entry</application> helper program.</para>
223 <indexterm zone="pinentry pinentry-qt">
224 <primary sortas="b-pinentry-qt">pinentry-qt</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry>
228
229 <varlistentry id="pinentry-tty">
230 <term><command>pinentry-tty</command></term>
231 <listitem>
232 <para> is a <application>tty</application>
233 <application>PIN-Entry</application> helper program.</para>
234 <indexterm zone="pinentry pinentry-tty">
235 <primary sortas="b-pinentry-tty">pinentry-tty</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 </variablelist>
241
242 </sect2>
243
244</sect1>
Note: See TracBrowser for help on using the repository browser.