runCore.py is now name gajim.py

This commit is contained in:
Yann Leboulanger 2005-01-11 08:21:20 +00:00
parent 3c5c49caa5
commit b6ed560d84
4 changed files with 7 additions and 7 deletions

6
debian/rules vendored
View File

@ -28,9 +28,9 @@ install-stamp: build-stamp
cd debian/tmp && install -d `cat ../dirs`
make install PREFIX=/usr DESTDIR=`pwd`/debian/tmp
cp gajim.xpm debian/tmp/usr/share/pixmaps
chmod -x debian/tmp/usr/share/gajim/runCore.py
sed -ne '1d;w debian/tmp/runCore.py.tmp' debian/tmp/usr/share/gajim/runCore.py
mv debian/tmp/runCore.py.tmp debian/tmp/usr/share/gajim/runCore.py
chmod -x debian/tmp/usr/share/gajim/gajim.py
sed -ne '1d;w debian/tmp/gajim.py.tmp' debian/tmp/usr/share/gajim/gajim.py
mv debian/tmp/gajim.py.tmp debian/tmp/usr/share/gajim/gajim.py
binary-indep: checkroot build
$(checkdir)

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python
## runCore.py
## gajim.py
##
## Gajim Team:
## - Yann Le Boulanger <asterix@lagaule.org>

View File

@ -22,4 +22,4 @@ if [ `id -u` -eq 0 ]; then
fi
cd PREFIX/share/gajim
python runCore.py
python gajim.py

View File

@ -40,8 +40,8 @@ opts = {
setup(
name = "Gajim",
description = "A jabber client",
# console=["runCore.py"],
windows = [{"script": "runCore.py"}],
# console=["gajim.py"],
windows = [{"script": "gajim.py"}],
options=opts,
data_files=[("plugins/gtkgui", glob.glob("plugins/gtkgui/gtkgui.glade")),
("plugins/gtkgui/icons/sun", glob.glob("plugins/gtkgui/icons/sun/*.*")),