Difference between revisions of "Xorg7/Data"
Weibullguy (talk | contribs) m (→Instroduction to Xorg Data) |
|||
Line 15: | Line 15: | ||
Back to Xorg [[Xorg7/Apps|Apps]] | Back to Xorg [[Xorg7/Apps|Apps]] | ||
− | + | {{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. | 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. | ||
Line 23: | Line 21: | ||
wget http://cross-lfs.org/~arowland/wget_lists/data-{{Xorg-Version}}.wget && | wget http://cross-lfs.org/~arowland/wget_lists/data-{{Xorg-Version}}.wget && | ||
cd data && | cd data && | ||
− | wget -B http://xorg.freedesktop.org/releases/individual/data/ -i ../data-{{Xorg-Version}}.wget | + | wget -B http://xorg.freedesktop.org/releases/individual/data/ -i ../data-{{Xorg-Version}}.wget}} |
== Dependencies == | == Dependencies == |
Revision as of 13:26, 16 April 2007
Back to Xorg Apps
Contents
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.
You can down load each of the tarballs individually. Alternately, you can use the data-7.1.wget file. If you plan to use the semi-automated build method you need the data-7.1.wget file.
wget http://cross-lfs.org/~arowland/wget_lists/data-7.1.wget && cd data && wget -B http://xorg.freedesktop.org/releases/individual/data/ -i ../data-7.1.wget
Project Homepage: Unknown
Dependencies
Required
Xorg Apps
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
32Bit
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
64Bit
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
Semi-Automated Build
The semi-automated build assumes you are using subdirectories as discussed in the introduction. It is also assumed that the data-7.1.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-7.1.wget file.
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