Difference between revisions of "D-BUS Qt3"

From CBLFS
Jump to navigationJump to search
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
| http://people.freedesktop.org/~krake/dbus-1-qt3/dbus-1-qt3-{{D-BUS-Qt3-Version}}.tar.gz
 
| http://people.freedesktop.org/~krake/dbus-1-qt3/dbus-1-qt3-{{D-BUS-Qt3-Version}}.tar.gz
 
|}
 
|}
 +
 +
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 11: Line 15:
 
* [[Pkg-config]]
 
* [[Pkg-config]]
 
* [[Qt3]]
 
* [[Qt3]]
 
=== Description ===
 
 
Since I ran afoul of this, this package is not suitable to install KDE3 with DBus bindings. It contains a backport from Qt4 with a different API than what KDE3 expects. I found the correct binding in Gentoo's source collection as "dbus-qt-0.70".
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Latest revision as of 03:23, 18 June 2007

Qt3 Binding: http://people.freedesktop.org/~krake/dbus-1-qt3/dbus-1-qt3-0.9.tar.gz

Introduction to D-BUS Qt3

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --with-qt-libraries=${QTDIR}/lib &&
make

Install the package:

make install

N32

Compile the package:

sed -i "/search_libs/s/lib/&32/g" configure &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 --with-qt-libraries=${QTDIR}/lib32 &&
make

Install the package:

make install

64 Bit

Compile the package:

sed -i "/search_libs/s/lib/&64/g" configure &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --with-qt-libraries=${QTDIR}/lib64 &&
make

Install the package:

make install