summaryrefslogtreecommitdiffstats
path: root/scribus/doc/en/old/parallel-install.html
blob: 711d265cac3f942d44a6b05cf8b32a90a20e949a (plain)
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
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
	<title>How to install more than one version of Scribus on one computer</title>
</head>
<body>
<h2>How to install more than one version of Scribus on one computer</h2>

<p>Imagine a situation when you have one Scribus already installed. It's likely possible because of Scribus quality, usability and presence in a wide amount of distributions :)</p>
<p>And then the day came. The day you read about <em><strong>the magnificent feature</strong></em> implemented in CVS. You really want to try it but you're afraid of the possible problems with untested code etc, so you don't want to replace your stable installed package.</p>
<p>Assume a situation when you've got Scribus installed from your favorite distro (rpm, deb etc. depending on distro) or installed from sources (tar.gz usually into <code>/usr/local</code>) and you have a freshly downloaded CVS snapshot. The following operations are made by a normal user not as <code>root</code>.</p>
<p>Create a directory where you want the new Scribus located (in your favourite filemanager) e.g.:</p>
<blockquote><table width="100%" border="1" bgcolor="#eeeeee"><tr><td border="0">
<pre>mkdir ~/scribus_svn</pre>
</td></tr></table></blockquote>
<p>Then go into the downloaded and unpacked CVS directory:</p>
<blockquote><table width="100%" border="1" bgcolor="#eeeeee"><tr><td border="0">
<pre>cd ~/Scribus</pre>
</td></tr></table></blockquote>
<p>and run: (It's needed only for CVS)</p>
<blockquote><table width="100%" border="1" bgcolor="#eeeeee"><tr><td border="0">
<pre>make -f Makefile.svn</pre>
</td></tr></table></blockquote>
<p>And now the important task. You have to specify the target where CVS Scribus to install not to replace the distribution's release or standard installed tar.gz package:</p>
<blockquote><table width="100%" border="1" bgcolor="#eeeeee"><tr><td border="0">
<pre>
$./configure --prefix=/home/yourusername/scribus_svn</pre>
</td></tr></table></blockquote>
<p>Then it's time for the classic:</p>
<blockquote><table width="100%" border="1" bgcolor="#eeeeee"><tr><td border="0">
<pre>
make
make install
</pre>
</td></tr></table></blockquote>
<p>When it's done, you can run the new Scribus by <code>~/scribus_svn/bin/scribus</code></p>
</body>
</html>