Adding TOC to INSTALL
This commit is contained in:
parent
b03fc096d6
commit
0bcad18c4b
11 changed files with 673 additions and 102 deletions
|
|
@ -8,7 +8,7 @@ http://www.tuxpaint.org/
|
||||||
|
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
2021.August.29 (0.9.27)
|
2021.August.30 (0.9.27)
|
||||||
* Documentation updates
|
* Documentation updates
|
||||||
---------------------
|
---------------------
|
||||||
* Ensured Tux Paint's built-in help ("tuxpaint --help"),
|
* Ensured Tux Paint's built-in help ("tuxpaint --help"),
|
||||||
|
|
@ -29,7 +29,8 @@ $Id$
|
||||||
documentation files (since 0.9.26).
|
documentation files (since 0.9.26).
|
||||||
|
|
||||||
* Added table of contents to some documentation
|
* Added table of contents to some documentation
|
||||||
("Options Documentation", "FAQ", & "Advanced Stamps 'How-To'").
|
("Options Documentation", "FAQ", "Installation Documentation",
|
||||||
|
and "Advanced Stamps 'How-To'").
|
||||||
|
|
||||||
2021.June.28 (0.9.26)
|
2021.June.28 (0.9.26)
|
||||||
* New Features
|
* New Features
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,30 @@
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
March 9, 2021
|
August 30, 2021
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Requirements:
|
+----------------------------------------------------+
|
||||||
|
|Table of Contents |
|
||||||
|
|----------------------------------------------------|
|
||||||
|
| * Requirements |
|
||||||
|
| * Simple DirectMedia Layer library (libSDL) |
|
||||||
|
| * Other Libraries |
|
||||||
|
| * Compiling and Installation |
|
||||||
|
| * Windows Users |
|
||||||
|
| * Linux/Unix Users |
|
||||||
|
| * Debugging |
|
||||||
|
| * Uninstalling Tux Paint |
|
||||||
|
| * Windows |
|
||||||
|
| * Linux |
|
||||||
|
+----------------------------------------------------+
|
||||||
|
|
||||||
libSDL
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
|
||||||
|
Simple DirectMedia Layer library (libSDL)
|
||||||
|
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
||||||
Open Source multimedia programming library available under the GNU
|
Open Source multimedia programming library available under the GNU
|
||||||
|
|
@ -116,13 +133,15 @@ Requirements:
|
||||||
|
|
||||||
http://netpbm.sourceforge.net/
|
http://netpbm.sourceforge.net/
|
||||||
|
|
||||||
Compiling and Installation:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Compiling and Installation
|
||||||
|
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see
|
Tux Paint is released under the GNU General Public License (GPL) (see
|
||||||
"COPYING.txt" for details), and therefore the 'source code' to the
|
"COPYING.txt" for details), and therefore the 'source code' to the
|
||||||
program is available freely.
|
program is available freely.
|
||||||
|
|
||||||
Windows Users:
|
Windows Users
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -222,7 +241,7 @@ Compiling and Installation:
|
||||||
just be due to incorrect character-case (capital 'Z' instead of
|
just be due to incorrect character-case (capital 'Z' instead of
|
||||||
lowercase 'z') or a missing (or extra) '-' (dash).
|
lowercase 'z') or a missing (or extra) '-' (dash).
|
||||||
|
|
||||||
Linux/Unix Users:
|
Linux/Unix Users
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -351,13 +370,17 @@ Compiling and Installation:
|
||||||
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
||||||
for a complete list.
|
for a complete list.
|
||||||
|
|
||||||
Debugging:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
||||||
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
||||||
is wanted, "VERBOSE") #defines in "src/debug.h".
|
is wanted, "VERBOSE") #defines in "src/debug.h".
|
||||||
|
|
||||||
Uninstalling Tux Paint:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Uninstalling Tux Paint
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,15 +26,76 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
March 9, 2021 </p>
|
August 30, 2021 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
<h2>Requirements:</h2>
|
<table border="2"
|
||||||
|
cellspacing="0"
|
||||||
|
cellpadding="2"
|
||||||
|
summary="Table of Contents">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Table of Contents </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#requirements">Requirements</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#req-libsdl">Simple DirectMedia Layer library (libSDL)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#req-other-libs">Other Libraries</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling">Compiling and Installation</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-windows">Windows Users</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-linux">Linux/Unix Users</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#debugging">Debugging</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling">Uninstalling Tux Paint</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-windows">Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-linux">Linux</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="requirements" id="requirements">
|
||||||
|
Requirements </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
||||||
<h3>libSDL</h3>
|
<h3>
|
||||||
|
<a name="req-libsdl" id="req-libsdl">
|
||||||
|
Simple DirectMedia Layer library (libSDL) </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
||||||
|
|
@ -62,7 +123,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Other Libraries</h3>
|
<h3>
|
||||||
|
<a name="req-other-libs" id="req-other-libs">
|
||||||
|
Other Libraries </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
||||||
|
|
@ -155,12 +219,20 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Compiling and Installation:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="compiling" id="compiling">
|
||||||
|
Compiling and Installation </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
||||||
|
|
||||||
<h3>Windows Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-windows" id="compiling-windows">
|
||||||
|
Windows Users </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -277,7 +349,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux/Unix Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-linux" id="compiling-linux">
|
||||||
|
Linux/Unix Users </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -424,13 +499,26 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Debugging:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="debugging" id="debugging">
|
||||||
|
Debugging </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
||||||
|
|
||||||
<h2>Uninstalling Tux Paint:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="uninstalling" id="uninstalling">
|
||||||
|
Uninstalling Tux Paint </h2>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h3>Windows</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-windows" id="uninstalling-windows">
|
||||||
|
Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Using the Uninstaller</h4>
|
<h4>Using the Uninstaller</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -448,7 +536,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-linux" id="uninstalling-linux">
|
||||||
|
Linux </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,30 @@
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
marzo 9, 2021
|
agosto 30, 2021
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Requirements:
|
+----------------------------------------------------+
|
||||||
|
|Table of Contents |
|
||||||
|
|----------------------------------------------------|
|
||||||
|
| * Requirements |
|
||||||
|
| * Simple DirectMedia Layer library (libSDL) |
|
||||||
|
| * Other Libraries |
|
||||||
|
| * Compiling and Installation |
|
||||||
|
| * Windows Users |
|
||||||
|
| * Linux/Unix Users |
|
||||||
|
| * Debugging |
|
||||||
|
| * Uninstalling Tux Paint |
|
||||||
|
| * Windows |
|
||||||
|
| * Linux |
|
||||||
|
+----------------------------------------------------+
|
||||||
|
|
||||||
libSDL
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
|
||||||
|
Simple DirectMedia Layer library (libSDL)
|
||||||
|
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
||||||
Open Source multimedia programming library available under the GNU
|
Open Source multimedia programming library available under the GNU
|
||||||
|
|
@ -116,13 +133,15 @@ Requirements:
|
||||||
|
|
||||||
http://netpbm.sourceforge.net/
|
http://netpbm.sourceforge.net/
|
||||||
|
|
||||||
Compiling and Installation:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Compiling and Installation
|
||||||
|
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see
|
Tux Paint is released under the GNU General Public License (GPL) (see
|
||||||
"COPYING.txt" for details), and therefore the 'source code' to the
|
"COPYING.txt" for details), and therefore the 'source code' to the
|
||||||
program is available freely.
|
program is available freely.
|
||||||
|
|
||||||
Windows Users:
|
Windows Users
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -222,7 +241,7 @@ Compiling and Installation:
|
||||||
just be due to incorrect character-case (capital 'Z' instead of
|
just be due to incorrect character-case (capital 'Z' instead of
|
||||||
lowercase 'z') or a missing (or extra) '-' (dash).
|
lowercase 'z') or a missing (or extra) '-' (dash).
|
||||||
|
|
||||||
Linux/Unix Users:
|
Linux/Unix Users
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -351,13 +370,17 @@ Compiling and Installation:
|
||||||
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
||||||
for a complete list.
|
for a complete list.
|
||||||
|
|
||||||
Debugging:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
||||||
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
||||||
is wanted, "VERBOSE") #defines in "src/debug.h".
|
is wanted, "VERBOSE") #defines in "src/debug.h".
|
||||||
|
|
||||||
Uninstalling Tux Paint:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Uninstalling Tux Paint
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,15 +26,76 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
marzo 9, 2021 </p>
|
agosto 30, 2021 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
<h2>Requirements:</h2>
|
<table border="2"
|
||||||
|
cellspacing="0"
|
||||||
|
cellpadding="2"
|
||||||
|
summary="Table of Contents">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Table of Contents </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#requirements">Requirements</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#req-libsdl">Simple DirectMedia Layer library (libSDL)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#req-other-libs">Other Libraries</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling">Compiling and Installation</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-windows">Windows Users</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-linux">Linux/Unix Users</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#debugging">Debugging</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling">Uninstalling Tux Paint</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-windows">Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-linux">Linux</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="requirements" id="requirements">
|
||||||
|
Requirements </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
||||||
<h3>libSDL</h3>
|
<h3>
|
||||||
|
<a name="req-libsdl" id="req-libsdl">
|
||||||
|
Simple DirectMedia Layer library (libSDL) </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
||||||
|
|
@ -62,7 +123,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Other Libraries</h3>
|
<h3>
|
||||||
|
<a name="req-other-libs" id="req-other-libs">
|
||||||
|
Other Libraries </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
||||||
|
|
@ -155,12 +219,20 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Compiling and Installation:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="compiling" id="compiling">
|
||||||
|
Compiling and Installation </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
||||||
|
|
||||||
<h3>Windows Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-windows" id="compiling-windows">
|
||||||
|
Windows Users </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -277,7 +349,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux/Unix Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-linux" id="compiling-linux">
|
||||||
|
Linux/Unix Users </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -424,13 +499,26 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Debugging:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="debugging" id="debugging">
|
||||||
|
Debugging </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
||||||
|
|
||||||
<h2>Uninstalling Tux Paint:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="uninstalling" id="uninstalling">
|
||||||
|
Uninstalling Tux Paint </h2>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h3>Windows</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-windows" id="uninstalling-windows">
|
||||||
|
Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Using the Uninstaller</h4>
|
<h4>Using the Uninstaller</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -448,7 +536,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-linux" id="uninstalling-linux">
|
||||||
|
Linux </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,30 @@
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
mars 9, 2021
|
août 30, 2021
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Exigences :
|
+----------------------------------------------------+
|
||||||
|
|Table des matières |
|
||||||
|
|----------------------------------------------------|
|
||||||
|
| * Requirements |
|
||||||
|
| * Simple DirectMedia Layer library (libSDL) |
|
||||||
|
| * Autres bibliothèques |
|
||||||
|
| * Compiling and Installation |
|
||||||
|
| * Utilisateurs de Windows |
|
||||||
|
| * Utilisateurs de Linux/Unix |
|
||||||
|
| * Debugging |
|
||||||
|
| * Uninstalling Tux Paint |
|
||||||
|
| * Windows |
|
||||||
|
| * Linux |
|
||||||
|
+----------------------------------------------------+
|
||||||
|
|
||||||
libSDL
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
|
||||||
|
Simple DirectMedia Layer library (libSDL)
|
||||||
|
|
||||||
Tux Paint nécessite la bibliothèque de couches DirectMedia simple
|
Tux Paint nécessite la bibliothèque de couches DirectMedia simple
|
||||||
(libSDL), une bibliothèque de programmation multimédia Open Source
|
(libSDL), une bibliothèque de programmation multimédia Open Source
|
||||||
|
|
@ -119,13 +136,15 @@ Exigences :
|
||||||
|
|
||||||
http://netpbm.sourceforge.net/
|
http://netpbm.sourceforge.net/
|
||||||
|
|
||||||
Compilation et installation :
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Compiling and Installation
|
||||||
|
|
||||||
Tux Paint est publié sous la licence publique générale GNU (GPL) (voir
|
Tux Paint est publié sous la licence publique générale GNU (GPL) (voir
|
||||||
"COPYING.txt" pour plus de détails), et donc le 'code source' du
|
"COPYING.txt" pour plus de détails), et donc le 'code source' du
|
||||||
programme est disponible gratuitement.
|
programme est disponible gratuitement.
|
||||||
|
|
||||||
Utilisateurs de Windows :
|
Utilisateurs de Windows
|
||||||
|
|
||||||
Compilation :
|
Compilation :
|
||||||
|
|
||||||
|
|
@ -231,7 +250,7 @@ Compilation et installation :
|
||||||
incorrecte (majuscule 'Z' à la place de 'z' minuscule) ou un '-'
|
incorrecte (majuscule 'Z' à la place de 'z' minuscule) ou un '-'
|
||||||
(tiret) manquant (en trop).
|
(tiret) manquant (en trop).
|
||||||
|
|
||||||
Utilisateurs de Linux/Unix :
|
Utilisateurs de Linux/Unix
|
||||||
|
|
||||||
Compilation :
|
Compilation :
|
||||||
|
|
||||||
|
|
@ -365,13 +384,17 @@ Compilation et installation :
|
||||||
Remarque : Cette liste est obsolète. Voir "Makefile" et
|
Remarque : Cette liste est obsolète. Voir "Makefile" et
|
||||||
"Makefile-i18n" pour une liste complète.
|
"Makefile-i18n" pour une liste complète.
|
||||||
|
|
||||||
Débogage :
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
|
||||||
Le débogage (vers "STDOUT", par exemple le terminal, ou vers un fichier
|
Le débogage (vers "STDOUT", par exemple le terminal, ou vers un fichier
|
||||||
"stdout.txt", sous Windows) peut être activé en définissant "DEBUG" (et,
|
"stdout.txt", sous Windows) peut être activé en définissant "DEBUG" (et,
|
||||||
si un mode verbeux est souhaité, "VERBOSE") # define dans "src/debug.h.
|
si un mode verbeux est souhaité, "VERBOSE") # define dans "src/debug.h.
|
||||||
|
|
||||||
Désinstallation de Tux Paint :
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Uninstalling Tux Paint
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,15 +26,76 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mars 9, 2021 </p>
|
août 30, 2021 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
<h2>Exigences :</h2>
|
<table border="2"
|
||||||
|
cellspacing="0"
|
||||||
|
cellpadding="2"
|
||||||
|
summary="Table des matières">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Table des matières </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#requirements">Requirements</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#req-libsdl">Simple DirectMedia Layer library (libSDL)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#req-other-libs">Autres bibliothèques</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling">Compiling and Installation</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-windows">Utilisateurs de Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-linux">Utilisateurs de Linux/Unix</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#debugging">Debugging</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling">Uninstalling Tux Paint</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-windows">Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-linux">Linux</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="requirements" id="requirements">
|
||||||
|
Requirements </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
||||||
<h3>libSDL</h3>
|
<h3>
|
||||||
|
<a name="req-libsdl" id="req-libsdl">
|
||||||
|
Simple DirectMedia Layer library (libSDL) </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint nécessite la bibliothèque de couches DirectMedia simple (libSDL), une bibliothèque de programmation multimédia Open Source disponible sous la Licence publique générale limitée GNU (LGPL). </p>
|
Tux Paint nécessite la bibliothèque de couches DirectMedia simple (libSDL), une bibliothèque de programmation multimédia Open Source disponible sous la Licence publique générale limitée GNU (LGPL). </p>
|
||||||
|
|
@ -62,7 +123,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Autres bibliothèques</h3>
|
<h3>
|
||||||
|
<a name="req-other-libs" id="req-other-libs">
|
||||||
|
Autres bibliothèques </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint profite également d'un certain nombre d'autres bibliothèques gratuites LGPL. Sous Linux, tout comme SDL, ils devraient être soit déjà installées, soit facilement disponibles avec votre distribution Linux. </p>
|
Tux Paint profite également d'un certain nombre d'autres bibliothèques gratuites LGPL. Sous Linux, tout comme SDL, ils devraient être soit déjà installées, soit facilement disponibles avec votre distribution Linux. </p>
|
||||||
|
|
@ -155,12 +219,20 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Compilation et installation :</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="compiling" id="compiling">
|
||||||
|
Compiling and Installation </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint est publié sous la licence publique générale GNU (GPL) (voir "COPYING.txt" pour plus de détails), et donc le 'code source' du programme est disponible gratuitement. </p>
|
Tux Paint est publié sous la licence publique générale GNU (GPL) (voir "COPYING.txt" pour plus de détails), et donc le 'code source' du programme est disponible gratuitement. </p>
|
||||||
|
|
||||||
<h3>Utilisateurs de Windows :</h3>
|
<h3>
|
||||||
|
<a name="compiling-windows" id="compiling-windows">
|
||||||
|
Utilisateurs de Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compilation :</h4>
|
<h4>Compilation :</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -277,7 +349,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Utilisateurs de Linux/Unix :</h3>
|
<h3>
|
||||||
|
<a name="compiling-linux" id="compiling-linux">
|
||||||
|
Utilisateurs de Linux/Unix </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compilation :</h4>
|
<h4>Compilation :</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -424,13 +499,26 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Débogage :</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="debugging" id="debugging">
|
||||||
|
Debugging </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
Le débogage (vers "STDOUT", par exemple le terminal, ou vers un fichier "<code>stdout.txt</code>", sous Windows) peut être activé en définissant "<code>DEBUG</code>" (et, si un mode verbeux est souhaité, "<code>VERBOSE</code>") <code># define</code> dans "<code>src/debug.h</code>. </blockquote>
|
Le débogage (vers "STDOUT", par exemple le terminal, ou vers un fichier "<code>stdout.txt</code>", sous Windows) peut être activé en définissant "<code>DEBUG</code>" (et, si un mode verbeux est souhaité, "<code>VERBOSE</code>") <code># define</code> dans "<code>src/debug.h</code>. </blockquote>
|
||||||
|
|
||||||
<h2>Désinstallation de Tux Paint :</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="uninstalling" id="uninstalling">
|
||||||
|
Uninstalling Tux Paint </h2>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h3>Windows</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-windows" id="uninstalling-windows">
|
||||||
|
Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Utilisation du désinstalleur</h4>
|
<h4>Utilisation du désinstalleur</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -448,7 +536,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-linux" id="uninstalling-linux">
|
||||||
|
Linux </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Dans le répertoire source de Tux Paint (où vous avez compilé Tux Paint), vous pouvez utiliser une cible "<code>make uninstall</code>" pour désinstaller Tux Paint. Par défaut, cela doit être fait par l'utilisateur "root" ("superutilisateur"), mais si vous avez installé Tux Paint à un autre endroit (par ex. en mettant "<code>PREFIX=...</code>" à "<code>make</code>" et "<code>make install</code>", vous ne pourrez pas, et il faudra fournier les mêmes réglages ici. (Voir les instructions d'installation ci-dessus pour plus d'informations.) </p>
|
Dans le répertoire source de Tux Paint (où vous avez compilé Tux Paint), vous pouvez utiliser une cible "<code>make uninstall</code>" pour désinstaller Tux Paint. Par défaut, cela doit être fait par l'utilisateur "root" ("superutilisateur"), mais si vous avez installé Tux Paint à un autre endroit (par ex. en mettant "<code>PREFIX=...</code>" à "<code>make</code>" et "<code>make install</code>", vous ne pourrez pas, et il faudra fournier les mêmes réglages ici. (Voir les instructions d'installation ci-dessus pour plus d'informations.) </p>
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,30 @@
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
9 de Marzo de 2021
|
30 de Agosto de 2021
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Requisitos:
|
+----------------------------------------------------+
|
||||||
|
|Índice |
|
||||||
|
|----------------------------------------------------|
|
||||||
|
| * Requirements |
|
||||||
|
| * Simple DirectMedia Layer library (libSDL) |
|
||||||
|
| * Outras bibliotecas |
|
||||||
|
| * Compiling and Installation |
|
||||||
|
| * Usuarios de Windows |
|
||||||
|
| * Usuarios de Linux/Unix |
|
||||||
|
| * Debugging |
|
||||||
|
| * Uninstalling Tux Paint |
|
||||||
|
| * Windows |
|
||||||
|
| * Linux |
|
||||||
|
+----------------------------------------------------+
|
||||||
|
|
||||||
libSDL
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
|
||||||
|
Simple DirectMedia Layer library (libSDL)
|
||||||
|
|
||||||
Tux Paint require a «Simple DirectMedia Layer Library (libSDL)», unha
|
Tux Paint require a «Simple DirectMedia Layer Library (libSDL)», unha
|
||||||
biblioteca de programación multimedia de código aberto dispoñíbel
|
biblioteca de programación multimedia de código aberto dispoñíbel
|
||||||
|
|
@ -120,13 +137,15 @@ Requisitos:
|
||||||
|
|
||||||
http://netpbm.sourceforge.net/
|
http://netpbm.sourceforge.net/
|
||||||
|
|
||||||
Compilación e instalación:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Compiling and Installation
|
||||||
|
|
||||||
Tux Paint publícase baixo a Licenza Pública Xeral de GNU (GPL) (consulte
|
Tux Paint publícase baixo a Licenza Pública Xeral de GNU (GPL) (consulte
|
||||||
«COPYING.txt» para máis detalles) e, polo tanto, o «código fonte» do
|
«COPYING.txt» para máis detalles) e, polo tanto, o «código fonte» do
|
||||||
programa está dispoñíbel libremente.
|
programa está dispoñíbel libremente.
|
||||||
|
|
||||||
Usuarios de Windows:
|
Usuarios de Windows
|
||||||
|
|
||||||
Compilación:
|
Compilación:
|
||||||
|
|
||||||
|
|
@ -225,7 +244,7 @@ Compilación e instalación:
|
||||||
maiúsculas e minúsculas incorrectas (maiúsculas «Z» no canto de
|
maiúsculas e minúsculas incorrectas (maiúsculas «Z» no canto de
|
||||||
minúsculas «z») ou a falta (ou exceso) de «-» (guións).
|
minúsculas «z») ou a falta (ou exceso) de «-» (guións).
|
||||||
|
|
||||||
Usuarios de Linux/Unix:
|
Usuarios de Linux/Unix
|
||||||
|
|
||||||
Compilación:
|
Compilación:
|
||||||
|
|
||||||
|
|
@ -360,13 +379,17 @@ Compilación e instalación:
|
||||||
Nota: Esta lista non está actualizada. Consulte «Makefile» e
|
Nota: Esta lista non está actualizada. Consulte «Makefile» e
|
||||||
«Makefile-i18n» para ver unha lista completa.
|
«Makefile-i18n» para ver unha lista completa.
|
||||||
|
|
||||||
Depuración:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
|
||||||
A depuración (a «STDOUT», por exemplo, á terminal ou a un ficheiro
|
A depuración (a «STDOUT», por exemplo, á terminal ou a un ficheiro
|
||||||
«stdout.txt» en Windows) pódese activar co axuste «DEBUG» (e, se se
|
«stdout.txt» en Windows) pódese activar co axuste «DEBUG» (e, se se
|
||||||
quere un rexistro detallado, «VERBOSE») #define en «src/debug.h».
|
quere un rexistro detallado, «VERBOSE») #define en «src/debug.h».
|
||||||
|
|
||||||
Desinstalación de Tux Paint:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Uninstalling Tux Paint
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,15 +26,76 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
9 de Marzo de 2021 </p>
|
30 de Agosto de 2021 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
<h2>Requisitos:</h2>
|
<table border="2"
|
||||||
|
cellspacing="0"
|
||||||
|
cellpadding="2"
|
||||||
|
summary="Índice">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Índice </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#requirements">Requirements</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#req-libsdl">Simple DirectMedia Layer library (libSDL)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#req-other-libs">Outras bibliotecas</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling">Compiling and Installation</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-windows">Usuarios de Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-linux">Usuarios de Linux/Unix</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#debugging">Debugging</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling">Uninstalling Tux Paint</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-windows">Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-linux">Linux</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="requirements" id="requirements">
|
||||||
|
Requirements </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
||||||
<h3>libSDL</h3>
|
<h3>
|
||||||
|
<a name="req-libsdl" id="req-libsdl">
|
||||||
|
Simple DirectMedia Layer library (libSDL) </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint require a «Simple DirectMedia Layer Library (libSDL)», unha biblioteca de programación multimedia de código aberto dispoñíbel baixo a licenza pública GNU Lesser General Public License (LGPL). </p>
|
Tux Paint require a «Simple DirectMedia Layer Library (libSDL)», unha biblioteca de programación multimedia de código aberto dispoñíbel baixo a licenza pública GNU Lesser General Public License (LGPL). </p>
|
||||||
|
|
@ -62,7 +123,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Outras bibliotecas</h3>
|
<h3>
|
||||||
|
<a name="req-other-libs" id="req-other-libs">
|
||||||
|
Outras bibliotecas </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint tamén aproveita outras bibliotecas libres con licenza LGPL. En Linux, do mesmo xeito que SDL, deberían estar xa instaladas ou estar dispoñíbeis para a súa instalación como parte da súa distribución de Linux. </p>
|
Tux Paint tamén aproveita outras bibliotecas libres con licenza LGPL. En Linux, do mesmo xeito que SDL, deberían estar xa instaladas ou estar dispoñíbeis para a súa instalación como parte da súa distribución de Linux. </p>
|
||||||
|
|
@ -155,12 +219,20 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Compilación e instalación:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="compiling" id="compiling">
|
||||||
|
Compiling and Installation </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint publícase baixo a Licenza Pública Xeral de GNU (GPL) (consulte «COPYING.txt» para máis detalles) e, polo tanto, o «código fonte» do programa está dispoñíbel libremente. </p>
|
Tux Paint publícase baixo a Licenza Pública Xeral de GNU (GPL) (consulte «COPYING.txt» para máis detalles) e, polo tanto, o «código fonte» do programa está dispoñíbel libremente. </p>
|
||||||
|
|
||||||
<h3>Usuarios de Windows:</h3>
|
<h3>
|
||||||
|
<a name="compiling-windows" id="compiling-windows">
|
||||||
|
Usuarios de Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compilación:</h4>
|
<h4>Compilación:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -277,7 +349,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Usuarios de Linux/Unix:</h3>
|
<h3>
|
||||||
|
<a name="compiling-linux" id="compiling-linux">
|
||||||
|
Usuarios de Linux/Unix </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compilación:</h4>
|
<h4>Compilación:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -424,13 +499,26 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Depuración:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="debugging" id="debugging">
|
||||||
|
Debugging </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
A depuración (a «STDOUT», por exemplo, á terminal ou a un ficheiro «<code>stdout.txt</code>» en Windows) pódese activar co axuste «<code>DEBUG</code>» (e, se se quere un rexistro detallado, «<code>VERBOSE</code>») <code>#define </code> en «<code>src/debug.h</code>». </blockquote>
|
A depuración (a «STDOUT», por exemplo, á terminal ou a un ficheiro «<code>stdout.txt</code>» en Windows) pódese activar co axuste «<code>DEBUG</code>» (e, se se quere un rexistro detallado, «<code>VERBOSE</code>») <code>#define </code> en «<code>src/debug.h</code>». </blockquote>
|
||||||
|
|
||||||
<h2>Desinstalación de Tux Paint:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="uninstalling" id="uninstalling">
|
||||||
|
Uninstalling Tux Paint </h2>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h3>Windows</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-windows" id="uninstalling-windows">
|
||||||
|
Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Uso do desinstalador</h4>
|
<h4>Uso do desinstalador</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -448,7 +536,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-linux" id="uninstalling-linux">
|
||||||
|
Linux </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Dentro do directorio de orixe de Tux Paint (onde compilou Tux Paint), pode usar o destino «<code>make uninstall</code>» para desinstalar Tux Paint. De xeito predeterminado, debe facelo o usuario «root» («superusuario»), mais se instalou Tux Paint noutro lugar (por exemplo, usando a configuración «<code>PREFIX=...</code>» en «<code>make</code>» e «<code>make install</code>»), pode que non e queira proporcionar a mesma configuración aquí. (Consulte as instrucións de instalación anteriores para obter máis información.) </p>
|
Dentro do directorio de orixe de Tux Paint (onde compilou Tux Paint), pode usar o destino «<code>make uninstall</code>» para desinstalar Tux Paint. De xeito predeterminado, debe facelo o usuario «root» («superusuario»), mais se instalou Tux Paint noutro lugar (por exemplo, usando a configuración «<code>PREFIX=...</code>» en «<code>make</code>» e «<code>make install</code>»), pode que non e queira proporcionar a mesma configuración aquí. (Consulte as instrucións de instalación anteriores para obter máis información.) </p>
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,30 @@
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
2021年3月 9日
|
2021年8月30日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Requirements:
|
+----------------------------------------------------+
|
||||||
|
|目次 |
|
||||||
|
|----------------------------------------------------|
|
||||||
|
| * Requirements |
|
||||||
|
| * Simple DirectMedia Layer library (libSDL) |
|
||||||
|
| * Other Libraries |
|
||||||
|
| * Compiling and Installation |
|
||||||
|
| * Windows のユーザー |
|
||||||
|
| * Linux または Unix のユーザー |
|
||||||
|
| * Debugging |
|
||||||
|
| * Uninstalling Tux Paint |
|
||||||
|
| * Windows |
|
||||||
|
| * Linux |
|
||||||
|
+----------------------------------------------------+
|
||||||
|
|
||||||
libSDL
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
|
||||||
|
Simple DirectMedia Layer library (libSDL)
|
||||||
|
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an
|
||||||
Open Source multimedia programming library available under the GNU
|
Open Source multimedia programming library available under the GNU
|
||||||
|
|
@ -116,13 +133,15 @@ Requirements:
|
||||||
|
|
||||||
http://netpbm.sourceforge.net/
|
http://netpbm.sourceforge.net/
|
||||||
|
|
||||||
Compiling and Installation:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Compiling and Installation
|
||||||
|
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see
|
Tux Paint is released under the GNU General Public License (GPL) (see
|
||||||
"COPYING.txt" for details), and therefore the 'source code' to the
|
"COPYING.txt" for details), and therefore the 'source code' to the
|
||||||
program is available freely.
|
program is available freely.
|
||||||
|
|
||||||
Windows Users:
|
Windows のユーザー
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -222,7 +241,7 @@ Compiling and Installation:
|
||||||
just be due to incorrect character-case (capital 'Z' instead of
|
just be due to incorrect character-case (capital 'Z' instead of
|
||||||
lowercase 'z') or a missing (or extra) '-' (dash).
|
lowercase 'z') or a missing (or extra) '-' (dash).
|
||||||
|
|
||||||
Linux/Unix Users:
|
Linux または Unix のユーザー
|
||||||
|
|
||||||
Compiling:
|
Compiling:
|
||||||
|
|
||||||
|
|
@ -351,13 +370,17 @@ Compiling and Installation:
|
||||||
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
Note: This list is out of date. See "Makefile" and "Makefile-i18n"
|
||||||
for a complete list.
|
for a complete list.
|
||||||
|
|
||||||
Debugging:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "stdout.txt" file,
|
||||||
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
on Windows) can be enabled by setting "DEBUG" (and, if verbose logging
|
||||||
is wanted, "VERBOSE") #defines in "src/debug.h".
|
is wanted, "VERBOSE") #defines in "src/debug.h".
|
||||||
|
|
||||||
Uninstalling Tux Paint:
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Uninstalling Tux Paint
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,15 +26,76 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
2021年3月 9日 </p>
|
2021年8月30日 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
<h2>Requirements:</h2>
|
<table border="2"
|
||||||
|
cellspacing="0"
|
||||||
|
cellpadding="2"
|
||||||
|
summary="目次">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
目次 </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#requirements">Requirements</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#req-libsdl">Simple DirectMedia Layer library (libSDL)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#req-other-libs">Other Libraries</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling">Compiling and Installation</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-windows">Windows のユーザー</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#compiling-linux">Linux または Unix のユーザー</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#debugging">Debugging</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling">Uninstalling Tux Paint</a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-windows">Windows</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#uninstalling-linux">Linux</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="requirements" id="requirements">
|
||||||
|
Requirements </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
||||||
<h3>libSDL</h3>
|
<h3>
|
||||||
|
<a name="req-libsdl" id="req-libsdl">
|
||||||
|
Simple DirectMedia Layer library (libSDL) </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
Tux Paint requires the Simple DirectMedia Layer Library (libSDL), an Open Source multimedia programming library available under the GNU Lesser General Public License (LGPL). </p>
|
||||||
|
|
@ -62,7 +123,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Other Libraries</h3>
|
<h3>
|
||||||
|
<a name="req-other-libs" id="req-other-libs">
|
||||||
|
Other Libraries </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
Tux Paint also takes advantage of a number of other free, LGPL'd libraries. Under Linux, just like SDL, they should either already be installed, or are readily available for installation as part of your Linux distribution. </p>
|
||||||
|
|
@ -155,12 +219,20 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Compiling and Installation:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="compiling" id="compiling">
|
||||||
|
Compiling and Installation </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
Tux Paint is released under the GNU General Public License (GPL) (see "COPYING.txt" for details), and therefore the 'source code' to the program is available freely. </p>
|
||||||
|
|
||||||
<h3>Windows Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-windows" id="compiling-windows">
|
||||||
|
Windows のユーザー </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -277,7 +349,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux/Unix Users:</h3>
|
<h3>
|
||||||
|
<a name="compiling-linux" id="compiling-linux">
|
||||||
|
Linux または Unix のユーザー </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Compiling:</h4>
|
<h4>Compiling:</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -424,13 +499,26 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h2>Debugging:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="debugging" id="debugging">
|
||||||
|
Debugging </a>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
Debugging (to "STDOUT", e.g. to the terminal, or to a "<code>stdout.txt</code>" file, on Windows) can be enabled by setting "<code>DEBUG</code>" (and, if verbose logging is wanted, "<code>VERBOSE</code>") <code>#define</code>s in "<code>src/debug.h</code>". </blockquote>
|
||||||
|
|
||||||
<h2>Uninstalling Tux Paint:</h2>
|
<hr size="2" noshade />
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
<a name="uninstalling" id="uninstalling">
|
||||||
|
Uninstalling Tux Paint </h2>
|
||||||
|
</h2>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h3>Windows</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-windows" id="uninstalling-windows">
|
||||||
|
Windows </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<h4>Using the Uninstaller</h4>
|
<h4>Using the Uninstaller</h4>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
|
|
@ -448,7 +536,10 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h3>Linux</h3>
|
<h3>
|
||||||
|
<a name="uninstalling-linux" id="uninstalling-linux">
|
||||||
|
Linux </a>
|
||||||
|
</h3>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
Within the Tux Paint source directory (where you compiled Tux Paint), you can use the "<code>make uninstall</code>" target to uninstall Tux Paint. By default, this must be done by the "root" user ('superuser'), but if you installed Tux Paint somewhere else (e.g., using a "<code>PREFIX=...</code>" setting to "<code>make</code>" and "<code>make install</code>"), you may not, and will want to provide those same settings here. (See the installation instructions above for further information.) </p>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue