-
Notifications
You must be signed in to change notification settings - Fork 92
/
linux-notes.txt
56 lines (44 loc) · 1.65 KB
/
linux-notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
== Building e ==
The easiest way to build is to use the supplied scripts (example shows debug build):
cd external
sudo ./get-packages-ubuntu.sh bakefile
./get_externals_linux.sh
./build_externals_linux.sh debug
cd ..
cd src
make DEBUG=1
./e.debug
== Packages ==
If you choose to install packages manually, these are the Ubuntu packages required before building:
- build-essential
- libgtk2.0-dev
- libglib2.0-dev
- libatk1.0-dev
- libcurl-dev
Packages required by WebKit:
- bakefile (ubuntu: http://www.bakefile.org/wiki/Debian)
- libxml-2.0 (ubuntu: libxml2-dev)
- libxslt (ubuntu: libxslt1-dev)
- sqlite3 (ubuntu: libsqlite3-dev)
- icu (ubuntu: libicu-dev)
- libjpeg (ubuntu: libjpeg62-dev)
- bison
- flex
- gperf
== Bundling e into tar.gz, rpm or deb packages
1. Build e (release build) as described above
2. Checkout ebundles tree as described in http://code.google.com/p/ebundles/source/checkout
3. Export svn working tree into ./external/stuff (Bundles, Support and Themes directories must be present)
4. To create tar.gz archive run make -C src tar
5. To create RPM package run sudo make -C src rpm
6. To create Deb package run make -C src deb
== Windows Files ==
These files do not compile, probably due to Windows dependencies:
- CygwinDlg.cpp - not needed, all uses are commented out
- ExceptionHandler.cpp - never used?
- ExceptionAttacher.cpp - never used?
- GetWinVer.cpp - only used by ExceptionHandler
- IEHtmlWin.cpp - never used, Linux uses WebKitHtmlWnd instead
- MiniVersion.cpp - only used by ExceptionHandler
- ShellContextMenu.cpp - cannot be compiled, should be replaced with Gnome/KDE equivalent
- wxactivex.cpp - only used by IEHtmlWin, cannot be compiled