doc update

This commit is contained in:
Albert Cahalan 2008-05-25 23:39:41 +00:00
parent 51d88e5688
commit 2542ccdff4
3 changed files with 15 additions and 17 deletions

View file

@ -455,14 +455,11 @@ bdist-win32:
@-rm -f obj/*.o @-rm -f obj/*.o
make \ make \
PREFIX:=./win32/bdist \ PREFIX:=./win32/bdist \
BIN_PREFIX:=$(PREFIX)/bin \
DATA_PREFIX:=data \ DATA_PREFIX:=data \
DOC_PREFIX:=docs \ DOC_PREFIX:=docs \
LOCALE_PREFIX:=locale \ LOCALE_PREFIX:=locale \
IM_PREFIX:=im \ IM_PREFIX:=im \
CONFDIR:=. \ CONFDIR:=. \
SVG_LIB:="-lrsvg-2 -lcairo -lgobject-2.0" \
SVG_CFLAGS:="-I/usr/local/include/librsvg-2/librsvg -I/usr/local/include/gtk-2.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/cairo" \
INCLUDE_PREFIX:=plugins/include \ INCLUDE_PREFIX:=plugins/include \
MAGIC_PREFIX:=plugins MAGIC_PREFIX:=plugins
strip -s tuxpaint.exe strip -s tuxpaint.exe

View file

@ -9,7 +9,7 @@ http://www.tuxpaint.org/
$Id$ $Id$
2008.April.19 (0.9.20) 2008.May.25 (0.9.20)
* New translations: * New translations:
----------------- -----------------
* Asturian * Asturian
@ -69,7 +69,7 @@ $Id$
Arunodai Vudem <arunvudem@gmail.com> Arunodai Vudem <arunvudem@gmail.com>
Mark K. Kim <mkkim214@gmail.com> Mark K. Kim <mkkim214@gmail.com>
* Making Magic Tool source throw less compiler warnings. * Making Magic Tool source throw fewer compiler warnings.
* Documentation Improvements: * Documentation Improvements:
--------------------------- ---------------------------

View file

@ -84,9 +84,9 @@ Requirements:
As of Tux Paint 0.9.17, Tux Paint can load SVG As of Tux Paint 0.9.17, Tux Paint can load SVG
(Scalable Vector Graphics) images as stamps. (Scalable Vector Graphics) images as stamps.
Two sets of libraries are supported, and SVG support can be Two sets of libraries are supported, and SVG support can be
completely disabled (via "make nosvg") completely disabled (via "make SVG_LIB:=")
librsvg-2, libCairo2 [newer libraries; default "make" target] librsvg-2, libCairo2 [newer libraries]
-------------------------------------------------------------- --------------------------------------------------------------
libRSVG 2 libRSVG 2
http://librsvg.sourceforge.net/ http://librsvg.sourceforge.net/
@ -102,7 +102,7 @@ Requirements:
Pango Pango
http://www.pango.org/ http://www.pango.org/
Older libraries ("make oldsvg") Older libraries
------------------------------- -------------------------------
libcairo1 libcairo1
libsvg1 libsvg1
@ -144,8 +144,8 @@ Compiling and Installation:
$ export set CPATH=/usr/local/include $ export set CPATH=/usr/local/include
$ export set LIBRARY_PATH=/usr/local/bin:/usr/local/lib $ export set LIBRARY_PATH=/usr/local/bin:/usr/local/lib
$ make win32 $ make
$ make install-win32 $ make install
$ tuxpaint $ tuxpaint
Or use the following command to build a version suitable for Or use the following command to build a version suitable for
@ -238,7 +238,7 @@ Compiling and Installation:
by the Cairo library or other SVG-related dependencies), you can by the Cairo library or other SVG-related dependencies), you can
run "make" with "SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG" added: run "make" with "SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG" added:
$ make SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG $ make SVG_LIB= SVG_CFLAGS=
Disabling Pango support (and hence Pango, Cairo, etc. dependencies): Disabling Pango support (and hence Pango, Cairo, etc. dependencies):
-------------------------------------------------------------------- --------------------------------------------------------------------
@ -246,17 +246,17 @@ Compiling and Installation:
rendering text using TrueType Fonts. Since 0.9.18, libSDL_Pango is rendering text using TrueType Fonts. Since 0.9.18, libSDL_Pango is
used, as it has much greater support for internationalization. used, as it has much greater support for internationalization.
However, if you wish to disable the use of SDL_Pango, you may do so However, if you wish to disable the use of SDL_Pango, you may do so
running "make" with "NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB=" added: running "make" with "SDL_PANGO_LIB=" added:
$ make NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB= $ make SDL_PANGO_LIB=
Disabling Sound at Compile-time: Disabling Sound at Compile-time:
-------------------------------- --------------------------------
If you don't have a sound card, or would prefer to build the program If you don't have a sound card, or would prefer to build the program
with no sound support (and therefore without a the SDL_mixer dependency), with no sound support (and therefore without a the SDL_mixer dependency),
you can run "make" with "SDL_MIXER_LIB= NOSOUNDFLAG=NOSOUND" added: you can run "make" with "SDL_MIXER_LIB=" added:
$ make SDL_MIXER_LIB= NOSOUNDFLAG=NOSOUND $ make SDL_MIXER_LIB=
If you get errors: If you get errors:
------------------ ------------------
@ -302,8 +302,9 @@ Compiling and Installation:
Changing Where Things Go Changing Where Things Go
------------------------ ------------------------
You can change where things will go by using the 'prefix' You can change where things will go by setting Makefile variables
variables in Makefile. "PREFIX" is the basis of where all other on the command line. DESTDIR is used to place output in a staging
area for package creation. "PREFIX" is the basis of where all other
files go, and is, by default, set to "/usr/local". files go, and is, by default, set to "/usr/local".
Other variables are: Other variables are: