X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=f3381a80fdc27c3c57314835fbb4b61dd295f3e6;hp=fe31b29f5a5301035bd4b6d8e46e1e94c3b4550a;hb=20ab0575639e31c85a3d4c86897041fea745d430;hpb=56f72f69062b72c5d39b9d2b3b6a7d68a4b6464c diff --git a/support/builddeb.py b/support/builddeb.py index fe31b29..f3381a8 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -30,16 +30,13 @@ __email__ = "eopage@byu.net" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ -* Fixing the SMS Entry letter count -* Adding and optimizing rotation to the SMS Entry window +*Jut hoping to force the maemo.org package system along """.strip() __postinstall__ = """#!/bin/sh -e gtk-update-icon-cache -f /usr/share/icons/hicolor -rm -f ~/.%(name)s/%(name)s.log -rm -f ~/.%(name)s/notifier.log """ % {"name": constants.__app_name__} __preremove__ = """#!/bin/sh -e @@ -84,12 +81,15 @@ def build_package(distribution): p.license = "lgpl" p.depends = ", ".join([ "python2.6 | python2.5", + "python-xml | python2.5-xml", + "python-dbus | python2.5-dbus", "python-simplejson", ]) p.depends += { "debian": ", python-qt4", "diablo": ", python2.5-qt4-core, python2.5-qt4-gui", "fremantle": ", python2.5-qt4-core, python2.5-qt4-gui, python2.5-qt4-maemo5", + #"fremantle": ", python-pyside.qtgui, python-pyside.qtcore, python-pyside.qtmaemo5, python-qtmobility.contacts", }[distribution] p.recommends = ", ".join([ ])