BROKEN: Moved everything
[gc-dialer] / support / builddeb.py
index 28b22eb..7b904e4 100755 (executable)
@@ -30,15 +30,15 @@ __email__ = "eopage@byu.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
-* More graphical glitch removal work (Maemo 5)
+* Adding back in GTalk callback for those who can use it
+* Polishing button sizing and some wording
+* Fixed a bug with alert LED on Maemo 4.1
 """.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
@@ -83,12 +83,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",
+               "debian": ", python-qt4, python-gst0.10",
                "diablo": ", python2.5-qt4-core, python2.5-qt4-gui",
-               "fremantle": ", python2.5-qt4-core, python2.5-qt4-gui, python2.5-qt4-maemo5",
+               "fremantle": ", python2.5-qt4-core, python2.5-qt4-gui, python2.5-qt4-maemo5, python-gst0.10",
+               #"fremantle": ", python-pyside.qtgui, python-pyside.qtcore, python-pyside.qtmaemo5, python-qtmobility.contacts",
        }[distribution]
        p.recommends = ", ".join([
        ])