updated setup files to reflect glade->builder change

This commit is contained in:
punkrockguy318 2008-06-17 17:33:48 +00:00
parent 763a886c74
commit a5d1f30977
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ COPYING
ChangeLog ChangeLog
INSTALL INSTALL
TODO TODO
gfceu.glade gfceu.xml
gfceu.desktop gfceu.desktop
gfceu.png gfceu.png
gfceu_big.png gfceu_big.png

2
gfceu
View File

@ -293,7 +293,7 @@ class GfceuApp:
glade_file = os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceu/gfceu.xml') glade_file = os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceu/gfceu.xml')
else: else:
print 'ERROR.' print 'ERROR.'
print 'Could not find the glade interface file.' print 'Could not find the glade.xml file.'
print 'Try reinstalling the application.' print 'Try reinstalling the application.'
sys.exit(1) sys.exit(1)

View File

@ -3,7 +3,7 @@ from distutils.core import setup
setup(name="gfceu", setup(name="gfceu",
version="0.7svn", version="0.7svn",
scripts = ['gfceu'], scripts = ['gfceu'],
data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']), data_files=[('share/gfceu/',['gfceu.xml', 'gfceu_big.png', 'gfceu.png']),
('share/pixmaps/', ['gfceu.png']), ('share/pixmaps/', ['gfceu.png']),
('share/man/man1/', ['gfceu.1']), ('share/man/man1/', ['gfceu.1']),
('share/applications/', ['gfceu.desktop'])], ('share/applications/', ['gfceu.desktop'])],