2010-02-28 21:55:10 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2010-03-24 00:11:46 +01:00
|
|
|
# This file is part of Clementine.
|
|
|
|
#
|
|
|
|
# Clementine is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Clementine is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2010-03-24 14:45:35 +01:00
|
|
|
FRAMEWORK_SEARCH_PATH=[
|
2010-05-17 16:59:44 +02:00
|
|
|
'/usr/local/Trolltech/Qt-4.7.0/lib',
|
2010-03-24 14:45:35 +01:00
|
|
|
'/Library/Frameworks',
|
|
|
|
os.path.join(os.environ['HOME'], 'Library/Frameworks')
|
|
|
|
]
|
|
|
|
|
2010-08-18 18:12:16 +02:00
|
|
|
LIBRARY_SEARCH_PATH=['/usr/local/lib', '/sw/lib']
|
2010-02-28 21:55:10 +01:00
|
|
|
|
|
|
|
XINE_PLUGINS = [
|
|
|
|
'xineplug_ao_out_coreaudio.so',
|
|
|
|
'xineplug_decode_a52.so',
|
|
|
|
'xineplug_decode_dts.so',
|
|
|
|
'xineplug_decode_faad.so',
|
|
|
|
'xineplug_decode_mad.so',
|
|
|
|
'xineplug_decode_mpc.so',
|
2010-03-19 16:20:14 +01:00
|
|
|
'xineplug_decode_vorbis.so',
|
2010-02-28 21:55:10 +01:00
|
|
|
'xineplug_dmx_audio.so',
|
2010-03-19 16:20:14 +01:00
|
|
|
'xineplug_dmx_ogg.so',
|
|
|
|
'xineplug_flac.so',
|
2010-02-28 21:55:10 +01:00
|
|
|
'xineplug_inp_cdda.so',
|
|
|
|
'xineplug_inp_file.so',
|
|
|
|
'xineplug_inp_http.so',
|
|
|
|
'xineplug_inp_net.so',
|
|
|
|
'xineplug_inp_rtp.so',
|
|
|
|
'xineplug_inp_rtsp.so',
|
|
|
|
'xineplug_post_audio_filters.so',
|
|
|
|
]
|
|
|
|
XINEPLUGIN_SEARCH_PATH=[
|
|
|
|
'/usr/local/lib/xine/plugins',
|
|
|
|
'/usr/lib/xine/plugins',
|
|
|
|
'/sw/lib/xine/plugins',
|
|
|
|
]
|
|
|
|
|
2010-04-12 14:36:30 +02:00
|
|
|
GSTREAMER_PLUGINS=[
|
|
|
|
# Core plugins
|
|
|
|
'libgstaudioconvert.so',
|
2010-07-14 13:16:56 +02:00
|
|
|
'libgstaudiofx.so',
|
|
|
|
'libgstaudiotestsrc.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstaudioresample.so',
|
|
|
|
'libgstautodetect.so',
|
|
|
|
'libgstcoreelements.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstdecodebin2.so',
|
2010-07-13 19:13:33 +02:00
|
|
|
'libgstequalizer.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstosxaudio.so',
|
|
|
|
'libgsttypefindfunctions.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstudp.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstvolume.so',
|
|
|
|
|
|
|
|
# Codecs
|
2010-05-25 13:12:35 +02:00
|
|
|
'libgstapetag.so',
|
2010-08-18 18:12:16 +02:00
|
|
|
'libgstasf.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstfaac.so',
|
|
|
|
'libgstfaad.so',
|
2010-06-18 16:21:13 +02:00
|
|
|
'libgstffmpeg.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstflac.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstgio.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstid3demux.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstlame.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstmad.so',
|
2010-06-23 13:07:39 +02:00
|
|
|
'libgstmms.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstmusepack.so',
|
|
|
|
'libgstogg.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstqtdemux.so',
|
2010-08-18 18:12:16 +02:00
|
|
|
'libgstqtwrapper.so',
|
2010-06-22 17:50:42 +02:00
|
|
|
'libgstreplaygain.so',
|
|
|
|
'libgstspeex.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
'libgstvorbis.so',
|
2010-06-14 16:51:11 +02:00
|
|
|
'libgstwavparse.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
|
|
|
|
# HTTP src support
|
|
|
|
'libgstneonhttpsrc.so',
|
2010-05-25 13:07:06 +02:00
|
|
|
|
|
|
|
# Icecast support
|
|
|
|
'libgsticydemux.so',
|
2010-04-12 14:36:30 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
GSTREAMER_SEARCH_PATH=[
|
|
|
|
'/usr/local/gstreamer-0.10',
|
|
|
|
'/usr/local/gstreamer-0.10/gstreamer-0.10',
|
|
|
|
'/sw/lib/gstreamer-0.10',
|
|
|
|
'/sw/lib/gstreamer-0.10/gstreamer-0.10',
|
|
|
|
]
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
QT_PLUGINS = [
|
|
|
|
'accessible/libqtaccessiblewidgets.dylib',
|
|
|
|
'codecs/libqcncodecs.dylib',
|
|
|
|
'codecs/libqjpcodecs.dylib',
|
|
|
|
'codecs/libqkrcodecs.dylib',
|
|
|
|
'codecs/libqtwcodecs.dylib',
|
|
|
|
'iconengines/libqsvgicon.dylib',
|
|
|
|
'imageformats/libqgif.dylib',
|
|
|
|
'imageformats/libqico.dylib',
|
|
|
|
'imageformats/libqjpeg.dylib',
|
|
|
|
'imageformats/libqmng.dylib',
|
|
|
|
'imageformats/libqsvg.dylib',
|
|
|
|
'imageformats/libqtiff.dylib',
|
|
|
|
]
|
|
|
|
QT_PLUGINS_SEARCH_PATH=[
|
2010-05-17 16:59:44 +02:00
|
|
|
'/usr/local/Trolltech/Qt-4.7.0/plugins',
|
2010-03-01 13:13:11 +01:00
|
|
|
'/Developer/Applications/Qt/plugins',
|
|
|
|
]
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
|
|
|
|
class Error(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class CouldNotFindFrameworkError(Error):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InstallNameToolError(Error):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class CouldNotFindXinePluginError(Error):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
class CouldNotFindQtPluginError(Error):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2010-04-12 14:36:30 +02:00
|
|
|
class CouldNotFindGstreamerPluginError(Error):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
if len(sys.argv) < 2:
|
|
|
|
print 'Usage: %s <bundle.app>' % sys.argv[0]
|
|
|
|
|
|
|
|
bundle_dir = sys.argv[1]
|
|
|
|
|
2010-04-15 21:09:39 +02:00
|
|
|
bundle_name = os.path.basename(bundle_dir).split('.')[0]
|
2010-02-28 21:55:10 +01:00
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
commands = []
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
frameworks_dir = os.path.join(bundle_dir, 'Contents', 'Frameworks')
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(['mkdir', '-p', frameworks_dir])
|
2010-02-28 21:55:10 +01:00
|
|
|
resources_dir = os.path.join(bundle_dir, 'Contents', 'Resources')
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(['mkdir', '-p', resources_dir])
|
2010-02-28 21:55:10 +01:00
|
|
|
plugins_dir = os.path.join(bundle_dir, 'Contents', 'PlugIns')
|
|
|
|
binary = os.path.join(bundle_dir, 'Contents', 'MacOS', bundle_name)
|
|
|
|
|
|
|
|
fixed_libraries = []
|
|
|
|
fixed_frameworks = []
|
|
|
|
|
|
|
|
def GetBrokenLibraries(binary):
|
|
|
|
output = subprocess.Popen(['otool', '-L', binary], stdout=subprocess.PIPE).communicate()[0]
|
|
|
|
broken_libs = {
|
|
|
|
'frameworks': [],
|
|
|
|
'libs': []}
|
|
|
|
for line in [x.split(' ')[0].lstrip() for x in output.split('\n')[1:]]:
|
|
|
|
if not line: # skip empty lines
|
|
|
|
continue
|
|
|
|
if os.path.basename(binary) in line:
|
|
|
|
continue
|
|
|
|
if re.match(r'^\s*/System/', line):
|
|
|
|
continue # System framework
|
|
|
|
elif re.match(r'^\s*/usr/lib/', line):
|
|
|
|
continue # unix style system library
|
2010-04-15 18:00:11 +02:00
|
|
|
elif re.match(r'^\s*@executable_path', line) or re.match(r'^\s*@loader_path', line):
|
2010-03-01 13:13:11 +01:00
|
|
|
# Potentially already fixed library
|
|
|
|
relative_path = os.path.join(*line.split('/')[3:])
|
|
|
|
if not os.path.exists(os.path.join(frameworks_dir, relative_path)):
|
|
|
|
broken_libs['frameworks'].append(relative_path)
|
2010-03-24 14:45:35 +01:00
|
|
|
elif re.search(r'\w+\.framework', line):
|
|
|
|
broken_libs['frameworks'].append(line)
|
2010-02-28 21:55:10 +01:00
|
|
|
else:
|
|
|
|
broken_libs['libs'].append(line)
|
|
|
|
|
|
|
|
return broken_libs
|
|
|
|
|
|
|
|
def FindFramework(path):
|
|
|
|
for search_path in FRAMEWORK_SEARCH_PATH:
|
|
|
|
abs_path = os.path.join(search_path, path)
|
|
|
|
if os.path.exists(abs_path):
|
|
|
|
return abs_path
|
|
|
|
|
|
|
|
raise CouldNotFindFrameworkError(path)
|
|
|
|
|
|
|
|
def FindLibrary(path):
|
|
|
|
if os.path.exists(path):
|
|
|
|
return path
|
|
|
|
for search_path in LIBRARY_SEARCH_PATH:
|
|
|
|
abs_path = os.path.join(search_path, path)
|
|
|
|
if os.path.exists(abs_path):
|
|
|
|
return abs_path
|
|
|
|
|
|
|
|
raise CouldNotFindFrameworkError(path)
|
|
|
|
|
|
|
|
def FixAllLibraries(broken_libs):
|
|
|
|
for framework in broken_libs['frameworks']:
|
|
|
|
FixFramework(framework)
|
|
|
|
for lib in broken_libs['libs']:
|
|
|
|
FixLibrary(lib)
|
|
|
|
|
|
|
|
def FixFramework(path):
|
|
|
|
if path in fixed_libraries:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
fixed_libraries.append(path)
|
|
|
|
abs_path = FindFramework(path)
|
|
|
|
broken_libs = GetBrokenLibraries(abs_path)
|
|
|
|
FixAllLibraries(broken_libs)
|
|
|
|
|
|
|
|
new_path = CopyFramework(abs_path)
|
2010-03-24 14:45:35 +01:00
|
|
|
id = os.sep.join(new_path.split(os.sep)[3:])
|
|
|
|
FixFrameworkId(new_path, id)
|
2010-02-28 21:55:10 +01:00
|
|
|
for framework in broken_libs['frameworks']:
|
|
|
|
FixFrameworkInstallPath(framework, new_path)
|
|
|
|
for library in broken_libs['libs']:
|
|
|
|
FixLibraryInstallPath(library, new_path)
|
|
|
|
|
|
|
|
def FixLibrary(path):
|
2010-04-12 16:37:04 +02:00
|
|
|
if path in fixed_libraries or FindSystemLibrary(os.path.basename(path)) is not None:
|
2010-02-28 21:55:10 +01:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
fixed_libraries.append(path)
|
|
|
|
abs_path = FindLibrary(path)
|
|
|
|
broken_libs = GetBrokenLibraries(abs_path)
|
|
|
|
FixAllLibraries(broken_libs)
|
|
|
|
|
|
|
|
new_path = CopyLibrary(abs_path)
|
|
|
|
FixLibraryId(new_path)
|
|
|
|
for framework in broken_libs['frameworks']:
|
|
|
|
FixFrameworkInstallPath(framework, new_path)
|
|
|
|
for library in broken_libs['libs']:
|
|
|
|
FixLibraryInstallPath(library, new_path)
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
def FixPlugin(abs_path, subdir):
|
2010-02-28 21:55:10 +01:00
|
|
|
broken_libs = GetBrokenLibraries(abs_path)
|
|
|
|
FixAllLibraries(broken_libs)
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
new_path = CopyPlugin(abs_path, subdir)
|
2010-02-28 21:55:10 +01:00
|
|
|
for framework in broken_libs['frameworks']:
|
|
|
|
FixFrameworkInstallPath(framework, new_path)
|
|
|
|
for library in broken_libs['libs']:
|
|
|
|
FixLibraryInstallPath(library, new_path)
|
|
|
|
|
|
|
|
def FixBinary(path):
|
|
|
|
broken_libs = GetBrokenLibraries(path)
|
|
|
|
FixAllLibraries(broken_libs)
|
|
|
|
for framework in broken_libs['frameworks']:
|
|
|
|
FixFrameworkInstallPath(framework, path)
|
|
|
|
for library in broken_libs['libs']:
|
|
|
|
FixLibraryInstallPath(library, path)
|
|
|
|
|
|
|
|
def CopyLibrary(path):
|
|
|
|
new_path = os.path.join(frameworks_dir, os.path.basename(path))
|
2010-08-18 18:12:16 +02:00
|
|
|
args = ['ditto', '--arch=i386', path, new_path]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-02-28 21:55:10 +01:00
|
|
|
return new_path
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
def CopyPlugin(path, subdir):
|
|
|
|
new_path = os.path.join(plugins_dir, subdir, os.path.basename(path))
|
|
|
|
args = ['mkdir', '-p', os.path.dirname(new_path)]
|
|
|
|
commands.append(args)
|
2010-08-18 18:12:16 +02:00
|
|
|
args = ['ditto', '--arch=i386', path, new_path]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-02-28 21:55:10 +01:00
|
|
|
return new_path
|
|
|
|
|
|
|
|
def CopyFramework(path):
|
|
|
|
parts = path.split(os.sep)
|
|
|
|
for i, part in enumerate(parts):
|
|
|
|
if re.match(r'\w+\.framework', part):
|
|
|
|
full_path = os.path.join(frameworks_dir, *parts[i:-1])
|
|
|
|
break
|
|
|
|
args = ['mkdir', '-p', full_path]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-08-18 18:12:16 +02:00
|
|
|
args = ['ditto', '--arch=i386', path, full_path]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-03-24 14:45:35 +01:00
|
|
|
return os.path.join(full_path, parts[-1])
|
2010-02-28 21:55:10 +01:00
|
|
|
|
|
|
|
def FixId(path, library_name):
|
|
|
|
id = '@executable_path/../Frameworks/%s' % library_name
|
|
|
|
args = ['install_name_tool', '-id', id, path]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-02-28 21:55:10 +01:00
|
|
|
|
|
|
|
def FixLibraryId(path):
|
|
|
|
library_name = os.path.basename(path)
|
|
|
|
FixId(path, library_name)
|
|
|
|
|
|
|
|
def FixFrameworkId(path, id):
|
|
|
|
FixId(path, id)
|
|
|
|
|
|
|
|
def FixInstallPath(library_path, library, new_path):
|
|
|
|
args = ['install_name_tool', '-change', library_path, new_path, library]
|
2010-03-01 13:13:11 +01:00
|
|
|
commands.append(args)
|
2010-02-28 21:55:10 +01:00
|
|
|
|
2010-04-12 16:37:04 +02:00
|
|
|
def FindSystemLibrary(library_name):
|
|
|
|
for path in ['/lib', '/usr/lib']:
|
|
|
|
full_path = os.path.join(path, library_name)
|
|
|
|
if os.path.exists(full_path):
|
|
|
|
return full_path
|
|
|
|
return None
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
def FixLibraryInstallPath(library_path, library):
|
2010-04-12 16:37:04 +02:00
|
|
|
system_library = FindSystemLibrary(os.path.basename(library_path))
|
|
|
|
if system_library is None:
|
|
|
|
new_path = '@executable_path/../Frameworks/%s' % os.path.basename(library_path)
|
|
|
|
FixInstallPath(library_path, library, new_path)
|
|
|
|
else:
|
|
|
|
FixInstallPath(library_path, library, system_library)
|
2010-02-28 21:55:10 +01:00
|
|
|
|
|
|
|
def FixFrameworkInstallPath(library_path, library):
|
2010-03-24 14:45:35 +01:00
|
|
|
parts = library_path.split(os.sep)
|
|
|
|
for i, part in enumerate(parts):
|
|
|
|
if re.match(r'\w+\.framework', part):
|
|
|
|
full_path = os.path.join(*parts[i:])
|
|
|
|
break
|
|
|
|
new_path = '@executable_path/../Frameworks/%s' % full_path
|
2010-02-28 21:55:10 +01:00
|
|
|
FixInstallPath(library_path, library, new_path)
|
|
|
|
|
|
|
|
def FindXinePlugin(name):
|
|
|
|
for path in XINEPLUGIN_SEARCH_PATH:
|
|
|
|
if os.path.exists(path):
|
|
|
|
for dir, dirs, files in os.walk(path):
|
|
|
|
if name in files:
|
|
|
|
return os.path.join(dir, name)
|
|
|
|
raise CouldNotFindXinePluginError(name)
|
|
|
|
|
|
|
|
|
2010-03-01 13:13:11 +01:00
|
|
|
def FindQtPlugin(name):
|
|
|
|
for path in QT_PLUGINS_SEARCH_PATH:
|
|
|
|
if os.path.exists(path):
|
|
|
|
if os.path.exists(os.path.join(path, name)):
|
|
|
|
return os.path.join(path, name)
|
|
|
|
raise CouldNotFindQtPluginError(name)
|
|
|
|
|
|
|
|
|
2010-04-12 14:36:30 +02:00
|
|
|
def FindGstreamerPlugin(name):
|
|
|
|
for path in GSTREAMER_SEARCH_PATH:
|
|
|
|
if os.path.exists(path):
|
|
|
|
for dir, dirs, files in os.walk(path):
|
|
|
|
if name in files:
|
|
|
|
return os.path.join(dir, name)
|
|
|
|
raise CouldNotFindGstreamerPluginError(name)
|
|
|
|
|
|
|
|
|
2010-02-28 21:55:10 +01:00
|
|
|
FixBinary(binary)
|
|
|
|
|
2010-04-12 14:36:30 +02:00
|
|
|
for plugin in GSTREAMER_PLUGINS:
|
|
|
|
FixPlugin(FindGstreamerPlugin(plugin), 'gstreamer')
|
|
|
|
|
|
|
|
FixPlugin(FindGstreamerPlugin('gst-plugin-scanner'), '.')
|
2010-03-01 13:13:11 +01:00
|
|
|
|
|
|
|
for plugin in QT_PLUGINS:
|
|
|
|
FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin))
|
|
|
|
|
|
|
|
print 'Would run %d commands:' % len(commands)
|
|
|
|
for command in commands:
|
|
|
|
print ' '.join(command)
|
|
|
|
|
2010-04-15 21:09:39 +02:00
|
|
|
if len(sys.argv) <= 2:
|
|
|
|
print 'OK?'
|
|
|
|
raw_input()
|
2010-03-01 13:13:11 +01:00
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
p = subprocess.Popen(command)
|
|
|
|
os.waitpid(p.pid, 0)
|