Difference between revisions of "Foomatic-db-engine"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://www.openprinting.org/download/foomatic/foomatic-db-engine-3.0-current.tar.gz |} ---- {...) |
m (→64Bit) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
|-valign="top" | |-valign="top" | ||
!Download Source: | !Download Source: | ||
− | | http://www.openprinting.org/download/foomatic/foomatic-db-engine- | + | | http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0-current.tar.gz |
|} | |} | ||
Line 26: | Line 26: | ||
Compile the package: | Compile the package: | ||
− | USE_ARCH=32 \ | + | USE_ARCH=32 CC="gcc ${BUILD32}" \ |
./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc && | ||
make | make | ||
Line 32: | Line 32: | ||
Install the package | Install the package | ||
− | make install | + | make install |
=== N32 === | === N32 === | ||
Line 52: | Line 52: | ||
Compile the package: | Compile the package: | ||
− | USE_ARCH=64 \ | + | USE_ARCH=64 CC="gcc ${BUILD64}" \ |
./configure --prefix=/usr --libdir=/usr/lib64 \ | ./configure --prefix=/usr --libdir=/usr/lib64 \ | ||
--sysconfdir=/etc && | --sysconfdir=/etc && |
Latest revision as of 04:28, 14 March 2009
Download Source: | http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0-current.tar.gz |
---|
Introduction to Foomatic-db-engine
Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix.
Project Homepage: Unknown
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
Multilib
32Bit
Compile the package:
USE_ARCH=32 CC="gcc ${BUILD32}" \ ./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
N32
Compile the package:
USE_ARCH=n32 \ ./configure --prefix=/usr --libdir=/usr/lib32 \ --sysconfdir=/etc && sed -i 's:/usr/lib:/usr/lib32:g' Makefile make
Install the package
make install
64Bit
Compile the package:
USE_ARCH=64 CC="gcc ${BUILD64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 \ --sysconfdir=/etc && sed -i 's:/usr/lib:/usr/lib64:g' Makefile make
Install the package
make install