1GtkEveMon 2========= 3 4This is the README file for GtkEveMon. It covers: 5 6* Building GtkEveMon 7* Running GtkEveMon 8* Installing GtkEveMon 9* Uninstalling GtkEveMon 10 11 12STEP 1: BUILDING 13===================================================================== 14 15GtkEveMon comes in form of source code, which is located in the "src/" 16directory. The source code needs to be built in order to execute it. 17The required libraries to build GtkEveMon (which can be installed 18using your distribution's package management) are: 19 20 libxml++ (with headers) 21 libgtkmm (with headers, at least version 3.0) 22 libcurl (with headers, compiled with encryption support) 23 24The source does not come with a configure script. Just execute: 25 26 $ make 27 28To build a debug version execute: 29 30 $ make debug 31 32STEP 2: RUNNING 33===================================================================== 34 35Note that you DO NOT NEED to install GtkEveMon in order to use it. 36If you don't want to install GtkEveMon, just execute GtkEveMon with: 37 38 $ ./src/gtkevemon 39 40Once you install GtkEveMon (read below), type "gtkevemon" anywhere 41in your system or make a shortcut in your window manager. 42 43 44OPTION: INSTALLING 45===================================================================== 46 47Make sure your current working directory is relative to this file. 48To install GtkEveMon execute the following command (as super user): 49 50 # make install 51 52The default location for the gtkevemon executable is "/usr/local/bin", 53and the default locations for the icon and .desktop file are 54"/usr/local/share/pixmaps" and "/usr/local/share/applications", 55respectively. 56 57If you want to change the default location, use the PREFIX environment 58variable, or edit the Makefile directly. If unset, PREFIX Will default 59to "/usr/local". 60 61The Makefile also supports the DESTDIR variable. DESTDIR will be 62prepended to PREFIX, preserving the directory structure of the 63installation while installing to a non-standard location. 64 65Configuration files as well as data files (SkillTree.xml and 66CertificateTree.xml) are placed in "~/.gtkevemon" whether you 67install GtkEveMon or not. This is not changeable at runtime. 68 69 70OPTION: UNINSTALLING 71===================================================================== 72 73If you want to uninstall GtkEveMon, just type 74following command (as super user): 75 76 # make uninstall 77 78This will not remove the data in your home directory. 79