#!/usr/bin/python2.4

# Copyright (C) 2004-2005 Ross Burton <ross@burtonini.com>
#               2005 Canonical
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA

from AppInstall.AppInstall import AppInstall
import sys

if __name__ == "__main__":
  
        # FIXME: we should probably only call this when we call out
        #        for synaptic
	#if os.geteuid() != 0:
	#	dialog = gtk.MessageDialog(self.window_main,
        #                                   0, gtk.MESSAGE_ERROR,
	#				   gtk.BUTTONS_OK,
	#				   _("You need to be root to run this "
	#				     "program."))
	#	dialog.run()
	#	dialog.destroy()
	#	sys.exit(1)

	#datadir = "/tmp/xxx/share/gnome-app-install"	
	datadir = "/usr/share/gnome-app-install"
	desktopdir = "/usr/share/app-install"
        app = AppInstall(datadir, desktopdir, sys.argv)
	app.run()
