Difference between revisions of "Xorg7/Intro"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 1: Line 1:
== Setting up the Xorg Build Enviornment ==
+
== Setting up the Xorg Build Environment ==
  
 
First, you'll need to create a working directory:
 
First, you'll need to create a working directory:
Line 5: Line 5:
 
  mkdir xc &&
 
  mkdir xc &&
 
  cd xc
 
  cd xc
 +
 +
Although not necessary, you may find it easier to work within subdirectories grouped by function.  If so, create the necessary subdirectories.
 +
 +
  install -dv {app,data,doc,driver,font,lib,proto,util}
  
 
As with previous releases of the X Window System, it may be desirable to install Xorg into an alternate prefix. This is no longer common practice among Linux distributions. The common installation prefix for Xorg on Linux is /usr. There is no standard alternate prefix, nor is there any exception in the current revision of the Filesystem Hierarchy Standard for Release 7 of the X Window System. Alan Coopersmith of Sun Microsystems, has recently stated "At Sun, we were using /usr/X11 and plan to stick with it." Only the /opt/* prefix or the /usr prefix adhere to the current FHS guidelines.
 
As with previous releases of the X Window System, it may be desirable to install Xorg into an alternate prefix. This is no longer common practice among Linux distributions. The common installation prefix for Xorg on Linux is /usr. There is no standard alternate prefix, nor is there any exception in the current revision of the Filesystem Hierarchy Standard for Release 7 of the X Window System. Alan Coopersmith of Sun Microsystems, has recently stated "At Sun, we were using /usr/X11 and plan to stick with it." Only the /opt/* prefix or the /usr prefix adhere to the current FHS guidelines.
  
If you did not set '''XORG_PREFIX''' in [[Bash Startup Files]] then you will need to choose a installation prefix now.
+
If you did not set '''XORG_PREFIX''' in [[Bash Startup Files]] then you will need to choose an installation prefix now.
  
 
  export XORG_PREFIX="[PREFIX]"
 
  export XORG_PREFIX="[PREFIX]"
Line 34: Line 38:
 
----
 
----
  
Xorg 7 is modular so you won't need to include everything in your installation.  You can look here [http://lists.x.org/archives/xorg-modular/2005-November/000801.html] to help decide what modules will be required to meet your needs.  The drivers you need, or course, depend on your hardware.  [[Xorg7/Fonts|Fonts]], also, are a personal choice.  You don't need all, but you'll need a few.
+
Xorg 7 is modular so you won't need to include everything in your installation.  You can look here [http://lists.x.org/archives/xorg-modular/2005-November/000801.html] to help decide what modules will be required to meet your needs.  The drivers you need, of course, depend on your hardware.  [[Xorg7/Fonts|Fonts]], also, are a personal choice.  You don't need all, but you'll need a few.
  
 
* [[Xorg7/utility_macros|Utility Macros]]
 
* [[Xorg7/utility_macros|Utility Macros]]

Revision as of 10:00, 25 September 2006

Setting up the Xorg Build Environment

First, you'll need to create a working directory:

mkdir xc &&
cd xc

Although not necessary, you may find it easier to work within subdirectories grouped by function. If so, create the necessary subdirectories.

 install -dv {app,data,doc,driver,font,lib,proto,util}

As with previous releases of the X Window System, it may be desirable to install Xorg into an alternate prefix. This is no longer common practice among Linux distributions. The common installation prefix for Xorg on Linux is /usr. There is no standard alternate prefix, nor is there any exception in the current revision of the Filesystem Hierarchy Standard for Release 7 of the X Window System. Alan Coopersmith of Sun Microsystems, has recently stated "At Sun, we were using /usr/X11 and plan to stick with it." Only the /opt/* prefix or the /usr prefix adhere to the current FHS guidelines.

If you did not set XORG_PREFIX in Bash Startup Files then you will need to choose an installation prefix now.

export XORG_PREFIX="[PREFIX]"

Throughout these instructions, you will use the same three configure switches for all of the packages. Create the XORG_CONFIG variable to use for substitution:

Non-Multilib

export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var"

Multilib

export XORG_CONFIG32="--prefix=$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var"
export XORG_CONFIGN32="--prefix=$XORG_PREFIX --libdir=$XORG_PREFIX/lib32 --sysconfdir=/etc --localstatedir=/var"
export XORG_CONFIG64="--prefix=$XORG_PREFIX --libdir=$XORG_PREFIX/lib64 --sysconfdir=/etc --localstatedir=/var"

If you are using a prefix ther then /usr and did not create the 15-xorg.sh script in Bash Startup Files then be sure to add $XORG_PREFIX/bin to your PATH and adjust your PKG_CONFIG_PATH(s) accordingly. You should also add $XORG_PREFIX/lib to /etc/ld.so.conf.

In addition, you may also want to set ACLOCAL if it is not already set. This is only required if you plan to develop or modify a package that requires one of the X11 macros.

export ACLOCAL="aclocal -I $XORG_PREFIX/share/aclocal"

Xorg 7 is modular so you won't need to include everything in your installation. You can look here [1] to help decide what modules will be required to meet your needs. The drivers you need, of course, depend on your hardware. Fonts, also, are a personal choice. You don't need all, but you'll need a few.