1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
----- First of all:
If possible, and available, try a package built specifically for your
distribution...
----- Building from sources:
First make sure that you have both the QT and KDE development headers
installed. (qt and tdelibs devel)
Then unpack the sources somewhere you have writing rights.
In a terminal (konsole, xterm, eterm, etc.), type :
./configure
make
(Then, as root):
make install
--
If any of these steps fail, do:
make -f Makefile.dist
It may help you build it. If it still fails, mail me.
----- Bad configure = build failure...
You might need to give 'configure' the path to your kde
installation. eg: /usr, /opt/kde.
./configure --prefix=/opt/kde
--
You can find your KDE base directory by typing tde-config --prefix
--
-------------------------------------------------------------------------------
----- Debian notes:
You may need to append this to the configure line:
--prefix=/usr
And maybe this one:
--with-qt-includes=/usr/include/qt3
----- Mandrake/Mandriva notes:
Mandrake 10.0 uses KDE 3.2. I never tested lipstik against KDE 3.2 but it "should" work with
some tweaking (see Debian notes).
I dont have Mandrake around so I cant give more specific help for now, stay tuned.
Mandriva (Mandrake's new name) is using more recent KDE releases. Lipstik should work
out of the box there.
----- moc troubles???
Some people have reported that building fails with errors related to .moc files.
eg:
lipstikconf.cpp:479:27: lipstikconf.moc: No such file or directory
If this happens to you, dont panic.
In the source dir, there are style and style/config subdirs:
In the style dir do:
moc -o lipstik.moc lipstik.h
And then in the style/config subdir do
moc -o lipstikconf.moc lipstikconf.h
Then run make again, it should work.
----- Lipstik's build system sucks...
It should suck less now... maybe...
|