root/branches/newapi/licq/README.FREEBSD

Revision 4599, 1.2 kB (checked in by erijo, 2 years ago)

Merged trunk changes r4394:4598 into the newapi branch.

  • Property svn:eol-style set to native
Line 
1How to Compile Licq under FreeBSD
2
3by Andy Fawcett <tap@kde.org> - February 2003
4Inspired by Muhannad Asfour's original, but rewritten entirely.
5
6First, Licq is in the ports collection as net/licq, and builds out of the box.
7There are also slave ports for the various GUIs.
8
9
10However, if you want to build from CVS, there's just a few easy steps to follow.
11They assume you have Qt and/or KDE installed from packages/ports in their
12default locations.
13
141. Ensure Gnu make (gmake) is installed. Licq will not build with the standard
15   FreeBSD make utility.
16
172. configure, make, and install the main part of licq with
18
19   ./configure --prefix=/usr/local
20   gmake
21   gmake install
22
233. 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
304. 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
38For other plugins, just ensure you tell "configure" to install them to
39/usr/local and all should build fine.
40
41
42These instructions have been tested on FreeBSD 5.0-RELEASE, but should apply
43to other versions too.
44
Note: See TracBrowser for help on using the browser.