Difference between revisions of "T1lib"

From CBLFS
Jump to navigationJump to search
 
Line 1: Line 1:
This is a typical configure-make-make install type package.
+
{| style="text-align: left; background-color: AliceBlue;"
 +
|-
 +
!Download Source:
 +
| get it from: http://gd.tuwien.ac.at/visual/ibiblio/libs/graphics/t1lib-5.1.0.tar.gz
 +
|}
  
get it from: http://gd.tuwien.ac.at/visual/ibiblio/libs/graphics/t1lib-5.1.0.tar.gz
+
----
 +
 
 +
== Dependencies ==
 +
 
 +
=== Optional ===
 +
* [[X Window System]]
 +
* [[TeTeX]]
 +
 
 +
== Non-Multilib ==
 +
 
 +
Configure the package:
 +
 
 +
./configure --prefix=/usr
 +
 
 +
If you have [[TeTeX]] installed and would like to build the documentation issue:
 +
 
 +
make
 +
 
 +
Otherwise issue:
 +
 
 +
make without_doc
 +
 
 +
Install the package
 +
 
 +
make install &&
 +
chmod -b 755 /usr/lib/libt1.so.5.1.0
 +
 
 +
If you have an [[X Window System]] installed issue:
 +
 
 +
chmod -b 755 /usr/lib/libt1x.so.5.1.0
 +
 
 +
== Multilib ==
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 
 +
CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr &&
 +
make without_doc
 +
 
 +
Install the package
 +
 
 +
make install &&
 +
chmod -b 755 /usr/lib/libt1.so.5.1.0
 +
 
 +
If you have an [[X Window System]] installed issue:
 +
 
 +
chmod -b 755 /usr/lib/libt1x.so.5.1.0
 +
 
 +
=== N32 ===
 +
 
 +
Compile the package:
 +
 
 +
CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr \
 +
    --libdir=/usr/lib32 &&
 +
make without_doc
 +
 
 +
Install the package
 +
 
 +
make install &&
 +
chmod -b 755 /usr/lib32/libt1.so.5.1.0
 +
 
 +
If you have an [[X Window System]] installed issue:
 +
 
 +
chmod -b 755 /usr/lib32/libt1x.so.5.1.0
 +
 
 +
=== 64Bit ===
 +
 
 +
Configure the package:
 +
 
 +
CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr \
 +
    --libdir=/usr/lib64
 +
 
 +
If you have [[TeTeX]] installed and would like to build the documentation issue:
 +
 
 +
make
 +
 
 +
Otherwise issue:
 +
 
 +
make without_doc
 +
 
 +
Install the package
 +
 
 +
make install &&
 +
chmod -b 755 /usr/lib64/libt1.so.5.1.0
 +
 
 +
If you have an [[X Window System]] installed issue:
 +
 
 +
chmod -b 755 /usr/lib64/libt1x.so.5.1.0

Revision as of 13:54, 30 October 2006

Download Source: get it from: http://gd.tuwien.ac.at/visual/ibiblio/libs/graphics/t1lib-5.1.0.tar.gz

Dependencies

Optional

Non-Multilib

Configure the package:

./configure --prefix=/usr

If you have TeTeX installed and would like to build the documentation issue:

make

Otherwise issue:

make without_doc

Install the package

make install &&
chmod -b 755 /usr/lib/libt1.so.5.1.0

If you have an X Window System installed issue:

chmod -b 755 /usr/lib/libt1x.so.5.1.0

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr &&
make without_doc

Install the package

make install &&
chmod -b 755 /usr/lib/libt1.so.5.1.0

If you have an X Window System installed issue:

chmod -b 755 /usr/lib/libt1x.so.5.1.0

N32

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr \
    --libdir=/usr/lib32 &&
make without_doc

Install the package

make install &&
chmod -b 755 /usr/lib32/libt1.so.5.1.0

If you have an X Window System installed issue:

chmod -b 755 /usr/lib32/libt1x.so.5.1.0

64Bit

Configure the package:

CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr \
    --libdir=/usr/lib64

If you have TeTeX installed and would like to build the documentation issue:

make

Otherwise issue:

make without_doc

Install the package

make install &&
chmod -b 755 /usr/lib64/libt1.so.5.1.0

If you have an X Window System installed issue:

chmod -b 755 /usr/lib64/libt1x.so.5.1.0