blob: 5eaa502bc89764c44c98d177240de3d0f42aff65 [file] [log] [blame]
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -05001ring-client-gnome
2*****************
3
4Ring-client-gnome is a Ring client written in GTK+3. It uses libRingClient to
5communicate with the Ring daemon and for all of the underlying models and their
6logic. Ideally ring-client-gnome should only contain UI related code and any
7wrappers necessary for interacting with libRingClient.
8
Stepan Salenikovich137376c2015-04-15 14:25:43 -04009Packages for Debian/Ubuntu/Fedora can be found on http://ring.cx
10
11More info about the Ring project or this client can be found on their respective wiki pages:
12- https://projects.savoirfairelinux.com/projects/ring/wiki
13- https://projects.savoirfairelinux.com/projects/ring-gnome-client/wiki
14
Stepan Salenikovich4e740b62015-03-13 14:06:49 -040015
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -050016Requirements
17==================
18
19- Ring daemon
Stepan Salenikovich137376c2015-04-15 14:25:43 -040020- libRingClient
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -050021- GTK+3 (3.10 or higher)
22- Qt5 Core
Stepan Salenikovich137376c2015-04-15 14:25:43 -040023- X11
24- gnome-icon-theme-symbolic (certain icons are used which other themes might be missing)
25- libebook1.2 / evolution-data-server (3.10 or higher)
Stepan Salenikovich19a251e2015-06-10 15:01:37 -040026- libnotify (optional, if you wish to receive desktop notifications of incoming calls, etc)
Stepan Salenikovich137376c2015-04-15 14:25:43 -040027
28On Debian/Ubuntu these can be installed by:
Stepan Salenikovich19a251e2015-06-10 15:01:37 -040029 sudo apt-get install g++ cmake libgtk-3-dev qtbase5-dev libclutter-gtk-1.0-dev gnome-icon-theme-symbolic libebook1.2-dev libnotify-dev
Stepan Salenikovich137376c2015-04-15 14:25:43 -040030
31On Fedora:
Stepan Salenikovich19a251e2015-06-10 15:01:37 -040032 yum install gcc-c++ cmake gtk3-devel qt5-qtbase-devel clutter-gtk-devel gnome-icon-theme-symbolic evolution-data-server-devel libnotify-devel
Stepan Salenikovich137376c2015-04-15 14:25:43 -040033
34The build instruction for the daemon and libRingClient can be found on their respective wiki pages:
35- https://projects.savoirfairelinux.com/projects/ring-daemon/wiki
36- https://projects.savoirfairelinux.com/projects/libringclient/wiki/Wiki
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -050037
Stepan Salenikovich4e740b62015-03-13 14:06:49 -040038
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -050039Compiling
40==================
41
42In the project root dir:
Stepan Salenikovich137376c2015-04-15 14:25:43 -040043 mkdir build
44 cd build
45 cmake ..
46 make
Stepan Salenikoviche3500cb2015-02-13 15:55:46 -050047
Stepan Salenikovich19a251e2015-06-10 15:01:37 -040048You can then simply run ./gnome-ring from the build directory
49
50Installing
51==================
52
53If you're building the client for use (rather than testing of packaging), it is
54recommended that you install it on your system, eg: in '/usr', '/usr/local', or
55'/opt', depending on your distro's preference to get full functionality such as
56desktop integration. In this case you should perform a 'make install' after
57building the client.
Stepan Salenikovich4e740b62015-03-13 14:06:49 -040058
59
60Building without installing Ring daemon and libRingClient
61==================
62
63It is possible to build ring-client-gnome without installing the deamon and
64libRingClient on your system (eg: in /usr or /usr/local):
65
661. build the daemon
672. when building libRingClient, specify the location of the daemon lib in the
68 cmake options with -DRING_BUILD_DIR=, eg:
69 -DRING_BUILD_DIR=/home/user/ring/daemon/src
703. to get the proper headers, we still need to 'make install' libRingClient, but
71 we don't have to install it in /usr, so just specify another location for the
72 install prefix in the cmake options, eg:
73 -DCMAKE_INSTALL_PREFIX=/home/user/ringinstall
744. now compile libRingClient and do 'make install', everything will be installed
75 in the dir specified by the prefix
764. now we just have to give the same install prefix to the cmake options of the
77 client and it will find libRingClient:
78 -DCMAKE_INSTALL_PREFIX=/home/user/ringinstall
79
80
81Debugging
82==================
83
84For now, the build type of the client is "Debug" by default, however it is
85useful to also have the debug symbols of libRingClient. To do this, specify this
86when compiling libRingClient with '-DCMAKE_BUILD_TYPE=Debug' in the cmake
Stepan Salenikovich137376c2015-04-15 14:25:43 -040087options.