View Single Post
fcrochik's Avatar
Posts: 722 | Thanked: 1,223 times | Joined on Apr 2010 @ USA
#37
IMPORTANT: Don't try this unless you know why you want to upgrade the Qt packages shipped with your n900 and MAKE SURE to read ALL the previous posts on this thread for the unintended side effects. Installing these packages DOES NOT mean that all the packages that depend on Qt packages will work. In fact, I would assume otherwise.


I decided to share this because I think is a little safer than adding the SDK catalog (not easier).

There is another way to get the 4.6.2 Qt packages - you can download them from http://repository.maemo.org/pool/fre...ree/q/qt4-x11/ and install them manually.

The packages are:
libqt4-core_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-dbus_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-gui_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-maemo5_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-multimedia_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-network_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-opengl_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-phonon_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-script_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-sql-sqlite_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-sql_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-svg_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-translations_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-webkit_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-xml_4.6.2~git20100310-0maemo1+0m5_armel.deb
libqt4-xmlpatterns_4.6.2~git20100310-0maemo1+0m5_armel.deb


Because you may want to install all of them I created a small script.

A little guide:
1. Save the two attached files to a NEW folder on your n900
2. open the terminal as the root user (if you don't know how, look around but it probably means that you should not try this... )
3. go to the directory where you saved the files.
4. if you don't have wget installed, install it:
Code:
apt-get install wget
5. run the script:
Code:
sh qt4-install.txt
6. you may want to remove "mp-fremantle-generic-pr" to avoid broken dependencies (again read first post on this thread)

The script(qt4-install.txt) is very simple and reads the list of files to download and install from the second file(qt4-packages.txt):

Code:
#!/bin/sh
while read line; do
	echo 'downloading: '$line
       	wget http://repository.maemo.org/pool/fremantle/free/q/qt4-x11/$line 
	dpkg -i $line
done < qt4-packages.txt
Last but not least: I BELIEVE developers should have (and had) their applications linked with the qt4-maemo (experimental) packages until PR 1.2 is out. It is just easier for users to install them and does not require hacks. The current policy to block qt packages from moving to testing sends a different message. A message that the right way of doing is using the "stock" packages that don't exist on the device. If you do so then you can't run the application on the device until PR 1.2 is out or you have to try some hack like this.
Attached Files
File Type: txt qt4-packages.txt (868 Bytes, 140 views)
File Type: txt qt4-install.txt (203 Bytes, 128 views)
__________________

My maemo work:
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
For Harmattan:
GeePS - native UI around google maps - GApp - access to optimized mobile "google apps".
Shutdown - shutdown and reboot with one click - QuickCall - one click call, skypeout and google voice integration using dial tones.
WakeOnLan - wake computers on your local network.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
For Maemo/N900:
GApp - access to optimized mobile "google apps". - MobWebMail: browser optimized to access multiple gmail accounts
MyContacts: 75 Contacts on your desktop, ring tones per group and more - GeePS: native front-end for google maps
Macuco2 : web browser to access web sites optimized for the iphone - WakeOnLan: wake up computers on your local network
dbBrowser: Simple application to browse sqlite databases

Last edited by fcrochik; 2010-05-22 at 14:09. Reason: extra comment
 

The Following 3 Users Say Thank You to fcrochik For This Useful Post: