#!/usr/bin/env python
#-*- coding: utf-8 -*-
# memaker.py - A gtk based avatar creation program.
# Copyright 2008 The MeMaker Project
#
# 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 3 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. See the file LICENSE.
# If not, see <http://www.gnu.org/licenses/>.

import sys
import os.path

try:
    import gtk
except:
    sys.exit(1)

import os
from MeMaker import MeMakerGui


if __name__ == "__main__":
    current_path = os.path.abspath(os.path.dirname(__file__))
    if ( os.path.exists( current_path+"/MeMaker" ) ):
        MeMakerGui.DATADIR = os.path.abspath(os.path.dirname(__file__))+"/data"
        MeMakerGui.THEMESDIR = os.path.abspath(os.path.dirname(__file__))+"/themes"
        MeMakerGui.AUTHORSFILE = os.path.abspath(os.path.dirname(__file__))+"/AUTHORS"

    app = MeMakerGui.MeMakerGui()
    gtk.main()
