bump product version to 5.0.4.1
[LibreOffice.git] / pyuno / demo / pyunoenv.tcsh
blob653d72a38053bfe4353a0089cd1c927b2b3b0d09
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 # the path to the office installation (e.g. /home/joe/OpenOffice.org1.1Beta)
19 setenv OOOHOME /src4/OpenOffice.org1.1Beta2
21 # don't modify anything beyond these lines
22 #---------------------------------------------
23 setenv PYTHONHOME $OOOHOME/program/python
25 if( ! $?LD_LIBRARY_PATH ) then
26 setenv LD_LIBRARY_PATH
27 endif
29 if(! $?PYTHONPATH ) then
30 setenv PYTHONPATH
31 endif
33 if( ! $?LD_LIBRARY_PATH ) then
34 setenv LD_LIBRARY_PATH
35 endif
37 if( "$PYTHONPATH" != "" ) then
38 setenv PYTHONPATH $OOOHOME/program:$OOOHOME/program/pydemo:$OOOHOME/program/python/lib:$PYTHONPATH
39 else
40 setenv PYTHONPATH $OOOHOME/program:$OOOHOME/program/pydemo:$OOOHOME/program/python/lib
41 endif
43 setenv LD_LIBRARY_PATH $OOOHOME/program:$LD_LIBRARY_PATH
45 if( $?PYTHONHOME ) then
46 setenv PATH $PYTHONHOME/bin:$PATH
47 endif
49 # vim:set shiftwidth=4 softtabstop=4 expandtab: