From 2e1027df656cbb28a8e268904cf0d4b824b31194 Mon Sep 17 00:00:00 2001 From: scuri Date: Mon, 2 Aug 2010 18:59:38 +0000 Subject: *** empty log message *** --- html/en/building.html | 119 ++++++++++++++++ html/en/drv/gl.html | 4 +- html/en/guide.html | 2 + html/wb/wb_usr.lua | 4 + html/wb_search.txt | 11 +- html/wb_tree.html | 381 +++++++++++++++++++++++++------------------------- 6 files changed, 324 insertions(+), 197 deletions(-) create mode 100644 html/en/building.html (limited to 'html') diff --git a/html/en/building.html b/html/en/building.html new file mode 100644 index 0000000..32b6691 --- /dev/null +++ b/html/en/building.html @@ -0,0 +1,119 @@ + + + + +Guide + + + + + +

Building Lua, IM, CD and IUP in +Linux

+

This is a guide to build all the Lua, IM, CD and IUP libraries in Linux. +Notice that you may not use all the libraries, but this guide will build all of +them. Later on it is explained how to build a single library.

+

System Configuration

+

You will have to download the development version of some packages installed +on your system. Although the run time version of some of these packages are +already installed, the development versions are usually not. The packages +described here are for Ubuntu, but you will be able to identify them for other +systems as well.

+

To build Lua you will need:

+
libreadline5-dev
+

To build IM you will need:

+
g++
+

To build CD you will need:

+
libx11-dev
+libxpm-dev
+libxmu-dev
+  libxft-dev (for the XRender driver, OPTIONAL)
+libgtk2.0-dev (for the GDK driver)
+ +

To build IUP you will need:

+
libgtk2.0-dev (for the GTK driver) [already installed for CD]
+  libmotif-dev and x11proto-print-dev (for the Motif driver, OPTIONAL)
+libgl1-mesa-dev and libglu1-mesa-dev (for the IupGLCanvas)
+

Download

+

Download the "xxx-X.X_Sources.tar.gz" package from the "Docs and Sources" +folder for the version you want to build. Here are links for the Files section +in Source Forge:

+

Lua - +http://sourceforge.net/projects/luabinaries/files/
+IM - +http://sourceforge.net/projects/imtoolkit/files/
+CD - +http://sourceforge.net/projects/canvasdraw/files/
+IUP - +http://sourceforge.net/projects/iup/files/

+

Lua

+

Although we use Lua from LuaBinaries, any Lua installation can also be used. +But you will have to define some environment variables before building IM, CD and +IUP. Here is an example:

