Bluefish Wiki:Installing Bluefish from Source: Difference between revisions
Created page with '__NOTOC__ __NOEDITSECTION__ {{Man1top |lang=en |rev=1.0.6 |Title=4. Installing a Bluefish Source Distribution |prev=Man 1 ch02s03 |Subtitle=Chapter II. Installing …' |
No edit summary |
||
Line 42: | Line 42: | ||
# When '''make''' has completed, you can install Bluefish: ('''su''' to root first, unless you specified a user writable prefix to configure), then issue: <tt>'''<nowiki># make install</nowiki>'''</tt>. | # When '''make''' has completed, you can install Bluefish: ('''su''' to root first, unless you specified a user writable prefix to configure), then issue: <tt>'''<nowiki># make install</nowiki>'''</tt>. | ||
To update the sources at a later time, | To update the sources at a later time, yo run the command: | ||
$ svn co https://bluefish.svn.sourceforge.net/svnroot/bluefish/trunk/bluefish/ bluefish | |||
=== 4.3. Problems Compiling? === | === 4.3. Problems Compiling? === |
Revision as of 20:51, 19 August 2009
Please consider to edit the Manual 2!
How To edit the Wiki Manual{{#if:4. Installing a Bluefish Source Distribution| | ||
Prev }} | }} |
4. Installing a Bluefish Source Distribution
By installing Bluefish from source, you may be able to get a newer version (from SVN) than those distributed as binaries. You may also need to compile from source if no binary is available for your system.
4.1. Quick Installation Overview
This is the short installation description. Consult the other chapters if you are in doubt.
Bluefish is installed using the standard 'configure, make, make install' steps. Assuming you have downloaded a bluefish source package, for instance bluefish-ver.tar.gz (naturally, change the filename to what's appropriate), you complete the installation with the following steps:
- tar -zxvf bluefish-ver.tar.gz
- cd bluefish-ver
- ./configure
- make
- su -c 'make install'
- Now, type bluefish to run. You may delete the bluefish-ver directory.
The configure script is used to automatically find the appropriate settings for your system. Because of differences between systems, this compile-time configuration is necessary, and configure solves this challenge easily -- with an added bonus of telling whether you have everything needed to compile.
The configure-script can be, um, configured. This is something you most likely will not need to do, but it is easy to do if necessary. For a complete list of configure options, see Section 5, “Configure Options”
4.2. Installing from Development Source Tree
You can get the latest Bluefish version via SVN using the instructions in Section 4, “Latest Developmental Version”. Next, install it with the following steps:
- Enter the directory containing the bluefish source files: cd bluefish
- Next, generate the configure script by running ./autogen.sh
- Then, you run configure with whatever options you might want.
This example will cause make install to install Bluefish with the specified directory as prefix (i.e. the binary is installed in /usr/local/bf-cvs/bin/bluefish). This is most likely not what you want -- just run configure without parameters instead.
$ ./configure --prefix=/usr/local/bf-cvs
If configure fails, it will probably give a hint telling you what is missing or wrong. - Assuming it completed successfully, your next step is to compile Bluefish. To do this, run make.
- When make has completed, you can install Bluefish: (su to root first, unless you specified a user writable prefix to configure), then issue: # make install.
To update the sources at a later time, yo run the command:
$ svn co https://bluefish.svn.sourceforge.net/svnroot/bluefish/trunk/bluefish/ bluefish
4.3. Problems Compiling?
If compilation fails, first make sure you have the necessary utilities and libraries. See Section 1, “Requirements”.
Next, see if your system is mentioned in Section 3, “System Specific Installation Issues”.
Below is a list of well known problems that have been mentioned on the bluefish-dev list:
- make: *** No targets specified and no makefile found. Stop.
This will happen if configure fails and you try to run make. It also happens if you're running make from the wrong directory. - ... more trouble to come ;-)
If you're unable to find a solution (or if you think you have a solution others might want), feel free to contact us on the bluefish-dev list (See Section 2.4, “Contact Us”). You may want to contact the bluefish package maintainer for your distribution first when appropriated.