Changeset 2306

Show
Ignore:
Timestamp:
05/20/08 17:36:59 (4 months ago)
Author:
wrobe..@pld-linux.org
Message:

- do not provide desktop file on win32

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphor/trunk/setup.py

    r2304 r2306  
    8484            print 'epydoc not installed, skipping API documentation.' 
    8585 
     86 
     87data_files = [] 
     88 
     89if sys.platform != 'win32': 
     90    data_files = [ 
     91        ('share/pixmaps', ['gaphor/ui/pixmaps/gaphor-48x48.png']), 
     92        ('share/applications', ['gaphor.desktop']), 
     93    ] 
    8694 
    8795if sys.platform == 'darwin' and 'py2app' in sys.argv: 
     
    128136It uses the GTK+ environment for user interaction. 
    129137""", 
    130     data_files=[ 
    131         ('share/pixmaps', ['gaphor/ui/pixmaps/gaphor-48x48.png']), 
    132         ('share/applications', ['gaphor.desktop']), 
    133     ], 
     138    data_files=data_files, 
    134139    classifiers = [ 
    135140        'Development Status :: 4 - Beta',