File: faq.xml

package info (click to toggle)
arson 0.9.8beta2-4.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,564 kB
  • ctags: 3,714
  • sloc: cpp: 19,733; sh: 15,178; perl: 1,995; xml: 227; makefile: 98
file content (36 lines) | stat: -rw-r--r-- 1,273 bytes parent folder | download | duplicates (2)
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
<?xml version='1.0'?>
<faq>
	<question name="cvs">
	How do I use CVS to get arson?
		<answer>
		Make sure CVS is installed, then do:<pre>
cvs -d:pserver:anonymous@cvs.arson.sourceforge.net:/cvsroot/arson login
cvs -z3 -d:pserver:anonymous@cvs.arson.sourceforge.net:/cvsroot/arson checkout arson
</pre>
		This will download the current arson project to a new directory arson
		in the current directory. To get only the latest changes from now on do:<pre>
cvs -d:pserver:anonymous@cvs.arson.sourceforge.net:/cvsroot/arson login
cvs -z3 -d:pserver:anonymous@cvs.arson.sourceforge.net:/cvsroot/arson update
</pre>
		</answer>
	</question>

	<question name="prefix">
	After building and installing arson, I get a blank liability agreement,
	and there are no menus or toolbar buttons aside from the KDE defaults.
	What is goin on?
		<answer>
		This will occur on systems where $KDEDIR is not set (Debian, Mandrake,
		SuSE, etc.). Start over with a fresh source directory and do the
		command:<pre>
kde-config --prefix
</pre>
		This will print the directory that KDE is installed to (usually /usr). Then
		do the following to build and install arson:<pre>
./configure --prefix=/directory/the/last/command/printed
make
make install (as root)
</pre>
		</answer>
	</question>
</faq>