Xorg7/Data: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
 
(16 intermediate revisions by 3 users not shown)
Line 3: Line 3:
!Download Source:
!Download Source:
|-
|-
| http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-{{Xcursor-themes-Version}}.tar.bz2
| {{Xorg7-Mirror}}/data/xcursor-themes-{{Xcursor-themes-Version}}.tar.bz2
|-
|-
| http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-{{Xcursor-themes-Version}}.tar.gz
| http://xlibs.freedesktop.org/xkbdesc/xkeyboard-config-{{xkeyboard-config-Version}}.tar.bz2
|-
| http://xorg.freedesktop.org/releases/individual/data/xkbdata-{{Xkbdata-Version}}.tar.bz2
|-
| http://xorg.freedesktop.org/releases/individual/data/xkbdata-{{Xkbdata-Version}}.tar.gz
|-
|-
|}
|}
Line 15: Line 11:
Back to Xorg [[Xorg7/Apps|Apps]]
Back to Xorg [[Xorg7/Apps|Apps]]


== Instroduction to Xorg Data ==
{{Package-Introduction|The Xorg data packages provide such things as images and keymaps to the Xorg applications.  There are only two packages remaining; [[Xorg7/xbitmaps|xbitmaps]] was previously installed.}}
 
The Xorg data packages provide such things as images and keymaps to the Xorg applications.  There are only two packages remaining; [[Xorg7/xbitmaps|xbitmaps]] was previously installed.
 
You can down load each of the tarballs individually.  Alternately, you can use the  data-{{Xorg-Version}}.wget file.  If you plan to use the semi-automated build method you need the data-{{Xorg-Version}}.wget file.
 
wget http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/data-{{Xorg-Version}}.wget &&
cd data &&
wget -B http://xorg.freedesktop.org/releases/individual/data/ -i ../data-{{Xorg-Version}}.wget


== Dependencies ==
== Dependencies ==


=== Required ===
=== Required ===
 
* Xorg [[Xorg7/Apps|Apps]]
Xorg [[Xorg7/Apps|Apps]]
* [[Perl Module XML::Parser|XML::Parser]]
* [[intltool]]


== Non-Multilib ==
== Non-Multilib ==


Compile each package with the following commands:
Install xcursor-themes with the following command:


  ./configure $XORG_CONFIG &&
  ./configure $XORG_CONFIG &&
  make
  make &&
make install


There are no test suites for these packages.
Install xkeyboard-config with the following command:
 
Install the packages:


./configure $XORG_CONFIG \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
  make install
  make install


Line 48: Line 41:
=== 32Bit ===
=== 32Bit ===


Compile each package with the following commands:
Install xcursor-themes with the following command:
   
   
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++  ${BUILD32}" \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++  ${BUILD32}" \
  ./configure $XORG_CONFIG32 &&
  ./configure $XORG_CONFIG32 &&
  make
  make &&
make install


There are no test suites for these packages.
Install xkeyboard-config with the following command:
 
Install the packages:


./configure $XORG_CONFIG32 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
  make install
  make install


=== N32 ===
=== N32 ===


Compile each package with the following commands:
Install xcursor-themes with the following command:
   
   
  PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" CC="gcc ${BUILDN32}" CXX="g++  ${BUILDN32}" \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" CC="gcc ${BUILDN32}" CXX="g++  ${BUILDN32}" \
  ./configure $XORG_CONFIGN32 &&
  ./configure $XORG_CONFIGN32 &&
  make
  make &&
make install


There are no test suites for these packages.
Install xkeyboard-config with the following command:
 
Install the packages:


./configure $XORG_CONFIGN32 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
  make install
  make install


=== 64Bit ===
=== 64Bit ===


Compile each package with the following commands:
Install xcursor-themes with the following command:
   
   
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" CC="gcc ${BUILD64}" CXX="g++  ${BUILD64}" \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" CC="gcc ${BUILD64}" CXX="g++  ${BUILD64}" \
  ./configure $XORG_CONFIG64 &&
  ./configure $XORG_CONFIG64 &&
  make
  make &&
make install


There are no test suites for these packages.
Install xkeyboard-config with the following command:
 
Install the packages:


./configure $XORG_CONFIG64 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
  make install
  make install
== Semi-Automated Build ==
The semi-automated build assumes you are using subdirectories as discussed in the introduction.  It is also assumed that the data-{{Xorg-Version}}.wget file exists in the base directory (xc).  After entering the data subdirectory, unpack each of the tarballs:
for i in *.tar.bz2; do
  tar xvf $i;
done
Build and install the packages listed in the data-{{Xorg-Version}}.wget file.
for dir in `sed "s/.tar.bz2//g" ../data-{{Xorg-Version}}.wget`; do
  cd ${dir} &&
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++  ${BUILD32}" \
  ./configure $XORG_CONFIG32 &&
  make &&
  make install &&
  make distclean &&
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" CC="gcc ${BUILD64}" CXX="g++  ${BUILD64}" \
  ./configure $XORG_CONFIG64 &&
  make &&
  make install &&
  cd ..;
done


Next install the Xorg [[Xorg7/Fonts|Fonts]]
Next install the Xorg [[Xorg7/Fonts|Fonts]]


== Contents ==
= Contents =


=== Short Description ===
=== Short Description ===

Latest revision as of 17:29, 8 June 2009

Download Source:
http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-1.0.3.tar.bz2
http://xlibs.freedesktop.org/xkbdesc/xkeyboard-config-1.4.tar.bz2

Back to Xorg Apps

Introduction to Xorg7/Data

The Xorg data packages provide such things as images and keymaps to the Xorg applications. There are only two packages remaining; xbitmaps was previously installed.

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Install xcursor-themes with the following command:

./configure $XORG_CONFIG &&
make &&
make install

Install xkeyboard-config with the following command:

./configure $XORG_CONFIG \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
make install

Multilib

32Bit

Install xcursor-themes with the following command:

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

Install xkeyboard-config with the following command:

./configure $XORG_CONFIG32 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
make install

N32

Install xcursor-themes with the following command:

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

Install xkeyboard-config with the following command:

./configure $XORG_CONFIGN32 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
make install

64Bit

Install xcursor-themes with the following command:

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

Install xkeyboard-config with the following command:

./configure $XORG_CONFIG64 \
    --with-xkb-base=${XORG_PREFIX}/share/X11/xkb \
    --with-xkb-rules-symlink=xorg --enable-compat-rules \
    --enable-xkbcomp-symlink &&
make &&
make install

Next install the Xorg Fonts

Contents

Short Description