/[papo]/gnue/setup-cvs.py
ViewVC logotype

Diff of /gnue/setup-cvs.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by styxman, Thu Nov 14 20:54:38 2002 UTC revision 1.6.2.1 by anthonyl, Tue Mar 4 22:33:13 2003 UTC
# Line 1  Line 1 
1  #!/usr/bin/env python  #!/usr/bin/env python
2    #
3    # Copyright 2001-2003 Free Software Foundation
4    #
5    # This file is part of GNU Enterprise.
6    #
7    # GNU Enterprise is free software; you can redistribute it
8    # and/or modify it under the terms of the GNU General Public
9    # License as published by the Free Software Foundation; either
10    # version 2, or (at your option) any later version.
11    #
12    # GNU Enterprise is distributed in the hope that it will be
13    # useful, but WITHOUT ANY WARRANTY; without even the implied
14    # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    # PURPOSE. See the GNU General Public License for more details.
16    #
17    # You should have received a copy of the GNU General Public
18    # License along with program; see the file COPYING. If not,
19    # write to the Free Software Foundation, Inc., 59 Temple Place
20    # - Suite 330, Boston, MA 02111-1307, USA.
21    #
22    
23  import sys, string, os, glob  import sys, string, os, glob
24    
# Line 342  if os.path.isdir(os.path.join(GNUEDIR,'g Line 362  if os.path.isdir(os.path.join(GNUEDIR,'g
362  os.makedirs('%s/gnue' % GNUEDIR)  os.makedirs('%s/gnue' % GNUEDIR)
363  os.system ("""  os.system ("""
364      cd %(GNUEDIR)s      cd %(GNUEDIR)s
     mkdir designer  
     mkdir reports  
     mkdir appserver  
365      ln -s %(CVSDIR)s/common/module/base/__init__.py .      ln -s %(CVSDIR)s/common/module/base/__init__.py .
366      ln -s %(CVSDIR)s/common/src common      ln -s %(CVSDIR)s/common/src common
367      if [ -f %(CVSDIR)s/common/src/.GDTD.py ]; then rm -f %(CVSDIR)s/common/src/.GDTD.py; fi      if [ -f %(CVSDIR)s/common/src/.GDTD.py ]; then rm -f %(CVSDIR)s/common/src/.GDTD.py; fi
368      ln -s %(CVSDIR)s/common/scripts/gnuedtd %(CVSDIR)s/common/src/.GDTD.py      ln -s %(CVSDIR)s/common/scripts/gnuedtd %(CVSDIR)s/common/src/.GDTD.py
369        ln -s %(CVSDIR)s/designer/src designer
370      ln -s %(CVSDIR)s/forms/src forms      ln -s %(CVSDIR)s/forms/src forms
371        ln -s %(CVSDIR)s/reports/src reports
372      ln -s %(CVSDIR)s/navigator/src navigator      ln -s %(CVSDIR)s/navigator/src navigator
373      cd designer      ln -s %(CVSDIR)s/integrator/src integrator
374      ln -s %(CVSDIR)s/designer/src/* .      ln -s %(CVSDIR)s/appserver/src appserver
     ln -s %(CVSDIR)s/designer/templates templates  
     cd ../reports  
     ln -s %(CVSDIR)s/reports/src/* .  
     ln -s %(CVSDIR)s/reports/filters filters  
     cd ../appserver  
     ln -s %(CVSDIR)s/appserver/src/* .    
375    
376  """ % globals() )  """ % globals() )
377    
# Line 369  rm -f sample.* Line 382  rm -f sample.*
382  ln -s %(CVSDIR)s/common/etc/sample.* .  ln -s %(CVSDIR)s/common/etc/sample.* .
383    
384  cd %(CONFDIR)s/shared  cd %(CONFDIR)s/shared
385  rm -f images filters  rm -rf images filters
386    mkdir filters
387    
388  cd %(CONFDIR)s/shared/grpc  cd %(CONFDIR)s/shared/grpc
389  rm -f GEAS.grpc GRServer.grpc  rm -f GEAS.grpc GRServer.grpc
390    
391  ln -s %(CVSDIR)s/common/images %(CONFDIR)s/shared/images  ln -s %(CVSDIR)s/common/images %(CONFDIR)s/shared/images
392  ln -s %(CVSDIR)s/reports/filters %(CONFDIR)s/shared/filters  ln -s %(CVSDIR)s/reports/src/adapters/filters/Labels/etc %(CONFDIR)s/shared/filters/Labels
393    ln -s %(CVSDIR)s/reports/src/adapters/filters/SimpleTabulation/etc %(CONFDIR)s/shared/filters/SimpleTabulation
394    
395  ln -s %(CVSDIR)s/appserver/grpc/GEAS.grpc %(CONFDIR)s/shared/grpc/GEAS.grpc  ln -s %(CVSDIR)s/appserver/grpc/GEAS.grpc %(CONFDIR)s/shared/grpc/GEAS.grpc
396  ln -s %(CVSDIR)s/reports/grpc/GRServer.grpc %(CONFDIR)s/shared/grpc/GRServer.grpc  ln -s %(CVSDIR)s/reports/grpc/GRServer.grpc %(CONFDIR)s/shared/grpc/GRServer.grpc
397    
# Line 387  ln -s %(CVSDIR)s/common/translations/??_ Line 403  ln -s %(CVSDIR)s/common/translations/??_
403    
404    
405  createCVS ('forms/scripts','gfcvs','forms/GFClient.py')  createCVS ('forms/scripts','gfcvs','forms/GFClient.py')
406  createCVS ('reports/scripts','grcvs','reports/GRRun.py')  createCVS ('reports/scripts','grcvs','reports/client/GRRun.py')
407  createCVS ('reports/scripts','grdcvs','reports/GRServer.py')  createCVS ('reports/scripts','grdcvs','reports/server/GRServer.py')
408  createCVS ('designer/scripts','gfdes','designer/Designer.py')  createCVS ('designer/scripts','gfdes','designer/Designer.py')
409  createCVS ('navigator/scripts','gncvs','navigator/GNClient.py')  createCVS ('navigator/scripts','gncvs','navigator/GNClient.py')
410    createCVS ('integrator/scripts','gicvs','integrator/GIClient.py')
411  createCVS ('common/scripts','grpcdoc','common/commdrivers/_helpers/RpcDoc.py')  createCVS ('common/scripts','grpcdoc','common/commdrivers/_helpers/RpcDoc.py')
412  createCVS ('common/scripts','gtestcvs','common/GTest.py')  createCVS ('common/scripts','gtestcvs','common/GTest.py')
413  createCVS ('common/scripts','gdtdcvs','common/.GDTD.py')  createCVS ('common/scripts','gdtdcvs','common/.GDTD.py')
414    createCVS ('common/scripts','gsscvs','common/schema/scripter/Scripter.py')
415  createCVS ('common/scripts','gcvs','')  createCVS ('common/scripts','gcvs','')
416  createCVS ('appserver/scripts','gacvs','appserver/geasRpcServer.py')  createCVS ('appserver/scripts','gacvs','appserver/geasRpcServer.py')
417    

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.6.2.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26