Changeset 1307 for pykota/trunk/setup.py

Show
Ignore:
Timestamp:
01/18/04 21:52:50 (20 years ago)
Author:
jalet
Message:

Portuguese portuguese translation replaces brasilian portuguese one, which
moves in its own directory.
Installation script modified to reorganise installed documentation and include
the documentation on OpenOffice?.org + ODBC

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/setup.py

    r1297 r1307  
    2424# 
    2525# $Log$ 
     26# Revision 1.32  2004/01/18 20:52:50  jalet 
     27# Portuguese portuguese translation replaces brasilian portuguese one, which 
     28# moves in its own directory. 
     29# Installation script modified to reorganise installed documentation and include 
     30# the documentation on OpenOffice.org + ODBC 
     31# 
    2632# Revision 1.31  2004/01/15 12:50:41  jalet 
    2733# Installation scripts now tells where the documentation was installed. 
     
    345351     
    346352docdir = "/usr/share/doc/pykota"     
    347 docfiles = ["README", "FAQ", "SECURITY", "COPYING", "LICENSE", "CREDITS", "TODO", "NEWS"] + glob.glob(os.sep.join(["docs", "*.pdf"])) + glob.glob(os.sep.join(["docs", "pykota", "*.html"])) 
     353docfiles = ["README", "FAQ", "SECURITY", "COPYING", "LICENSE", "CREDITS", "TODO", "NEWS"] 
    348354data_files.append((docdir, docfiles)) 
     355 
     356docfiles = glob.glob(os.sep.join(["docs", "*.pdf"])) 
     357data_files.append((docdir, docfiles)) 
     358 
     359docfiles = glob.glob(os.sep.join(["docs", "spanish", "*.pdf"])) 
     360docfiles += glob.glob(os.sep.join(["docs", "spanish", "*.sxw"])) 
     361data_files.append((os.path.join(docdir, "spanish"), docfiles)) 
     362 
     363docfiles = glob.glob(os.sep.join(["docs", "pykota", "*.html"])) 
     364data_files.append((os.path.join(docdir, "html"), docfiles)) 
     365 
     366docfiles = glob.glob(os.sep.join(["openoffice", "*.sxw"])) 
     367docfiles += glob.glob(os.sep.join(["openoffice", "*.png"])) 
     368docfiles += glob.glob(os.sep.join(["openoffice", "README"])) 
     369data_files.append((os.path.join(docdir, "openoffice"), docfiles)) 
    349370 
    350371directory = os.sep.join(["share", "man", "man1"])