source: archive/simpleburn.xml@ 48b59802

11.1 11.2 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 upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 48b59802 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 7.5 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 simpleburn-download-http "http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-&simpleburn-version;.tar.gz">
8 <!ENTITY simpleburn-download-ftp " ">
9 <!ENTITY simpleburn-md5sum "11cf5b9a69fda6c72b1ae1277fafa386">
10 <!ENTITY simpleburn-size "52 KB">
11 <!ENTITY simpleburn-buildsize "1.6 MB">
12 <!ENTITY simpleburn-time "less than 0.1 SBU">
13]>
14
15<sect1 id="simpleburn" xreflabel="SimpleBurn-&simpleburn-version;">
16 <?dbhtml filename="simpleburn.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>SimpleBurn-&simpleburn-version;</title>
23
24 <indexterm zone="simpleburn">
25 <primary sortas="a-SimpleBurn">SimpleBurn</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to SimpleBurn</title>
30
31 <para>
32 <application>SimpleBurn</application> is a minimalistic application for
33 burning and extracting CDs and DVDs.
34 </para>
35
36 &lfs7a_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&simpleburn-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&simpleburn-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &simpleburn-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &simpleburn-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &simpleburn-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &simpleburn-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">SimpleBurn Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para role="required">
76 <xref linkend="libcddb"/> and
77 <xref linkend="cmake"/> and
78 <xref linkend="gtk2"/>
79 </para>
80
81 <bridgehead renderas="sect4">Recommended</bridgehead>
82 <para role="recommended">
83 <xref linkend="libisoburn"/>,
84 <xref linkend="cdparanoia"/>, and
85 <xref linkend="cdrdao"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="libcdio"/> (to identify and play CDs),
91 <xref linkend="flac"/>,
92 <xref linkend="mpg123"/>,
93 <xref linkend="vorbistools"/>,
94 <xref linkend="lame"/>,
95 <xref linkend="mplayer"/>,
96 <ulink url="http://mpg321.sourceforge.net/">mpg321</ulink>,
97 <ulink url="http://normalize.nongnu.org/">normalize</ulink>,
98 <ulink url="http://sourceforge.net/projects/cdrtools/files/alpha/">cdrtools</ulink>, and
99 <ulink url="http://www.cdrkit.org/">cdrkit</ulink>
100 </para>
101
102 <para condition="html" role="usernotes">User Notes:
103 <ulink url="&blfs-wiki;/simpleburn"/>
104 </para>
105
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of SimpleBurn</title>
110
111 <para>
112 Install <application>SimpleBurn</application> by running the following
113 commands:
114 </para>
115
116<screen><userinput>sed -i -e 's|DESTINATION doc|DESTINATION share/doc|' CMakeLists.txt &amp;&amp;
117
118mkdir build &amp;&amp;
119cd build &amp;&amp;
120
121cmake -DCMAKE_BUILD_TYPE=Release \
122 -DCMAKE_INSTALL_PREFIX=/usr \
123 -DBURNING=LIBBURNIA .. &amp;&amp;
124make</userinput></screen>
125
126 <para>
127 This package does not come with a test suite.
128 </para>
129
130 <para>
131 Now, as the <systemitem class="username">root</systemitem> user:
132 </para>
133
134<screen role="root"><userinput>make install</userinput></screen>
135
136 <para>
137 All optical devices are not accessible for any user except <systemitem
138 class="username">root</systemitem> and members of the <systemitem
139 class="groupname">cdrom</systemitem> group. Add any users that might use
140 the optical devices to that group:
141 </para>
142
143<screen role="root"><userinput>usermod -a -G cdrom <replaceable>&lt;username&gt;</replaceable></userinput></screen>
144
145 </sect2>
146
147 <sect2 role="commands">
148 <title>Command Explanations</title>
149
150 <para>
151 <command>sed ...</command>: Ensure the documentation is installed
152 in /usr/share/doc.
153 </para>
154
155 <para>
156 <parameter>-DBURNING=LIBBURNIA</parameter>: This switch changes the
157 burning suite from the default cdrtools.
158 </para>
159
160 </sect2>
161
162 <sect2 role="content">
163 <title>Contents</title>
164
165 <segmentedlist>
166 <segtitle>Installed Programs</segtitle>
167 <segtitle>Installed Libraries</segtitle>
168 <segtitle>Installed Directories</segtitle>
169
170 <seglistitem>
171 <seg>
172 simpleburn,
173 simpleburn.sh
174 simpleburn-detect.sh,
175 simpleburn-gauges, and
176 simpleburn-gauges.sh
177 </seg>
178 <seg>
179 None
180 </seg>
181 <seg>
182 /usr/share/doc/simpleburn-&simpleburn-version; and
183 /usr/share/simpleburn
184 </seg>
185 </seglistitem>
186 </segmentedlist>
187
188 <variablelist>
189 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
190 <?dbfo list-presentation="list"?>
191 <?dbhtml list-presentation="table"?>
192
193 <varlistentry id="simpleburn-prog">
194 <term><command>simpleburn</command></term>
195 <listitem>
196 <para>
197 is the graphical program.
198 </para>
199 <indexterm zone="simpleburn simpleburn-prog">
200 <primary sortas="b-simpleburn">simpleburn</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <varlistentry id="simpleburn-gauges">
206 <term><command>simpleburn-gauges</command></term>
207 <listitem>
208 <para>
209 is a program used to display a gauge.
210 </para>
211 <indexterm zone="simpleburn simpleburn-gauges">
212 <primary sortas="b-simpleburn-gauges">simpleburn-gauges</primary>
213 </indexterm>
214 </listitem>
215 </varlistentry>
216
217 <varlistentry id="simpleburn-detect.sh">
218 <term><command>simpleburn-detect.sh</command></term>
219 <listitem>
220 <para>
221 is a script that detects a cdrom and optional outputs details
222 about the media.
223 </para>
224 <indexterm zone="simpleburn simpleburn-detect.sh">
225 <primary sortas="b-simpleburn-detect.sh">simpleburn-detect.sh</primary>
226 </indexterm>
227 </listitem>
228 </varlistentry>
229
230 <varlistentry id="simpleburn-gauges.sh">
231 <term><command>simpleburn-gauges.sh</command></term>
232 <listitem>
233 <para>
234 is a suport script for other simpleburn scripts
235 </para>
236 <indexterm zone="simpleburn simpleburn-gauges.sh">
237 <primary sortas="b-simpleburn-gauges.sh">simpleburn-gauges.sh</primary>
238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 <varlistentry id="simpleburn.sh">
243 <term><command>simpleburn.sh</command></term>
244 <listitem>
245 <para>
246 is a script for command line based cdrom operations
247 </para>
248 <indexterm zone="simpleburn simpleburn.sh">
249 <primary sortas="b-simpleburn.sh">simpleburn.sh</primary>
250 </indexterm>
251 </listitem>
252 </varlistentry>
253
254 </variablelist>
255
256 </sect2>
257
258</sect1>
Note: See TracBrowser for help on using the repository browser.