Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2005-04-16 22:25:42 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2005-04-16 22:25:42 +0400
commitfa5d910f93c0cb279f5a41af9cc3d36d53f8c94f (patch)
tree86202b41c7d56d2b1fc857f2693de8e0f129f478 /release/windows
parentdfe3ad0d7bb09129adee4eb27a7367ae6c40b54e (diff)
Updating build systems: folder release/bpydata/ moved to release/scripts/bpydata/
It seemed trivial enough, so I updated all systems (makefiles, xcode, scons, scons win installer), please complain if something went wrong. Mostly it was just removing release/bpydata references, since the release/scripts dir is already worked on recursevely, handling dirs inside it. For the scons nsi file writer script I had to write code for each new dir, but it can be recoded recursively, too (in fact joining all release stuff in a single dir tree with nothing else would be a good idea, making installation code simpler). Since it's just python and I have a little more time now, I can help scons managers if they still need. Thanks Campbell Barton for reporting.
Diffstat (limited to 'release/windows')
-rw-r--r--release/windows/installer/00.blender.nsi32
-rw-r--r--release/windows/installer/00.sconsblender.nsi12
2 files changed, 30 insertions, 14 deletions
diff --git a/release/windows/installer/00.blender.nsi b/release/windows/installer/00.blender.nsi
index 24c7c472e41..8666ed812b3 100644
--- a/release/windows/installer/00.blender.nsi
+++ b/release/windows/installer/00.blender.nsi
@@ -265,11 +265,13 @@ Section "Blender-VERSION (required)" SecCopyUI
File DISTDIR\.blender\scripts\bvh_export.py
File DISTDIR\.blender\scripts\bvh_import.py
File DISTDIR\.blender\scripts\clean_mesh.py
+ File DISTDIR\.blender\scripts\config.py
File DISTDIR\.blender\scripts\DirectX8Exporter.py
File DISTDIR\.blender\scripts\DirectXExporter.py
File DISTDIR\.blender\scripts\disp_paint.py
File DISTDIR\.blender\scripts\doc_browser.py
File DISTDIR\.blender\scripts\fixfromarmature.py
+ File DISTDIR\.blender\scripts\help_browser.py
File DISTDIR\.blender\scripts\help_getting_started.py
File DISTDIR\.blender\scripts\help_manual.py
File DISTDIR\.blender\scripts\help_py_reference.py
@@ -284,12 +286,6 @@ Section "Blender-VERSION (required)" SecCopyUI
File DISTDIR\.blender\scripts\knife.py
File DISTDIR\.blender\scripts\lightwave_export.py
File DISTDIR\.blender\scripts\lightwave_import.py
- File DISTDIR\.blender\scripts\mod_ai2obj.py
- File DISTDIR\.blender\scripts\mod_blender.py
- File DISTDIR\.blender\scripts\mod_eps2obj.py
- File DISTDIR\.blender\scripts\mod_gimp2obj.py
- File DISTDIR\.blender\scripts\mod_meshtools.py
- File DISTDIR\.blender\scripts\mod_svg2obj.py
File DISTDIR\.blender\scripts\nendo_export.py
File DISTDIR\.blender\scripts\nendo_import.py
File DISTDIR\.blender\scripts\obdatacopier.py
@@ -304,6 +300,7 @@ Section "Blender-VERSION (required)" SecCopyUI
File DISTDIR\.blender\scripts\raw_import.py
File DISTDIR\.blender\scripts\renameobjectbyblock.py
File DISTDIR\.blender\scripts\rvk1_torvk2.py
+ File DISTDIR\.blender\scripts\save_theme.py
File DISTDIR\.blender\scripts\sel_same.py
File DISTDIR\.blender\scripts\skin.py
File DISTDIR\.blender\scripts\slp_import.py
@@ -311,16 +308,27 @@ Section "Blender-VERSION (required)" SecCopyUI
File DISTDIR\.blender\scripts\tex2uvbaker.py
File DISTDIR\.blender\scripts\truespace_export.py
File DISTDIR\.blender\scripts\truespace_import.py
- File DISTDIR\.blender\scripts\unweld044.py
+ File DISTDIR\.blender\scripts\unweld.py
File DISTDIR\.blender\scripts\uv_export.py
File DISTDIR\.blender\scripts\UVpaint05.py
File DISTDIR\.blender\scripts\videoscape_export.py
+ File DISTDIR\.blender\scripts\vrml97_export.py
File DISTDIR\.blender\scripts\wings_export.py
File DISTDIR\.blender\scripts\wings_import.py
File DISTDIR\.blender\scripts\wrl2export.py
- SetOutPath $BLENDERHOME\.blender\bpydata
- File DISTDIR\.blender\bpydata\readme.txt
- File DISTDIR\.blender\bpydata\KUlang.txt
+ SetOutPath $BLENDERHOME\.blender\scripts\bpymodules
+ File DISTDIR\.blender\scripts\bpymodules\ai2obj.py
+ File DISTDIR\.blender\scripts\bpymodules\BPyBlender.py
+ File DISTDIR\.blender\scripts\bpymodules\BPyRegistry.py
+ File DISTDIR\.blender\scripts\bpymodules\eps2obj.py
+ File DISTDIR\.blender\scripts\bpymodules\gimp2obj.py
+ File DISTDIR\.blender\scripts\bpymodules\meshtools.py
+ File DISTDIR\.blender\scripts\bpymodules\svg2obj.py
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata
+ File DISTDIR\.blender\scripts\bpydata\readme.txt
+ File DISTDIR\.blender\scripts\bpydata\KUlang.txt
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata\config
+ File DISTDIR\.blender\scripts\bpydata\config\readme.txt
; Additional Languages files
SetOutPath $BLENDERHOME\.blender
@@ -424,7 +432,9 @@ Section "Uninstall"
; remove directories used.
RMDir /r $INSTDIR\.blender\locale
RMDir /r $INSTDIR\.blender\scripts
- RMDir /r $INSTDIR\.blender\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpydata\config
+ RMDir /r $INSTDIR\.blender\scripts\bpymodules
RMDir $INSTDIR\.blender
RMDir "$SMPROGRAMS\Blender Foundation\Blender"
RMDir "$SMPROGRAMS\Blender Foundation"
diff --git a/release/windows/installer/00.sconsblender.nsi b/release/windows/installer/00.sconsblender.nsi
index b6dd8f4c4b4..4bbea68c62f 100644
--- a/release/windows/installer/00.sconsblender.nsi
+++ b/release/windows/installer/00.sconsblender.nsi
@@ -244,8 +244,12 @@ Section "Blender-VERSION (required)" SecCopyUI
SetOutPath $BLENDERHOME\.blender\scripts
[SCRIPTCONTS]
- SetOutPath $BLENDERHOME\.blender\bpydata
- [BPYCONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpymodules
+ [SCRIPTMODCONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata
+ [SCRIPTDATACONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata\config
+ [SCRIPTDATACFGCONTS]
; Language files
[LANGUAGECONTS]
@@ -306,7 +310,9 @@ Section "Uninstall"
; remove directories used.
RMDir /r $INSTDIR\.blender\locale
RMDir /r $INSTDIR\.blender\scripts
- RMDir /r $INSTDIR\.blender\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpymodules
+ RMDir /r $INSTDIR\.blender\scripts\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpydata\config
RMDir $INSTDIR\.blender
RMDir "$SMPROGRAMS\Blender Foundation\Blender"
RMDir "$SMPROGRAMS\Blender Foundation"