+
export LUA_SUFFIX=
+export LUA_INC=/usr/local/include      [actually NOT necessary, this one is already used by gcc/g++]
+export LUA_LIB=/usr/local/lib          [            "         ]
+export LUA_BIN=/usr/local/bin          [necessary because luac will not be used from the PATH]
+

The tools bin2c and luac are necessary only if you need to rebuild LOH files. +But since the source packages already includes them, those tools are in fact not +necessary.

+

Unpacking

+

If you are going to build all the libraries, the makefiles and projects +expect the following directory tree:

+
/xxxx/
+      iup/
+      cd/
+      im/
+      lua5.1/  [optional]
+ +

So, unpack all the source packages in the same folder that will do fine.

+

Building

+ +

As a general rule (excluding system dependencies): IUP depends on CD and IM, +and CD depends on IM. So start by build IM, then CD, then IUP.

+

To start building go the the "src" folder and type "make". In IUP there are +many "srcxxx" folders, so go to the up folder "iup" and type +"make" that all the +sub folders will be built.

+

Instead of building all the libraries, try building only the libraries you +are going to use. The provided makefiles will build all the libraries, but take +a look inside them and you will figure out how to build just one library.

+

Installation

+ +

After building you can copy the libraries files to the system folder. This is +not necessary since you can use -I and -L on your makefiles, but it can be done. +If you are inside one of the libraries main folder you can type:

+
cp lib/Linux26g4/* /usr/local/lib
+cp include/* /usr/local/include
+

This will copy run time and development files. If you just want the run time, +then do simply:

+
cp lib/Linux26g4/*.so /usr/local/lib
+

Also when coping development folders, if you want to keep the library headers +in a separate folder, you can do:

+
cp -R iup/include /usr/local/include/iup
+cp -R cd/include /usr/local/include/cd
+cp -R im/include /usr/local/include/im
+

Then use in your makefile -Iiup -Icd -Iim.

+

This installation procedure also can be used for the pre-compiled binaries +packages available for download. They contain the development and run time files +you need.

+

If you don't want to copy the libraries to your system +folder, you can still use them, but you will need to add the binaries folders to +the LD_LIBRARY_PATH, for example:

+
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/xxxx/iup/lib/Linux26g4:/xxxx/cd/lib/Linux26g4:/xxxx/im/lib/Linux26g4
+

In this case, in your makefile will will also need to specify those paths +when linking using -L/xxxx/iup/lib/Linux26g4.

+

Lua

+

If you are NOT using LuaBinaries then you have two options to be able to use +"require" with these libraries. You can create symbolic links in the Lua C +modules folder to the installed libraries run time:

+
ln -s /usr/local/lib/lipiuplua51.so /usr/local/lib/lua/5.1/iuplua.so
+ln -s /usr/local/lib/lipiupluacontrols51.so /usr/local/lib/lua/5.1/iupluacontrols.so
+...
+

You can set the LUA_CPATH environment variable:

+
export LUA_CPATH=./\?.so\;./lib\?.so\;./lib\?51.so\;
+
+ + + + \ No newline at end of file diff --git a/html/en/drv/gl.html b/html/en/drv/gl.html index a7e9883..ffe3d65 100644 --- a/html/en/drv/gl.html +++ b/html/en/drv/gl.html @@ -111,8 +111,8 @@ must be set with the new size or cdCanvasGetSize will return an incorrect value. "Courier New", "Helvetica" is mapped to "Arial", and "Times" is mapped to "Times New Roman". In UNIX, "Courier" is mapped to "freemono", "Helvetica" is mapped to "freesans", and "Times" is mapped to - "freeserif". Underline and Strikeout are NOT supported. If not - found then the font file is searched used the same logic of the Simulation + "freeserif". Underline and Strikeout are NOT supported. If not found + then the font file is searched using the same logic of the Simulation driver, but ADDFONTMAP is not supported. If still is not found then the typeface is used as file name for the font. diff --git a/html/en/guide.html b/html/en/guide.html index 18398d1..4332adb 100644 --- a/html/en/guide.html +++ b/html/en/guide.html @@ -74,6 +74,8 @@ command line on the "src" folder and all libraries and executables wil build. Set the TECTOOLS_HOME environment variable to the folder were the IM and Lua libraries are installed, by default it will assume "TECTOOLS_HOME=../..".

+

In Linux, check the "Building Lua, IM, CD and IUP in +Linux" guide.

In Windows, the easiest way to build everything is to install the Tecmake tool into your system. It is easy and helps a lot. The Tecmake configuration files (*.mak) available at the "src" folder are very easy to understand also. Also there are files named diff --git a/html/wb/wb_usr.lua b/html/wb/wb_usr.lua index 2fa3518..feb35b5 100644 --- a/html/wb/wb_usr.lua +++ b/html/wb/wb_usr.lua @@ -128,6 +128,10 @@ wb_usr.tree = link= "guide.html#IUP" }, { link= "", name= {en= "" } }, + { + name= {en= "Building in Linux"}, + link= "building.html" + }, { name= {en= "Internal Architecture", pt= "Arquitetura Interna"}, link= "internal.html" diff --git a/html/wb_search.txt b/html/wb_search.txt index 751c0bd..57e7dec 100644 --- a/html/wb_search.txt +++ b/html/wb_search.txt @@ -1,6 +1,7 @@ en/download.html en/drv/xrender.html en/drv/gdiplus.html +en/building.html en/drv/cairo.html en/drv/debug.html en/func/server.html @@ -14,7 +15,7 @@ en/drv/native.html en/func/control.html en/screenshots_src_lua.html en/drv/gdk.html -en/func/lines.html +en/func/marks.html en/func/vectortext.html en/cvs.html en/func/init.html @@ -50,14 +51,14 @@ en/drv/image.html en/func/color.html en/cdlua.html en/drv/clipbd.html -en/func/marks.html -en/func/coordinates.html +en/internal.html +en/func/lines.html en/func/polygon.html en/drv/dbuf.html en/func/other.html en/toolkits.html -en/internal.html +en/history.html en/home.html en/canvas.html -en/history.html +en/func/coordinates.html en/download_tips.html diff --git a/html/wb_tree.html b/html/wb_tree.html index 35561e2..338b439 100644 --- a/html/wb_tree.html +++ b/html/wb_tree.html @@ -252,309 +252,310 @@

Intercepting Primitives

IUP Compatibility

-

Internal Architecture

-

Samples

-

Lua Binding

-

CDLua+IMLua

+

Building in Linux

+

Internal Architecture

+

Samples

+

Lua Binding

+

CDLua+IMLua

-

Canvas

+

Canvas

Initialization

Control

Coordinate System

-

World Coordinates

+

World Coordinates

General Attributes

-

Clipping

+

Clipping

Primitives

-

Marks

+

Marks

-

Pixel

-

Mark

+

Pixel

+

Mark

Attributes

-

Lines

+

Lines

-

Filled Areas

+

Filled Areas

-

Text

+

Text

-

Vector Text

+

Vector Text

-

Client Images

+

Client Images

-

Server Images

+

Server Images

Other

System

Metafile Interpretation

Color Coding

-

Drivers

+

Drivers

Window Systems

Devices

Images

File

-

PDF

-

PS

-

SVG

-

MF

-

DEBUG

+

PDF

+

PS

+

SVG

+

MF

+

DEBUG

-

CGM

-

DGN

-

DXF

+

CGM

+

DGN

+

DXF

-

EMF

-

WMF

+

EMF

+

WMF

Base Drivers

Context Plus

-- cgit v1.2.3