Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] eselect r480 - in trunk: . man
Date: Mon, 20 Apr 2009 20:07:33
Message-Id: E1Lvzm6-0004ik-QB@stork.gentoo.org
1 Author: ulm
2 Date: 2009-04-20 20:07:29 +0000 (Mon, 20 Apr 2009)
3 New Revision: 480
4
5 Added:
6 trunk/man/editor.eselect.5
7 trunk/man/pager.eselect.5
8 trunk/man/visual.eselect.5
9 Modified:
10 trunk/ChangeLog
11 trunk/man/Makefile.am
12 Log:
13 Add man pages for the new modules.
14
15 Modified: trunk/ChangeLog
16 ===================================================================
17 --- trunk/ChangeLog 2009-04-20 17:06:47 UTC (rev 479)
18 +++ trunk/ChangeLog 2009-04-20 20:07:29 UTC (rev 480)
19 @@ -14,8 +14,12 @@
20 * modules/visual.eselect:
21 * modules/pager.eselect: New modules and library, managing the
22 EDITOR, VISUAL and PAGER environment variables; bug 190216.
23 + * man/editor.eselect.5:
24 + * man/visual.eselect.5:
25 + * man/pager.eselect.5: New man pages.
26 * libs/Makefile.am (eselectlibs_SCRIPTS, EXTRA_DIST):
27 - * modules/Makefile.am (safe_scripts): Add the new files.
28 + * modules/Makefile.am (safe_scripts):
29 + * man/Makefile.am (man_MANS): Add the new files.
30 * NEWS: Mention the new feature.
31
32 2009-04-19 Thomas Anderson <gentoofan23@g.o>
33
34 Modified: trunk/man/Makefile.am
35 ===================================================================
36 --- trunk/man/Makefile.am 2009-04-20 17:06:47 UTC (rev 479)
37 +++ trunk/man/Makefile.am 2009-04-20 20:07:29 UTC (rev 480)
38 @@ -1,11 +1,14 @@
39 man_MANS = eselect.1 \
40 bashcomp.eselect.5 \
41 binutils.eselect.5 \
42 + editor.eselect.5 \
43 env.eselect.5 \
44 + kernel.eselect.5 \
45 + mailer.eselect.5 \
46 + pager.eselect.5 \
47 profile.eselect.5 \
48 - mailer.eselect.5 \
49 rc.eselect.5 \
50 - kernel.eselect.5
51 + visual.eselect.5
52
53 EXTRA_DIST = $(man_MANS)
54 MAINTAINERCLEANFILES = Makefile.in
55
56 Added: trunk/man/editor.eselect.5
57 ===================================================================
58 --- trunk/man/editor.eselect.5 (rev 0)
59 +++ trunk/man/editor.eselect.5 2009-04-20 20:07:29 UTC (rev 480)
60 @@ -0,0 +1,83 @@
61 +.\" Copyright 2009 Gentoo Foundation
62 +.\" Distributed under the terms of the GNU General Public License v2
63 +.\" $Id$
64 +.\"
65 +.TH ESELECT 5 "April 2009" "Gentoo Linux" eselect
66 +.SH NAME
67 +editor.eselect \- The EDITOR management module for Gentoo's eselect
68 +.SH SYNOPSIS
69 +.B eselect editor
70 +.RB [ help | usage | version ]
71 +.br
72 +.B eselect editor list
73 +.br
74 +.B eselect editor set
75 +.I target
76 +.br
77 +.B eselect editor show
78 +.br
79 +.B eselect editor update
80 +.SH DESCRIPTION
81 +.B eselect
82 +is Gentoo's configuration and management tool. It features modules
83 +that care for the individual administrative tasks.
84 +.SH ACTION: LIST
85 +.B eselect editor list
86 +.br
87 +List available targets for the
88 +.I EDITOR
89 +variable.
90 +
91 +# eselect editor list
92 +.br
93 +Available targets for the EDITOR variable:
94 +.br
95 + [1] /bin/nano *
96 + [2] /usr/bin/emacs
97 + [3] /usr/bin/vi
98 + [ ] (free form)
99 +.SH ACTION: SET
100 +.B eselect editor set
101 +.I target
102 +.br
103 +Set the
104 +.I EDITOR
105 +variable in the system profile.
106 +.I target
107 +can be either an identification number given by
108 +.B eselect editor list
109 +or the name of an installed text editor.
110 +
111 +# eselect editor set emacs
112 +.br
113 +Setting EDITOR to /usr/bin/emacs ...
114 +.SH ACTION: SHOW
115 +.B eselect editor show
116 +.br
117 +Show the value of the
118 +.I EDITOR
119 +variable in the system profile.
120 +
121 +# eselect editor show
122 +.br
123 +EDITOR variable in profile:
124 +.br
125 + /usr/bin/emacs
126 +.SH ACTION: UPDATE
127 +.B eselect editor update
128 +.br
129 +Update the
130 +.I EDITOR
131 +variable if it is unset or invalid.
132 +.SH FILES
133 +.TP
134 +.B /etc/env.d/99editor
135 +Configuration file where the variable is stored.
136 +.SH AUTHOR
137 +Ulrich Mueller <ulm@g.o>
138 +.SH SEE ALSO
139 +.BR eselect (1),
140 +.BR visual.eselect (5),
141 +.BR environ (7)
142 +.SH REVISION
143 +$Id$
144
145
146 Property changes on: trunk/man/editor.eselect.5
147 ___________________________________________________________________
148 Name: svn:keywords
149 + Id
150
151 Added: trunk/man/pager.eselect.5
152 ===================================================================
153 --- trunk/man/pager.eselect.5 (rev 0)
154 +++ trunk/man/pager.eselect.5 2009-04-20 20:07:29 UTC (rev 480)
155 @@ -0,0 +1,81 @@
156 +.\" Copyright 2009 Gentoo Foundation
157 +.\" Distributed under the terms of the GNU General Public License v2
158 +.\" $Id$
159 +.\"
160 +.TH ESELECT 5 "April 2009" "Gentoo Linux" eselect
161 +.SH NAME
162 +pager.eselect \- The PAGER management module for Gentoo's eselect
163 +.SH SYNOPSIS
164 +.B eselect pager
165 +.RB [ help | usage | version ]
166 +.br
167 +.B eselect pager list
168 +.br
169 +.B eselect pager set
170 +.I target
171 +.br
172 +.B eselect pager show
173 +.br
174 +.B eselect pager update
175 +.SH DESCRIPTION
176 +.B eselect
177 +is Gentoo's configuration and management tool. It features modules
178 +that care for the individual administrative tasks.
179 +.SH ACTION: LIST
180 +.B eselect pager list
181 +.br
182 +List available targets for the
183 +.I PAGER
184 +variable.
185 +
186 +# eselect pager list
187 +.br
188 +Available targets for the PAGER variable:
189 +.br
190 + [1] /bin/more *
191 + [2] /usr/bin/less
192 + [ ] (free form)
193 +.SH ACTION: SET
194 +.B eselect pager set
195 +.I target
196 +.br
197 +Set the
198 +.I PAGER
199 +variable in the system profile.
200 +.I target
201 +can be either an identification number given by
202 +.B eselect pager list
203 +or the name of an installed terminal pager program.
204 +
205 +# eselect pager set 2
206 +.br
207 +Setting PAGER to /usr/bin/less ...
208 +.SH ACTION: SHOW
209 +.B eselect pager show
210 +.br
211 +Show the value of the
212 +.I PAGER
213 +variable in the system profile.
214 +
215 +# eselect pager show
216 +.br
217 +PAGER variable in profile:
218 +.br
219 + /usr/bin/less
220 +.SH ACTION: UPDATE
221 +.B eselect pager update
222 +.br
223 +Update the
224 +.I PAGER
225 +variable if it is unset or invalid.
226 +.SH FILES
227 +.TP
228 +.B /etc/env.d/99pager
229 +Configuration file where the variable is stored.
230 +.SH AUTHOR
231 +Ulrich Mueller <ulm@g.o>
232 +.SH SEE ALSO
233 +.BR eselect (1),
234 +.BR environ (7)
235 +.SH REVISION
236 +$Id$
237
238
239 Property changes on: trunk/man/pager.eselect.5
240 ___________________________________________________________________
241 Name: svn:keywords
242 + Id
243
244 Added: trunk/man/visual.eselect.5
245 ===================================================================
246 --- trunk/man/visual.eselect.5 (rev 0)
247 +++ trunk/man/visual.eselect.5 2009-04-20 20:07:29 UTC (rev 480)
248 @@ -0,0 +1,85 @@
249 +.\" Copyright 2009 Gentoo Foundation
250 +.\" Distributed under the terms of the GNU General Public License v2
251 +.\" $Id$
252 +.\"
253 +.TH ESELECT 5 "April 2009" "Gentoo Linux" eselect
254 +.SH NAME
255 +visual.eselect \- The VISUAL management module for Gentoo's eselect
256 +.SH SYNOPSIS
257 +.B eselect visual
258 +.RB [ help | usage | version ]
259 +.br
260 +.B eselect visual list
261 +.br
262 +.B eselect visual set
263 +.I target
264 +.br
265 +.B eselect visual show
266 +.br
267 +.B eselect visual update
268 +.SH DESCRIPTION
269 +.B eselect
270 +is Gentoo's configuration and management tool. It features modules
271 +that care for the individual administrative tasks.
272 +.SH ACTION: LIST
273 +.B eselect visual list
274 +.br
275 +List available targets for the
276 +.I VISUAL
277 +variable.
278 +
279 +# eselect visual list
280 +.br
281 +Available targets for the
282 +.I VISUAL
283 +variable:
284 +.br
285 + [1] /bin/nano *
286 + [2] /usr/bin/emacs
287 + [3] /usr/bin/vi
288 + [ ] (free form)
289 +.SH ACTION: SET
290 +.B eselect visual set
291 +.I target
292 +.br
293 +Set the
294 +.I VISUAL
295 +variable in the system profile.
296 +.I target
297 +can be either an identification number given by
298 +.B eselect visual list
299 +or the name of an installed text editor.
300 +
301 +# eselect visual set emacs
302 +.br
303 +Setting VISUAL to /usr/bin/emacs ...
304 +.SH ACTION: SHOW
305 +.B eselect visual show
306 +.br
307 +Show the value of the
308 +.I VISUAL
309 +variable in the system profile.
310 +
311 +# eselect visual show
312 +.br
313 +VISUAL variable in profile:
314 +.br
315 + /usr/bin/emacs
316 +.SH ACTION: UPDATE
317 +.B eselect visual update
318 +.br
319 +Update the
320 +.I VISUAL
321 +variable if it is unset or invalid.
322 +.SH FILES
323 +.TP
324 +.B /etc/env.d/99editor
325 +Configuration file where the variable is stored.
326 +.SH AUTHOR
327 +Ulrich Mueller <ulm@g.o>
328 +.SH SEE ALSO
329 +.BR eselect (1),
330 +.BR editor.eselect (5),
331 +.BR environ (7)
332 +.SH REVISION
333 +$Id$
334
335
336 Property changes on: trunk/man/visual.eselect.5
337 ___________________________________________________________________
338 Name: svn:keywords
339 + Id