diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-12-26 19:42:30 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-12-26 19:42:30 +0000 |
commit | 19a573e01a013eb34484f33d95bef0fc363001d9 (patch) | |
tree | 64f1ddf900d08153d874db2d6eccef652d327d6f /audio/mpdbrowser/files/patch-setup.py | |
parent | - Fix build on 6.x by using valloc(3) instead of posix_memalign(3) (diff) |
MPD click & play client
mpdBrowser show your collection's covers and let you:
- play an album with left click
- Enqueue an album with left click and Control
- Clear playlist with middle click
- play a song with right click
- enqueue a song with right click and Control
WWW: http://www.gnomefiles.org/app.php/mpdBrowser
PR: ports/129955
Submitted by: Henrik Friedrichsen <hrkfdn at gmail.com>
Diffstat (limited to '')
-rw-r--r-- | audio/mpdbrowser/files/patch-setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/mpdbrowser/files/patch-setup.py b/audio/mpdbrowser/files/patch-setup.py new file mode 100644 index 000000000000..d6fe9c833471 --- /dev/null +++ b/audio/mpdbrowser/files/patch-setup.py @@ -0,0 +1,20 @@ +--- _setup.py 2008-07-31 12:33:41.000000000 +0200 ++++ setup.py 2008-12-26 16:19:16.000000000 +0100 +@@ -36,7 +36,7 @@ + # Create mo files: + if not os.path.exists("mo/"): + os.mkdir("mo/") +-for lang in ('de', 'pl', 'ru', 'fr', 'zh_CN', 'sv', 'es', 'fi', 'uk', 'it', 'cs', 'nl', 'pt_BR', 'da', 'be@latin'): ++for lang in ('fr', 'it', 'pl'): + pofile = "po/" + lang + ".po" + mofile = "mo/" + lang + "/mpdBrowser.mo" + if not os.path.exists("mo/" + lang + "/"): +@@ -45,7 +45,7 @@ + os.system("msgfmt %s -o %s" % (pofile, mofile)) + + setup(name='mpdBrowser', +- version='0.9.0', ++ version='0.9.15', + description='GTK+ client for the Music Player Daemon (MPD).', + author='Bellegarde Cedric', + author_email='gnumdk@gmail.com', |