Difference between revisions of "PyQt"
From CBLFS
Jump to navigationJump to search (→Required) |
Weibullguy (talk | contribs) |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
− | | http:// | + | | http://www.riverbankcomputing.com/static/Downloads/PyQt3/GPL/PyQt-x11-gpl-{{PyQt-Version}}.tar.gz |
|} | |} | ||
---- | ---- | ||
+ | |||
+ | {{Blank-Package-Introduction}} | ||
== Dependencies == | == Dependencies == | ||
Line 12: | Line 14: | ||
* [[Python]] | * [[Python]] | ||
* [[sip]] | * [[sip]] | ||
− | * [[ | + | * [[Qt3]] |
+ | |||
+ | {{Note|If you want build [[PyKDE]] you must use '''qt-mt''' option instead '''qt''' in the configure script.}} | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 18: | Line 22: | ||
Compile the package: | Compile the package: | ||
− | python configure.py | + | QMAKESPEC=linux-g++ python configure.py -y qt && |
make | make | ||
Line 31: | Line 35: | ||
USE_ARCH=32 QMAKESPEC=linux-g++-32 \ | USE_ARCH=32 QMAKESPEC=linux-g++-32 \ | ||
− | python configure.py -y qt | + | python configure.py -y qt && |
make | make | ||
Install the package: | Install the package: | ||
− | make install | + | make install && |
− | mv /usr/bin/pyuic | + | mv -v /usr/bin/pyuic{,-32} |
=== N32 === | === N32 === | ||
Line 48: | Line 52: | ||
USE_ARCH=64 QMAKESPEC=linux-g++-64 \ | USE_ARCH=64 QMAKESPEC=linux-g++-64 \ | ||
− | python configure.py -y qt | + | python configure.py -y qt && |
make | make | ||
Install the package: | Install the package: | ||
− | make install | + | make install && |
− | mv /usr/bin/pyuic | + | mv /usr/bin/pyuic{,-64} && |
ln -sfv multiarch_wrapper /usr/bin/pyuic | ln -sfv multiarch_wrapper /usr/bin/pyuic | ||
+ | |||
+ | == Contents == | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | !Installed Directories: | ||
+ | | None | ||
+ | |-valign="top" | ||
+ | !Installed Programs: | ||
+ | |pylupdate, pyuic | ||
+ | |-valign="top" | ||
+ | !Installed Libraries: | ||
+ | |qt.so, qtcanvas.so, qtgl.so, qtnetwork.so, qtsql.so, qttable.so, qtui.so, qtxml.so | ||
+ | |} | ||
+ | |||
+ | === Short Descriptions === | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | ! | ||
+ | | | ||
+ | |-valign="top" | ||
+ | ! | ||
+ | | | ||
+ | |-valign="top" | ||
+ | ! | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | [[Category:Python Modules]] |
Latest revision as of 09:24, 19 October 2010
Download Source: | http://www.riverbankcomputing.com/static/Downloads/PyQt3/GPL/PyQt-x11-gpl-3.17.4.tar.gz |
---|
Contents
Introduction to PyQt
Project Homepage: Unknown
Dependencies
Required
If you want build PyKDE you must use qt-mt option instead qt in the configure script.
Non-Multilib
Compile the package:
QMAKESPEC=linux-g++ python configure.py -y qt && make
Install the package
make install
Multilib
32Bit
Compile the package:
USE_ARCH=32 QMAKESPEC=linux-g++-32 \ python configure.py -y qt && make
Install the package:
make install && mv -v /usr/bin/pyuic{,-32}
N32
TO DO!ma
64Bit
Compile the package:
USE_ARCH=64 QMAKESPEC=linux-g++-64 \ python configure.py -y qt && make
Install the package:
make install && mv /usr/bin/pyuic{,-64} && ln -sfv multiarch_wrapper /usr/bin/pyuic
Contents
Installed Directories: | None |
---|---|
Installed Programs: | pylupdate, pyuic |
Installed Libraries: | qt.so, qtcanvas.so, qtgl.so, qtnetwork.so, qtsql.so, qttable.so, qtui.so, qtxml.so |