|
Revision 4526, 1.2 kB
(checked in by erijo, 2 years ago)
|
|
Removed svn:keywords from all files that don't need it. May make your
checkout a tiny bit faster :)
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | How to Compile Licq under FreeBSD |
|---|
| 2 | |
|---|
| 3 | by Andy Fawcett <tap@kde.org> - February 2003 |
|---|
| 4 | Inspired by Muhannad Asfour's original, but rewritten entirely. |
|---|
| 5 | |
|---|
| 6 | First, Licq is in the ports collection as net/licq, and builds out of the box. |
|---|
| 7 | There are also slave ports for the various GUIs. |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | However, if you want to build from CVS, there's just a few easy steps to follow. |
|---|
| 11 | They assume you have Qt and/or KDE installed from packages/ports in their |
|---|
| 12 | default locations. |
|---|
| 13 | |
|---|
| 14 | 1. Ensure Gnu make (gmake) is installed. Licq will not build with the standard |
|---|
| 15 | FreeBSD make utility. |
|---|
| 16 | |
|---|
| 17 | 2. configure, make, and install the main part of licq with |
|---|
| 18 | |
|---|
| 19 | ./configure --prefix=/usr/local |
|---|
| 20 | gmake |
|---|
| 21 | gmake install |
|---|
| 22 | |
|---|
| 23 | 3. If you want to build the Qt plugin, do the following: |
|---|
| 24 | |
|---|
| 25 | cd plugins/qt-gui |
|---|
| 26 | ./configure --prefix=/usr/local |
|---|
| 27 | gmake |
|---|
| 28 | gmake install |
|---|
| 29 | |
|---|
| 30 | 4. Or, if you want the KDE plugin, do the following: |
|---|
| 31 | |
|---|
| 32 | cd plugins/qt-gui |
|---|
| 33 | ./configure --prefix=/usr/local --with-kde |
|---|
| 34 | gmake |
|---|
| 35 | gmake install |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | For other plugins, just ensure you tell "configure" to install them to |
|---|
| 39 | /usr/local and all should build fine. |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | These instructions have been tested on FreeBSD 5.0-RELEASE, but should apply |
|---|
| 43 | to other versions too. |
|---|
| 44 | |
|---|