doc update
This commit is contained in:
parent
51d88e5688
commit
2542ccdff4
3 changed files with 15 additions and 17 deletions
3
Makefile
3
Makefile
|
|
@ -455,14 +455,11 @@ bdist-win32:
|
|||
@-rm -f obj/*.o
|
||||
make \
|
||||
PREFIX:=./win32/bdist \
|
||||
BIN_PREFIX:=$(PREFIX)/bin \
|
||||
DATA_PREFIX:=data \
|
||||
DOC_PREFIX:=docs \
|
||||
LOCALE_PREFIX:=locale \
|
||||
IM_PREFIX:=im \
|
||||
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 \
|
||||
MAGIC_PREFIX:=plugins
|
||||
strip -s tuxpaint.exe
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ http://www.tuxpaint.org/
|
|||
$Id$
|
||||
|
||||
|
||||
2008.April.19 (0.9.20)
|
||||
2008.May.25 (0.9.20)
|
||||
* New translations:
|
||||
-----------------
|
||||
* Asturian
|
||||
|
|
@ -69,7 +69,7 @@ $Id$
|
|||
Arunodai Vudem <arunvudem@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:
|
||||
---------------------------
|
||||
|
|
|
|||
|
|
@ -84,9 +84,9 @@ Requirements:
|
|||
As of Tux Paint 0.9.17, Tux Paint can load SVG
|
||||
(Scalable Vector Graphics) images as stamps.
|
||||
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
|
||||
http://librsvg.sourceforge.net/
|
||||
|
|
@ -102,7 +102,7 @@ Requirements:
|
|||
Pango
|
||||
http://www.pango.org/
|
||||
|
||||
Older libraries ("make oldsvg")
|
||||
Older libraries
|
||||
-------------------------------
|
||||
libcairo1
|
||||
libsvg1
|
||||
|
|
@ -144,8 +144,8 @@ Compiling and Installation:
|
|||
|
||||
$ export set CPATH=/usr/local/include
|
||||
$ export set LIBRARY_PATH=/usr/local/bin:/usr/local/lib
|
||||
$ make win32
|
||||
$ make install-win32
|
||||
$ make
|
||||
$ make install
|
||||
$ tuxpaint
|
||||
|
||||
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
|
||||
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):
|
||||
--------------------------------------------------------------------
|
||||
|
|
@ -246,17 +246,17 @@ Compiling and Installation:
|
|||
rendering text using TrueType Fonts. Since 0.9.18, libSDL_Pango is
|
||||
used, as it has much greater support for internationalization.
|
||||
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:
|
||||
--------------------------------
|
||||
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),
|
||||
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:
|
||||
------------------
|
||||
|
|
@ -302,8 +302,9 @@ Compiling and Installation:
|
|||
|
||||
Changing Where Things Go
|
||||
------------------------
|
||||
You can change where things will go by using the 'prefix'
|
||||
variables in Makefile. "PREFIX" is the basis of where all other
|
||||
You can change where things will go by setting Makefile variables
|
||||
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".
|
||||
|
||||
Other variables are:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue