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 56 57 58 59 60
|
This README describes some notes about nlkt.
---------------------------
1. Compiling and installing
---------------------------
Before compiling package from sources, check downloads page on sourceforge.net [1] for available packages for your operating system.
nlkt depends on:
- Qt4 library, [2];
- Qwt5 library, [3].
So, you must have installed development versions of these libraries.
If you have not debian-derived OS, then go to src/nlkt.pro file and replace "/usr/include/qwt-qt4" and "-lqwt-qt4" with appropriate qwt includes path and qwt library name in your OS.
If you want "install" nlkt only for one user (for you :)), then simply run
./build-local.sh
If you want to install nlkt system-wide, run:
cd src && qmake && lrelease nlkt.pro && make PATH_CFG=-DNLKT_USE_SYSTEM_PATH release && rm Makefile* && cd ../
cd src && qmake && sudo make INSTALL_ROOT=/ release-install && cd ../
If you has built native package for your system, please write me: [4]. I want to provide as more packages as possible.
--------------------
2. Using the program
--------------------
To enable typing in some language, check that fortunes for that language is installed.
For example, if you using debian-based system and want to install fortunes for russian language, you have to install fortunes-ru package:
aptitude install fortunes-ru
Now program has layout files (read "supports") for english, german and russian. If you to add your mother language, just simply write keyboard layout file (see /share/layouts/en for example) and send it to me [4], i will add support for this language in next version.
Looking for keyboard hotkeys? Pick mouse cursor for some button and wait for tooltip. If the button has a hotkey, you will see it.
---------
3. Thanks
---------
Sergey V. Klimenko aka ReSeT - co-idea
Artem V. Koval' aka TurboNOMAD - moral help
wfrr (linux.org.ru) - criticism, suggests
nickless (forum.vingrad.ru) - criticism, suggests
Messing (linux.org.ru) - criticism, suggests
alexsaa (linux.org.ru) - criticism, suggests, bugreports
adarovsky (linux.org.ru) - criticism, suggests
GrayCardinal (forum.vingrad.ru) - criticism
Enrico Zini (debian.org) - British layout, bugreports
---
Links:
[1] http://sourceforge.net/project/showfiles.php?group_id=218218
[2] http://trolltech.com/products/qt
[3] http://qwt.sourceforge.net/
[4] jackyf.devel@gmail.com
|