Re: which native-lib under KDE4?
philippe dalet <[email protected]>
| Newsgroups | gmane.comp.python.wxpython.devel |
|---|---|
| Message-ID | <20150510164005.66d35bed@administrateur-System-Product-Name> |
Le Sat, 9 May 2015 18:48:04 +0200, <[email protected]> a écrit : > When using wxPhoenix, which nativ gui-lib is there working under it, > when running a script under KDE4? > > KDE4 itself use Qt4. > But the wx.version() string is "3.0.3.dev1820+49a8884 gtk2 (phoenix)". > So it use Gtk2+? Am I right? > Hi, I have compiled wxpython-phoenix on ubuntu 64 bits (py34). http://sourceforge.net/projects/pcpu/files/WxPython-Phoenix-Py3.4/wxPython_Phoenix-3.0.3.dev1784%2B18750f4-cp34-cp34m-linux_x86_64.whl/download All libraries are on the package wheel. my script BUILD3.sh is joined. Ph D. -- You received this message because you are subscribed to the Google Groups "wxPython-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
BUILD3.sh
(application/x-shellscript, 1.5 KB)
#!/bin/sh
echo "install:needs libnotify-dev libwebkit-dev libmspack-dev , Doxygen 1.8.8"
echo " libgconfmm-2.6-dev libgstreamer-plugins-base0.10-dev"
F=${PWD##*/}-cp34-cp34m-linux_x86_64.whl
echo "\n$FILE\n"
PYVER="3.4"
export LANG=en_US
export PKG_CONFIG_PATH=/usr/lib64
echo "..............................................."
echo ". Compile wxPython-Phoenix with python3 ."
echo ". Compile wxWidgets 3.0.3 ."
echo "..............................................."
echo " "
echo " "
sudo rm -rf ../build
sudo rm -rf ./build
sudo rm -rf ./license
sudo rm -rf ./dist
mkdir build
cd build
echo " "
echo "......................."
echo ". Compiling etg sip ."
echo "......................."
echo " "
echo " "
python3 -u ../build.py $PYVER --build_dir=../build --nodoc dox doxhtml touch etg sip
echo " "
echo "......................."
echo ". Compiling WxPython ."
echo "......................."
echo " "
echo " "
sudo python3 -u ../build.py $PYVER --build_dir=../build --nodoc build_wx
sudo python3 -u ../build.py $PYVER --build_dir=../build --nodoc build_py
echo " "
echo "......................."
echo ". bdist_wheel ."
echo "......................."
echo " "
echo " "
sudo python3 -u ../build.py $PYVER --build_dir=../build --nodoc bdist_wheel
#echo "Install /usr/local/lib/python3.4/site-packages/wx"
#sudo pip3 install --use-wheel ../dist/$FILE
echo "copy to dropbox"
cp ../dist/*.whl ~/Dropbox/Trusty-64bits/Python
(echo -n "\npause .. ";read mot)