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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
@chapter Installation
@section Installation from source with the configure script
To build and install Xnee do the following:
Download the following source files into a directory (version numbers given here are just examples)
@itemize @bullet
@item xnee-3.02.tar.gz
@end itemize
@*
Unzip the source file
@example
@code{gunzip xnee-3.02.tar.gz}
@end example
@*
Untar the source file
@example
@code{tar xvf xnee-3.02.tar}
@end example
@*
Enter the Xnee directory
@example
@code{cd xnee-3.02}
@end example
@*
Generate the makefiles
@example
@code{./configure}
@end example
@*
or if you want to specify which directory to install xnee to
@example
@code{./configure --prefix=<PATH TO INSTALLATION DIR>}
@end example
@*
Build Xnee
@example
@code{make clean all}
@end example
@*
Install (as root) if you want libxnee to be installed. If not, skip the following command. Installation of libxnee is not needed to build cnee and gnee.
@example
@code{make install}
@end example
@section Installation from source with default Makefile
To unpack, build and install Xnee from the sourcefiles do the following:
@*
Download the source files into a directory
Unzip the source file
@example
@code{gunzip xnee-3.02.tar.gz}
@end example
Untar the source file
@example
@code{tar xvf xnee-3.02.tar}
@end example
Enter the Xnee directory
@example
@code{cd xnee-3.02}
@end example
Build Xnee
@example
@code{make -f Makefile.xnee clean all}
@end example
Copy the Xnee binary (xnee/src/xnee) to a directory
@example
@code{cp xnee/src/xnee /usr/local/bin}
@end example
@section Installation from CVS
@*
Download the xnee source code from the CVS repository at
@url{http://savannah.gnu.org}. Instructions on how to do
this can be found there as well.
@*
Build Xnee
@example
@code{cd xnee}
@code{make -f Makefile.cvs}
@code{./configure --enable-doc}
@code{make}
@code{make install} (optional)
@end example
Build Xnee Documentation
@example
@code{cd doc}
@code{make manual}
@code{make install} (as root)
@code{cd ..}
@end example
|