Difference between revisions of "Xorg7/Utilities"

From CBLFS
Jump to navigationJump to search
(64Bit)
(Updated base URL.)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| ftp://ftp.freedesktop.org/pub/xorg/X11R7.0/src/util/
+
| http://xorg.freedesktop.org/releases/individual/util/
 
|-
 
|-
 
|}
 
|}

Revision as of 09:53, 23 September 2006

Download Source: http://xorg.freedesktop.org/releases/individual/util/

Back to Protocol Headers

Utilities

There are five utilities. Note that the download source, above is the base URL. Each could be downloaded individually, but it is probably easiest to use wget and append either *.bz2 or *.gz to the base URL to pull them all down to your system.

The protocols are, in build order:

  • xorg-cf-files
  • imake
  • gccmakedep
  • lndir
  • makedepend

Dependencies

Non-Multilib

First install the xorg-cf-files package with the following commands:

sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
./configure $XORG_CONFIG &&
make install

Build the five remaining packages with the standard build commands:

./configure $XORG_CONFIG &&
make

Install the package:

make install

Multilib

32Bit

First install the xorg-cf-files package with the following commands:

sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure $XORG_CONFIG32 &&
make install

Build the five remaining packages with the standard build commands:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure $XORG_CONFIG32 &&
make

Install the package:

make install

N32

First install the xorg-cf-files package with the following commands:

sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure $XORG_CONFIGN32 &&
make install

Build the five remaining packages with the standard build commands:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure $XORG_CONFIGN32 &&
make

Install the package:

make install

64Bit

First install the xorg-cf-files package with the following commands:

sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure $XORG_CONFIG64 &&
make install

Build the five remaining packages with the standard build commands:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure $XORG_CONFIG64 &&
make

Install the package:

make install