1 | #####
|
---|
2 | #
|
---|
3 | # Configuration file for the BLFS module
|
---|
4 | #
|
---|
5 | # $Id$
|
---|
6 | #
|
---|
7 | # Set default envars used in the build scripts
|
---|
8 | #
|
---|
9 | #####
|
---|
10 |
|
---|
11 | #======== Common envars ==========
|
---|
12 |
|
---|
13 | #--- Set a well-known working locale when building software
|
---|
14 | export LC_ALL=C
|
---|
15 |
|
---|
16 | #--- The local repository for packages/file
|
---|
17 | # Any missing file will be downloaded and archived here,
|
---|
18 | # if the user has the right priviledges.
|
---|
19 | export SRC_ARCHIVE=/sources
|
---|
20 |
|
---|
21 | #--- Server used if the file isn't found in SRC_ARCHIVE.
|
---|
22 | # As a last resort, the file will dowloaded from upstream, if possible.
|
---|
23 | #
|
---|
24 | # The server path MUST be set as listed in
|
---|
25 | # http://www.linuxfromscratch.org/blfs/download.html
|
---|
26 | export FTP_SERVER=ftp://anduin.linuxfromscratch.org/BLFS/
|
---|
27 |
|
---|
28 | # Use a server close to you for Xorg (see http://wiki.x.org/wiki/Mirrors)
|
---|
29 | export FTP_X_SERVER=ftp://mirror.cict.fr/x.org/
|
---|
30 |
|
---|
31 | #--- The sources directory.
|
---|
32 | # Full path to the top level directory where packages will be stored,
|
---|
33 | # unpacked, and compiled.
|
---|
34 | export SRC_DIR=/sources
|
---|
35 |
|
---|
36 |
|
---|
37 | #======== Xorg7 envars ===========
|
---|
38 |
|
---|
39 | #--- Installation prefix
|
---|
40 | export XORG_PREFIX=/usr
|
---|
41 |
|
---|
42 | #--- Configure switches
|
---|
43 | export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc --mandir=$XORG_PREFIX/share/man --localstatedir=/var"
|
---|
44 |
|
---|
45 | #======== GNOME envars ===========
|
---|
46 |
|
---|
47 | #--- Installation prefix
|
---|
48 | export GNOME_PREFIX=/usr
|
---|
49 |
|
---|
50 | #--- If you want to install GNOME on a non standart prefix, uncomment
|
---|
51 | # the next export lines and edit it if needed.
|
---|
52 | # See also the GNOME Pre-installation Configuration HTML page for
|
---|
53 | # aditional required commands.
|
---|
54 | #export PATH=$PATH:$GNOME_PREFIX/bin
|
---|
55 | #export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$GNOME_PREFIX/lib/pkgconfig
|
---|
56 | #export GNOME_LIBCONFIG_PATH=/usr/lib:$GNOME_PREFIX/lib
|
---|
57 |
|
---|
58 | #======== KDE envars =============
|
---|
59 |
|
---|
60 | #--- Installation prefix
|
---|
61 | export KDE_PREFIX=/usr
|
---|
62 |
|
---|
63 | #--- If you want to install KDE on a non standart prefix, uncomment
|
---|
64 | # the next export lines and edit it if needed.
|
---|
65 | # See also the KDE Pre-installation Configuration HTML page for
|
---|
66 | # aditional required commands.
|
---|
67 | #export PATH=$PATH:$KDE_PREFIX/bin
|
---|
68 | #export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$KDE_PREFIX/lib/pkgconfig
|
---|
69 |
|
---|
70 |
|
---|
71 |
|
---|
72 | #======== Optimizations =============
|
---|
73 |
|
---|
74 | # Global optimization settings can be placed here. This settings can be
|
---|
75 | # overrided by settings in the packages build scripts.
|
---|
76 |
|
---|
77 | # WARNING: The use of build optimizations may be dangerous.
|
---|
78 | # You should know what you are doing and be sure that the
|
---|
79 | # optimization settings placed below are what you want.
|
---|
80 | # It there are build issues or the system doesn't work as
|
---|
81 | # expected, please rebuild without optimizations before
|
---|
82 | # asking for support.
|
---|
83 |
|
---|
84 | export MAKEFLAGS="-j5"
|
---|
85 |
|
---|
86 | #export CFLAGS="-O3 -pipe"
|
---|
87 | #export CXXFLAGS=$CFLAGS
|
---|
88 | #export LDFLAGS="-s"
|
---|
89 |
|
---|
90 | #export OTHER_CFLAGS=$CFLAGS
|
---|
91 | #export OTHER_CXXFLAGS=$CXXFLAGS
|
---|
92 | #export OTHER_LDFLAGS=$LDFLAGS
|
---|
93 |
|
---|