diff options
author | Jacek Antonelli | 2008-11-30 16:32:43 -0600 |
---|---|---|
committer | Jacek Antonelli | 2008-11-30 16:32:43 -0600 |
commit | a630008d05e813d1fe5ceda5f8511b7aed8b543a (patch) | |
tree | ddd54ad50b479167a80dba5dc68b212820b16205 /linden/indra | |
parent | Disable llmozlib-dependent code when not available. (diff) | |
download | meta-impy-a630008d05e813d1fe5ceda5f8511b7aed8b543a.zip meta-impy-a630008d05e813d1fe5ceda5f8511b7aed8b543a.tar.gz meta-impy-a630008d05e813d1fe5ceda5f8511b7aed8b543a.tar.bz2 meta-impy-a630008d05e813d1fe5ceda5f8511b7aed8b543a.tar.xz |
Package up README.txt, etc. on Linux.
Diffstat (limited to 'linden/indra')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index be28809..bf2c5be 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -525,7 +525,7 @@ class DarwinManifest(ViewerManifest): | |||
525 | class LinuxManifest(ViewerManifest): | 525 | class LinuxManifest(ViewerManifest): |
526 | def construct(self): | 526 | def construct(self): |
527 | super(LinuxManifest, self).construct() | 527 | super(LinuxManifest, self).construct() |
528 | self.path("licenses-linux.txt","licenses.txt") | 528 | |
529 | self.path("res/imprudence_icon.png","imprudence_icon.png") | 529 | self.path("res/imprudence_icon.png","imprudence_icon.png") |
530 | if self.prefix("linux_tools", dst=""): | 530 | if self.prefix("linux_tools", dst=""): |
531 | self.path("client-readme.txt","README-linux.txt") | 531 | self.path("client-readme.txt","README-linux.txt") |
@@ -535,6 +535,29 @@ class LinuxManifest(ViewerManifest): | |||
535 | self.path("register_secondlifeprotocol.sh") | 535 | self.path("register_secondlifeprotocol.sh") |
536 | self.end_prefix("linux_tools") | 536 | self.end_prefix("linux_tools") |
537 | 537 | ||
538 | # Top level directory (imprudence) | ||
539 | if self.prefix("../../..", dst=""): | ||
540 | self.path("README.txt", "README-Imprudence.txt") | ||
541 | self.path("MANIFESTO.txt") | ||
542 | self.path("CONTRIBUTE.txt") | ||
543 | self.path("ChangeLog.txt") | ||
544 | self.end_prefix("../../..") | ||
545 | |||
546 | # linden directory | ||
547 | if self.prefix("../..", dst="doc"): | ||
548 | self.path("LICENSE-source.txt") | ||
549 | self.path("LICENSE-logos.txt","LICENSE-artwork.txt") | ||
550 | self.path("LICENSE-libraries-linux.txt") | ||
551 | self.end_prefix("../..") | ||
552 | |||
553 | # linden/doc directory | ||
554 | if self.prefix("../../doc", dst="doc"): | ||
555 | self.path("contributions.txt") | ||
556 | self.path("GPL-license.txt", "GPL.txt") | ||
557 | self.path("FLOSS-exception.txt") | ||
558 | self.end_prefix("../../doc") | ||
559 | |||
560 | |||
538 | # Create an appropriate gridargs.dat for this package, denoting required grid. | 561 | # Create an appropriate gridargs.dat for this package, denoting required grid. |
539 | self.put_in_file(self.flags_list(), 'gridargs.dat') | 562 | self.put_in_file(self.flags_list(), 'gridargs.dat') |
540 | 563 | ||