moved stuff, again

This commit is contained in:
Zach Tibbitts 2007-02-08 00:31:18 +00:00
parent ee60730dae
commit a4202f6c35
10 changed files with 5 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -88,7 +88,8 @@ setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.5.0",
scripts=["scripts/deluge"], scripts=["scripts/deluge"],
packages=['deluge'], packages=['deluge'],
package_dir = {'deluge': 'src'}, package_dir = {'deluge': 'src'},
package_data={'deluge': ['glade/*.glade', 'pixmaps/*.png']}, data_files=[("share/deluge/glade", ["glade/delugegtk.glade", "glade/dgtkpopups.glade", "glade/dgtkpref.glade"]),
("share/deluge/pixmaps", ["pixmaps/deluge32.png","pixmaps/deluge128.png"])],
ext_package='deluge', ext_package='deluge',
ext_modules=[deluge_core] ext_modules=[deluge_core]
) )

View File

@ -23,8 +23,9 @@ import sys, os, os.path, webbrowser
PROGRAM_NAME = "Deluge" PROGRAM_NAME = "Deluge"
PROGRAM_VERSION = "0.4.9.0" PROGRAM_VERSION = "0.4.9.0"
DELUGE_DIR = os.path.abspath(os.path.dirname(sys.argv[0])) DELUGE_DIR = os.path.abspath(os.path.dirname(sys.argv[0]))
GLADE_DIR = DELUGE_DIR + "/glade" PREFIX = sys.prefix
PIXMAP_DIR = DELUGE_DIR + "/pixmaps" GLADE_DIR = PREFIX + "/share/deluge/glade"
PIXMAP_DIR = PREFIX + "/share/deluge/pixmaps"
class DelugePreferences: class DelugePreferences:
def __init__(self): def __init__(self):