Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
f8989216
Commit
f8989216
authored
10 years ago
by
Nat Goodspeed
Browse files
Options
Downloads
Patches
Plain Diff
Attempt to restore copying newly-built SLPlugin et al. - UNTESTED
parent
ab9e8303
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/viewer_manifest.py
+74
-43
74 additions, 43 deletions
indra/newview/viewer_manifest.py
with
74 additions
and
43 deletions
indra/newview/viewer_manifest.py
+
74
−
43
View file @
f8989216
...
@@ -340,9 +340,9 @@ def construct(self):
...
@@ -340,9 +340,9 @@ def construct(self):
self
.
path
(
src
=
'
%s/secondlife-bin.exe
'
%
self
.
args
[
'
configuration
'
],
dst
=
self
.
final_exe
())
self
.
path
(
src
=
'
%s/secondlife-bin.exe
'
%
self
.
args
[
'
configuration
'
],
dst
=
self
.
final_exe
())
# Plugin host application
# Plugin host application
# The current slplugin package places slplugin.exe right into the
self
.
path2basename
(
os
.
path
.
join
(
os
.
pardir
,
# packages base directory.
'
llplugin
'
,
'
slplugin
'
,
self
.
args
[
'
configuration
'
]),
self
.
path2basename
(
pkgdir
,
"
slplugin.exe
"
)
"
slplugin.exe
"
)
self
.
path2basename
(
"
../viewer_components/updater/scripts/windows
"
,
"
update_install.bat
"
)
self
.
path2basename
(
"
../viewer_components/updater/scripts/windows
"
,
"
update_install.bat
"
)
# Get shared libs from the shared libs staging directory
# Get shared libs from the shared libs staging directory
...
@@ -424,16 +424,63 @@ def construct(self):
...
@@ -424,16 +424,63 @@ def construct(self):
self
.
path
(
"
featuretable_xp.txt
"
)
self
.
path
(
"
featuretable_xp.txt
"
)
# Media plugins - QuickTime
# Media plugins - QuickTime
# Media plugins - WebKit/Qt
if
self
.
prefix
(
src
=
'
../media_plugins/quicktime/%s
'
%
self
.
args
[
'
configuration
'
],
dst
=
"
llplugin
"
):
if
self
.
prefix
(
src
=
os
.
path
.
join
(
pkgdir
,
"
llplugin
"
),
dst
=
"
llplugin
"
):
self
.
path
(
"
media_plugin_quicktime.dll
"
)
self
.
path
(
"
media_plugin_quicktime.dll
"
)
self
.
end_prefix
()
# Media plugins - WebKit/Qt
if
self
.
prefix
(
src
=
'
../media_plugins/webkit/%s
'
%
self
.
args
[
'
configuration
'
],
dst
=
"
llplugin
"
):
self
.
path
(
"
media_plugin_webkit.dll
"
)
self
.
path
(
"
media_plugin_webkit.dll
"
)
self
.
path
(
"
qtcore4.dll
"
)
self
.
end_prefix
()
self
.
path
(
"
qtgui4.dll
"
)
self
.
path
(
"
qtnetwork4.dll
"
)
# winmm.dll shim
self
.
path
(
"
qtopengl4.dll
"
)
if
self
.
prefix
(
src
=
'
../media_plugins/winmmshim/%s
'
%
self
.
args
[
'
configuration
'
],
dst
=
""
):
self
.
path
(
"
qtwebkit4.dll
"
)
self
.
path
(
"
winmm.dll
"
)
self
.
path
(
"
qtxmlpatterns4.dll
"
)
self
.
end_prefix
()
if
self
.
args
[
'
configuration
'
].
lower
()
==
'
debug
'
:
if
self
.
prefix
(
src
=
os
.
path
.
join
(
os
.
pardir
,
'
packages
'
,
'
lib
'
,
'
debug
'
),
dst
=
"
llplugin
"
):
self
.
path
(
"
libeay32.dll
"
)
self
.
path
(
"
qtcored4.dll
"
)
self
.
path
(
"
qtguid4.dll
"
)
self
.
path
(
"
qtnetworkd4.dll
"
)
self
.
path
(
"
qtopengld4.dll
"
)
self
.
path
(
"
qtwebkitd4.dll
"
)
self
.
path
(
"
qtxmlpatternsd4.dll
"
)
self
.
path
(
"
ssleay32.dll
"
)
# For WebKit/Qt plugin runtimes (image format plugins)
if
self
.
prefix
(
src
=
"
imageformats
"
,
dst
=
"
imageformats
"
):
self
.
path
(
"
qgifd4.dll
"
)
self
.
path
(
"
qicod4.dll
"
)
self
.
path
(
"
qjpegd4.dll
"
)
self
.
path
(
"
qmngd4.dll
"
)
self
.
path
(
"
qsvgd4.dll
"
)
self
.
path
(
"
qtiffd4.dll
"
)
self
.
end_prefix
()
# For WebKit/Qt plugin runtimes (codec/character encoding plugins)
if
self
.
prefix
(
src
=
"
codecs
"
,
dst
=
"
codecs
"
):
self
.
path
(
"
qcncodecsd4.dll
"
)
self
.
path
(
"
qjpcodecsd4.dll
"
)
self
.
path
(
"
qkrcodecsd4.dll
"
)
self
.
path
(
"
qtwcodecsd4.dll
"
)
self
.
end_prefix
()
self
.
end_prefix
()
else
:
if
self
.
prefix
(
src
=
os
.
path
.
join
(
os
.
pardir
,
'
packages
'
,
'
lib
'
,
'
release
'
),
dst
=
"
llplugin
"
):
self
.
path
(
"
libeay32.dll
"
)
self
.
path
(
"
qtcore4.dll
"
)
self
.
path
(
"
qtgui4.dll
"
)
self
.
path
(
"
qtnetwork4.dll
"
)
self
.
path
(
"
qtopengl4.dll
"
)
self
.
path
(
"
qtwebkit4.dll
"
)
self
.
path
(
"
qtxmlpatterns4.dll
"
)
self
.
path
(
"
ssleay32.dll
"
)
# For WebKit/Qt plugin runtimes (image format plugins)
# For WebKit/Qt plugin runtimes (image format plugins)
if
self
.
prefix
(
src
=
"
imageformats
"
,
dst
=
"
imageformats
"
):
if
self
.
prefix
(
src
=
"
imageformats
"
,
dst
=
"
imageformats
"
):
...
@@ -455,23 +502,6 @@ def construct(self):
...
@@ -455,23 +502,6 @@ def construct(self):
self
.
end_prefix
()
self
.
end_prefix
()
# winmm.dll shim
if
self
.
prefix
(
src
=
'
../media_plugins/winmmshim/%s
'
%
self
.
args
[
'
configuration
'
],
dst
=
""
):
self
.
path
(
"
winmm.dll
"
)
self
.
end_prefix
()
if
self
.
args
[
'
configuration
'
].
lower
()
==
'
debug
'
:
if
self
.
prefix
(
src
=
debpkgdir
,
dst
=
"
llplugin
"
):
self
.
path
(
"
libeay32.dll
"
)
self
.
path
(
"
ssleay32.dll
"
)
self
.
end_prefix
()
else
:
if
self
.
prefix
(
src
=
relpkgdir
,
dst
=
"
llplugin
"
):
self
.
path
(
"
libeay32.dll
"
)
self
.
path
(
"
ssleay32.dll
"
)
self
.
end_prefix
()
# pull in the crash logger and updater from other projects
# pull in the crash logger and updater from other projects
# tag:"crash-logger" here as a cue to the exporter
# tag:"crash-logger" here as a cue to the exporter
self
.
path
(
src
=
'
../win_crash_logger/%s/windows-crash-logger.exe
'
%
self
.
args
[
'
configuration
'
],
self
.
path
(
src
=
'
../win_crash_logger/%s/windows-crash-logger.exe
'
%
self
.
args
[
'
configuration
'
],
...
@@ -735,14 +765,13 @@ def path_optional(src, dst):
...
@@ -735,14 +765,13 @@ def path_optional(src, dst):
dylibs
+=
path_optional
(
os
.
path
.
join
(
relpkgdir
,
libfile
),
libfile
)
dylibs
+=
path_optional
(
os
.
path
.
join
(
relpkgdir
,
libfile
),
libfile
)
# our apps
# our apps
for
app_bld_dir
,
app
in
((
os
.
path
.
join
(
os
.
pardir
,
for
app_bld_dir
,
app
in
((
"
mac_crash_logger
"
,
"
mac-crash-logger.app
"
),
"
mac_crash_logger
"
,
self
.
args
[
'
configuration
'
]),
"
mac-crash-logger.app
"
),
# plugin launcher
# plugin launcher
(
pkgdir
,
"
SLPlugin.app
"
),
(
os
.
path
.
join
(
"
llplugin
"
,
"
slplugin
"
)
,
"
SLPlugin.app
"
),
):
):
self
.
path2basename
(
app_bld_dir
,
app
)
self
.
path2basename
(
os
.
path
.
join
(
os
.
pardir
,
app_bld_dir
,
self
.
args
[
'
configuration
'
]),
app
)
# our apps dependencies on shared libs
# our apps dependencies on shared libs
# for each app, for each dylib we collected in dylibs,
# for each app, for each dylib we collected in dylibs,
...
@@ -776,19 +805,21 @@ def path_optional(src, dst):
...
@@ -776,19 +805,21 @@ def path_optional(src, dst):
# Qt4 codecs go to llplugin. Not certain why but this is the first
# Qt4 codecs go to llplugin. Not certain why but this is the first
# location probed according to dtruss so we'll go with that.
# location probed according to dtruss so we'll go with that.
if
self
.
prefix
(
src
=
os
.
path
.
join
(
pkgdir
,
"
ll
plugin/codecs/
"
)
,
dst
=
"
llplugin/codecs
"
):
if
self
.
prefix
(
src
=
"
../packages/
plugin
s
/codecs/
"
,
dst
=
"
llplugin/codecs
"
):
self
.
path
(
"
libq*.dylib
"
)
self
.
path
(
"
libq*.dylib
"
)
self
.
end_prefix
(
"
llplugin/codecs
"
)
self
.
end_prefix
(
"
llplugin/codecs
"
)
# Similarly for imageformats.
# Similarly for imageformats.
if
self
.
prefix
(
src
=
os
.
path
.
join
(
pkgdir
,
"
ll
plugin/imageformats/
"
)
,
dst
=
"
llplugin/imageformats
"
):
if
self
.
prefix
(
src
=
"
../packages/
plugin
s
/imageformats/
"
,
dst
=
"
llplugin/imageformats
"
):
self
.
path
(
"
libq*.dylib
"
)
self
.
path
(
"
libq*.dylib
"
)
self
.
end_prefix
(
"
llplugin/imageformats
"
)
self
.
end_prefix
(
"
llplugin/imageformats
"
)
# SLPlugin plugins proper
# SLPlugin plugins proper
if
self
.
prefix
(
src
=
os
.
path
.
join
(
pkgdir
,
"
llplugin
"
),
dst
=
"
llplugin
"
):
if
self
.
prefix
(
src
=
""
,
dst
=
"
llplugin
"
):
self
.
path
(
"
media_plugin_quicktime.dylib
"
)
self
.
path2basename
(
"
../media_plugins/quicktime/
"
+
self
.
args
[
'
configuration
'
],
self
.
path
(
"
media_plugin_webkit.dylib
"
)
"
media_plugin_quicktime.dylib
"
)
self
.
path2basename
(
"
../media_plugins/webkit/
"
+
self
.
args
[
'
configuration
'
],
"
media_plugin_webkit.dylib
"
)
self
.
end_prefix
(
"
llplugin
"
)
self
.
end_prefix
(
"
llplugin
"
)
self
.
end_prefix
(
"
Resources
"
)
self
.
end_prefix
(
"
Resources
"
)
...
@@ -981,7 +1012,7 @@ def construct(self):
...
@@ -981,7 +1012,7 @@ def construct(self):
if
self
.
prefix
(
src
=
""
,
dst
=
"
bin
"
):
if
self
.
prefix
(
src
=
""
,
dst
=
"
bin
"
):
self
.
path
(
"
secondlife-bin
"
,
"
do-not-directly-run-secondlife-bin
"
)
self
.
path
(
"
secondlife-bin
"
,
"
do-not-directly-run-secondlife-bin
"
)
self
.
path
(
"
../linux_crash_logger/linux-crash-logger
"
,
"
linux-crash-logger.bin
"
)
self
.
path
(
"
../linux_crash_logger/linux-crash-logger
"
,
"
linux-crash-logger.bin
"
)
self
.
path2basename
(
pkgdir
,
"
SLPlugin
"
)
self
.
path2basename
(
"
../llplugin/slplugin
"
,
"
SLPlugin
"
)
self
.
path2basename
(
"
../viewer_components/updater/scripts/linux
"
,
"
update_install
"
)
self
.
path2basename
(
"
../viewer_components/updater/scripts/linux
"
,
"
update_install
"
)
self
.
end_prefix
(
"
bin
"
)
self
.
end_prefix
(
"
bin
"
)
...
@@ -1001,9 +1032,9 @@ def construct(self):
...
@@ -1001,9 +1032,9 @@ def construct(self):
self
.
end_prefix
(
icon_path
)
self
.
end_prefix
(
icon_path
)
# plugins
# plugins
if
self
.
prefix
(
src
=
os
.
path
.
join
(
pkgdir
,
"
llplugin
"
)
,
dst
=
"
bin/llplugin
"
):
if
self
.
prefix
(
src
=
""
,
dst
=
"
bin/llplugin
"
):
self
.
path
(
"
libmedia_plugin_webkit.so
"
)
self
.
path
2basename
(
"
../media_plugins/webkit
"
,
"
libmedia_plugin_webkit.so
"
)
self
.
path
(
"
libmedia_plugin_gstreamer.so
"
)
self
.
path
(
"
../media_plugins/gstreamer010/libmedia_plugin_gstreamer010.so
"
,
"
libmedia_plugin_gstreamer.so
"
)
self
.
end_prefix
(
"
bin/llplugin
"
)
self
.
end_prefix
(
"
bin/llplugin
"
)
# llcommon
# llcommon
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment