Konversation/KDE3 Sources: Difference between revisions
No edit summary |
|||
Line 3: | Line 3: | ||
== Preface == | == Preface == | ||
All of the warnings in the </translate>[[Special:mylanguage/Konversation/Sources#Preface|<translate>preface</translate>]]<translate> of the </translate>[[Special:mylanguage/Konversation/Sources|<translate>main build instructions</translate>]]<translate> apply. | {{Warning|1=All of the warnings in the </translate>[[Special:mylanguage/Konversation/Sources#Preface|<translate>preface</translate>]]<translate> of the </translate>[[Special:mylanguage/Konversation/Sources|<translate>main build instructions</translate>]]<translate> apply.}} | ||
== Dependencies == | == Dependencies == | ||
Line 14: | Line 14: | ||
== Manual checkout and update == | == Manual checkout and update == | ||
To install latest Konversation from SVN just execute following commands: | To install latest '''Konversation''' from SVN just execute following commands: | ||
<syntaxhighlight lang=" | {{Input|<syntaxhighlight lang="php" line> | ||
svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/network extragear-network | svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/network extragear-network | ||
svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin extragear-network/admin | svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin extragear-network/admin | ||
Line 25: | Line 25: | ||
make | make | ||
sudo make install | sudo make install | ||
</syntaxhighlight> | </syntaxhighlight>}} | ||
If you already did the above, just do the following whenever you want to update your checkout and installation: | If you already did the above, just do the following whenever you want to update your checkout and installation: | ||
< | <code>cd extragear-network/konversation; svn up; cd build; make; sudo make install</code> | ||
cd extragear-network/konversation; svn up; cd build; make; sudo make install | |||
</ | |||
See the links in the next section for more information on working with Subversion. | See the links in the next section for more information on working with '''Subversion'''. | ||
== Further reading == | == Further reading == | ||
Line 43: | Line 41: | ||
* [http://developer.berlios.de/docman/display_doc.php?docid=394&group_id=2 SVN How-to from BerliOS] | * [http://developer.berlios.de/docman/display_doc.php?docid=394&group_id=2 SVN How-to from BerliOS] | ||
[[Category:Internet]] | |||
[[Category:Advanced Users]] | |||
</translate> | </translate> | ||
Revision as of 19:00, 25 July 2011
Preface
Dependencies
- Qt v3.3
- kdelibs from KDE v3.4 or v3.5
- Optional: aRTs from KDE v3.4 or v3.5 for sound support
- Optional: libxscreensaver for full auto-away support
Manual checkout and update
To install latest Konversation from SVN just execute following commands:
svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/network extragear-network svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin extragear-network/admin cd extragear-network svn up konversation make -f Makefile.cvs ./configure --enable-debug=full make sudo make install
If you already did the above, just do the following whenever you want to update your checkout and installation:
cd extragear-network/konversation; svn up; cd build; make; sudo make install
See the links in the next section for more information on working with Subversion.