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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-07-15 23:58:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-15 23:58:23 +0400
commit7fc9eee08afe87f3f688e8b9e9442951d6a08590 (patch)
tree917bc9f6222c231e050eda9f4d3a01a52beef4f6 /doc
parent7a3ff665752e04fa20285fb82a4ddbcf34c12835 (diff)
- updated man page from --help output.
- cmake now installs the man page. - added cmake_linux_install.sh, shell script which downloads and builds blender.
Diffstat (limited to 'doc')
-rw-r--r--doc/blender.114
-rw-r--r--doc/blender.1.py4
2 files changed, 11 insertions, 7 deletions
diff --git a/doc/blender.1 b/doc/blender.1
index 43ac5638765..dd5e60ff900 100644
--- a/doc/blender.1
+++ b/doc/blender.1
@@ -1,4 +1,4 @@
-.TH "BLENDER" "1" "June 27, 2010" "Blender Blender 2\&.52 (sub 5) "
+.TH "BLENDER" "1" "July 15, 2010" "Blender Blender 2\&.52 (sub 5) "
.SH NAME
blender \- a 3D modelling and rendering package
@@ -317,11 +317,13 @@ Arguments are executed in the order they are given. eg
.br
.br
.SH "ENVIRONMENT VARIABLES"
- \fIHOME\fR Store files such as .blender/ .B.blend .Bfs .Blog here.
- \fIBLENDERPATH\fR System directory to use for data files and scripts.
- For this build of blender the default \fIBLENDERPATH\fR is...
- "/usr/local/share/blender/2.5"
- setting the \fIBLENDERPATH\fR will override this
+ \fIBLENDER_USER_CONFIG\fR Directory for user configuration files.
+ \fIBLENDER_SYSTEM_CONFIG\fR Directory for system wide configuration files.
+ \fIBLENDER_USER_SCRIPTS\fR Directory for user scripts.
+ \fIBLENDER_SYSTEM_SCRIPTS\fR Directory for system wide scripts.
+ \fIBLENDER_USER_DATAFILES\fR Directory for user data files (icons, translations, ..).
+ \fIBLENDER_SYSTEM_DATAFILES\fR Directory for system wide data files.
+ \fIBLENDER_SYSTEM_PYTHON\fR Directory for system python libraries.
\fITMP\fR or \fITMPDIR\fR Store temporary files here.
\fIPYTHONHOME\fR Path to the python directory, eg. /usr/lib/python.
.br
diff --git a/doc/blender.1.py b/doc/blender.1.py
index 05b491cf21e..7c7fc987c64 100644
--- a/doc/blender.1.py
+++ b/doc/blender.1.py
@@ -53,7 +53,7 @@ blender_version = blender_version.split("Build")[0]
date_string = datetime.date.fromtimestamp(time.time()).strftime("%B %d, %Y")
-filepath = os.path.splitext(__file__)[0] + ".1"
+filepath = os.path.splitext(__file__)[0]
file = open(filepath, "w")
@@ -132,3 +132,5 @@ This manpage was written for a Debian GNU/Linux system by Daniel Mester
<mester@uni-bremen.de> and updated by Cyril Brulebois
<cyril.brulebois@enst-bretagne.fr> and Dan Eicher <dan@trollwerks.org>.
''')
+
+print("written:", filepath)