Merge branch 'master' of git://repo.or.cz/fpbd-bostik
This commit is contained in:
commit
072ead3250
|
@ -5,5 +5,5 @@ Exec=/usr/bin/fpdb
|
||||||
Icon=fpdb-icon.png
|
Icon=fpdb-icon.png
|
||||||
Terminal=true
|
Terminal=true
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Utility
|
Categories=Utility;GTK;Application
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
free-poker-tools (0.20~git20100630) unstable; urgency=low
|
||||||
|
|
||||||
|
* Snapshot release
|
||||||
|
* Executable names have been changed to accommodate for some win32
|
||||||
|
trouble cases; install these files manually to build-tree
|
||||||
|
* Improved statistics
|
||||||
|
|
||||||
|
-- Mika Bostrom <bostik+fpdb@bostik.iki.fi> Wed, 16 Jun 2010 08:10:00 +0300
|
||||||
|
|
||||||
free-poker-tools (0.20~git20100305) unstable; urgency=low
|
free-poker-tools (0.20~git20100305) unstable; urgency=low
|
||||||
|
|
||||||
* New snapshot
|
* New snapshot
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/usr/share/pyshared/fpdb/fpdb.py /usr/bin/fpdb
|
/usr/share/pyshared/fpdb/fpdb.pyw /usr/bin/fpdb
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
# When installed into .../fpdb/ the script gets mode 644
|
# When installed into .../fpdb/ the script gets mode 644
|
||||||
# Note: "dh_fixperms -Xfpdb.py" did not work, hence this hack
|
# Note: "dh_fixperms -Xfpdb.py" did not work, hence this hack
|
||||||
chmod 755 /usr/bin/fpdb
|
chmod 755 /usr/bin/fpdb
|
||||||
chmod 755 /usr/share/pyshared/fpdb/HUD_main.py
|
chmod 755 /usr/share/pyshared/fpdb/HUD_main.pyw
|
||||||
|
|
|
@ -23,6 +23,13 @@ install: build
|
||||||
dh_installdirs
|
dh_installdirs
|
||||||
#
|
#
|
||||||
python setup.py install --root=debian/$(PACKAGE) --prefix=/usr --no-compile
|
python setup.py install --root=debian/$(PACKAGE) --prefix=/usr --no-compile
|
||||||
|
# Copy *.pyw manually in packaging tree
|
||||||
|
cp pyfpdb/*.pyw debian/$(PACKAGE)/usr/lib/python2.6/site-packages/fpdb/
|
||||||
|
# Remove scripts that are only useful in win32
|
||||||
|
rm debian/$(PACKAGE)/usr/lib/python2.6/site-packages/fpdb//windows_make_bats.py
|
||||||
|
rm debian/$(PACKAGE)/usr/lib/python2.6/site-packages/fpdb/makeexe.py
|
||||||
|
rm debian/$(PACKAGE)/usr/lib/python2.6/site-packages/fpdb/py2exe_setup.py
|
||||||
|
|
||||||
|
|
||||||
binary-indep: build install
|
binary-indep: build install
|
||||||
dh_testdir
|
dh_testdir
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -12,8 +12,7 @@ setup(name = 'fpdb',
|
||||||
package_dir = { 'fpdb' : 'pyfpdb' },
|
package_dir = { 'fpdb' : 'pyfpdb' },
|
||||||
data_files = [
|
data_files = [
|
||||||
('/usr/share/doc/python-fpdb',
|
('/usr/share/doc/python-fpdb',
|
||||||
['docs/readme.txt', 'docs/release-notes.txt',
|
['THANKS.txt']),
|
||||||
'docs/tabledesign.html', 'THANKS.txt']),
|
|
||||||
('/usr/share/pixmaps',
|
('/usr/share/pixmaps',
|
||||||
['gfx/fpdb-icon.png', 'gfx/fpdb-icon2.png',
|
['gfx/fpdb-icon.png', 'gfx/fpdb-icon2.png',
|
||||||
'gfx/fpdb-cards.png'
|
'gfx/fpdb-cards.png'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user