updated setup files to reflect glade->builder change
This commit is contained in:
parent
763a886c74
commit
a5d1f30977
2
MANIFEST
2
MANIFEST
|
@ -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
2
gfceu
|
@ -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)
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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'])],
|
||||||
|
|
Loading…
Reference in New Issue