Konversation/KDE4 Sources/da: Difference between revisions
(Created page with "{{Warning/da|2='''Vær forsigtig!'''|1=Vær opmærksom på, at beta-testning er potentielt risikabelt for din installation. Installér ikke beta-udgaver på et produktionssyst...") |
(Created page with "* Før du begynder med betatestning, er det en god ide at lave en backup af din konfiguration, gemt i {{Output|1=~/.kde/share/config/konversationrc}} og dine programdata, gemt...") |
||
Line 5: | Line 5: | ||
<span id="Preface"></span>{{Warning/da|2='''Vær forsigtig!'''|1=Vær opmærksom på, at beta-testning er potentielt risikabelt for din installation. Installér ikke beta-udgaver på et produktionssystem. Hvis du er opmærksom på risiciene og kan acceptere dem, så fortsæt blot. Din hjælp vil blive værdsat. Ikke desto mindre, og særligt for beta-versioner: '''Denne software leveres med absolut ingen garantier!'''}} | <span id="Preface"></span>{{Warning/da|2='''Vær forsigtig!'''|1=Vær opmærksom på, at beta-testning er potentielt risikabelt for din installation. Installér ikke beta-udgaver på et produktionssystem. Hvis du er opmærksom på risiciene og kan acceptere dem, så fortsæt blot. Din hjælp vil blive værdsat. Ikke desto mindre, og særligt for beta-versioner: '''Denne software leveres med absolut ingen garantier!'''}} | ||
* | * Før du begynder med betatestning, er det en god ide at lave en backup af din konfiguration, gemt i {{Output|1=~/.kde/share/config/konversationrc}} og dine programdata, gemt i {{Output|1=~/.kde/share/apps/konversation}} | ||
* If you found a bug or have a feature request, let us know by filing it in the [http://bugs.kde.org/ KDE Bug Tracker]. | * If you found a bug or have a feature request, let us know by filing it in the [http://bugs.kde.org/ KDE Bug Tracker]. |
Revision as of 11:31, 21 December 2014
Forord
- Før du begynder med betatestning, er det en god ide at lave en backup af din konfiguration, gemt i
~/.kde/share/config/konversationrc
og dine programdata, gemt i~/.kde/share/apps/konversation
- If you found a bug or have a feature request, let us know by filing it in the KDE Bug Tracker.
- Or get in touch with us on IRC or the mailing list.
Current dependencies
Build dependencies
- CMake 2.8.2 or higher.
- Qt v4.7.0 or higher.
- kdelibs from KDE Platform v4.9.0 or higher.
- kdepimlibs from KDE Platform v4.4.0 or higher.
- Phonon from KDE Platform v4.4.0 or higher or Qt v4.6.0 and higher.
- Optional: Qt Cryptographic Architecture (QCA) v2.0.0 or higher for encryption support (Blowfish).
Runtime dependencies
- kdebase-runtime from KDE Platform v4.4.0 or higher.
- Optional: A QCA provider plugin providing Diffie-Hellman key exchange and Blowfish ECB/CBC support for the encryption features; usually that plugin is qca-ossl.
- Optional: An installation of KDE's Konsole terminal emulator to provide the KPart component used by the console tabs feature.
- Optional: Python and Perl interpreters as well the bash shell for bundled scripts.
Manual checkout and update
To install the latest Konversation code for KDE Platform v4 from Git you first need to clone the repository. For read-only public access, use the following:
git clone git://anongit.kde.org/konversation --branch 1.5
If on the other hand you have a KDE developer account, use this instead to be able to push your changes to the repository later:
git clone [email protected]:konversation --branch 1.5
After having cloned the repository, go on like this:
cd konversation mkdir build cd build cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=<desired install location> ../ make sudo make install
If you already did the above, just do the following whenever you want to update your checkout and installation:
cd konversation; git pull; cd build; make; sudo make install
See the links at the bottom of this page for more information on working with Git.