Difference between revisions of "Xorg7/Data"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) (Versioning template.) |
|||
Line 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
|- | |- | ||
− | | http://xorg.freedesktop.org/releases/individual/data/xcursor-themes- | + | | http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-{{Xcursor-themes-Version}}.tar.bz2 |
|- | |- | ||
− | | http://xorg.freedesktop.org/releases/individual/data/xcursor-themes- | + | | http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-{{Xcursor-themes-Version}}.tar.gz |
|- | |- | ||
− | | http://xorg.freedesktop.org/releases/individual/data/xkbdata- | + | | http://xorg.freedesktop.org/releases/individual/data/xkbdata-{{Xkbdata-Version}}.tar.bz2 |
|- | |- | ||
− | | http://xorg.freedesktop.org/releases/individual/data/xkbdata- | + | | http://xorg.freedesktop.org/releases/individual/data/xkbdata-{{Xkbdata-Version}}.tar.gz |
|- | |- | ||
|} | |} | ||
Line 85: | Line 85: | ||
==Unpack the packages== | ==Unpack the packages== | ||
− | wget http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/data- | + | wget http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/data-{{Xorg-Version}}.wget && |
for i in *.tar.bz2; do | for i in *.tar.bz2; do | ||
Line 93: | Line 93: | ||
==Make the Package== | ==Make the Package== | ||
− | for dir in `sed "s/.tar.bz2//g" ../data- | + | for dir in `sed "s/.tar.bz2//g" ../data-{{Xorg-Version}}.wget`; do |
cd ${dir} && | cd ${dir} && | ||
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ | PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ |
Revision as of 19:18, 17 December 2006
Back to Xorg Apps
Contents
Xorg 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.
Dependencies
Required
Xorg Apps
Installation
Non-Multilib
Compile each package with the following commands:
./configure $XORG_CONFIG && make
There are no test suites for these packages.
Install the packages:
make install
Multilib
32-Bit
Compile each package with the following commands:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ ./configure $XORG_CONFIG32 && make
There are no test suites for these packages.
Install the packages:
make install
N32
Compile each package with the following commands:
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \ ./configure $XORG_CONFIGN32 && make
There are no test suites for these packages.
Install the packages:
make install
64-Bit
Compile each package with the following commands:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ ./configure $XORG_CONFIG64 && make
There are no test suites for these packages.
Install the packages:
make install
Automated Build
Unpack the packages
wget http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/data-7.1.wget &&
for i in *.tar.bz2; do tar xvf $i; done
Make the Package
for dir in `sed "s/.tar.bz2//g" ../data-7.1.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 Fonts