root / pykota / trunk / setup.py @ 3008

Revision 3005, 5.9 kB (checked in by jerome, 18 years ago)

Now ensures that the permissions on /usr/share/pykota/cupspykota
are correctly set for CUPS 1.2 and higher.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3#
4# PyKota
5#
6# PyKota : Print Quotas for CUPS and LPRng
7#
8# (c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com>
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22#
23# $Id$
24#
25#
26
27import sys
28import glob
29import os
30import stat
31import shutil
32try :
33    from distutils.core import setup
34    from distutils.command.install_data import install_data
35except ImportError, msg :   
36    sys.stderr.write("%s\n" % msg)
37    sys.stderr.write("You need the DistUtils Python module.\nunder Debian, you may have to install the python-dev package.\nOf course, YMMV.\n")
38    sys.exit(-1)
39
40sys.path.insert(0, "pykota")
41from pykota.version import __version__, __doc__
42
43data_files = []
44mofiles = glob.glob(os.sep.join(["po", "*", "*.mo"]))
45for mofile in mofiles :
46    lang = mofile.split(os.sep)[1]
47    directory = os.sep.join(["share", "locale", lang, "LC_MESSAGES"])
48    data_files.append((directory, [ mofile ]))
49   
50docdir = "share/doc/pykota"   
51docfiles = ["README", "FAQ", "SECURITY", "COPYING", "LICENSE", "CREDITS", "TODO", "NEWS"]
52data_files.append((docdir, docfiles))
53
54docfiles = glob.glob(os.sep.join(["docs", "*.pdf"]))
55docfiles += glob.glob(os.sep.join(["docs", "*.sx?"]))
56data_files.append((docdir, docfiles))
57
58docfiles = glob.glob(os.sep.join(["docs", "spanish", "*.pdf"]))
59docfiles += glob.glob(os.sep.join(["docs", "spanish", "*.sxw"]))
60data_files.append((os.path.join(docdir, "spanish"), docfiles))
61
62docfiles = glob.glob(os.sep.join(["docs", "pykota", "*.html"]))
63data_files.append((os.path.join(docdir, "html"), docfiles))
64
65docfiles = glob.glob(os.sep.join(["openoffice", "*.sx?"]))
66docfiles += glob.glob(os.sep.join(["openoffice", "*.png"]))
67docfiles += glob.glob(os.sep.join(["openoffice", "README"]))
68data_files.append((os.path.join(docdir, "openoffice"), docfiles))
69
70directory = os.sep.join(["share", "man", "man1"])
71manpages = glob.glob(os.sep.join(["man", "*.1"]))   
72data_files.append((directory, manpages))
73
74modirs = [ os.path.split(os.path.split(mof)[0])[1] for mof in mofiles ]
75for dir in modirs :
76    directory = os.sep.join(["share", "man", dir, "man1"])
77    manpages = glob.glob(os.sep.join(["man", dir, "*.1"]))   
78    data_files.append((directory, manpages))
79
80directory = os.sep.join(["share", "pykota"])
81data_files.append((directory, ["checkdeps.py", "bin/cupspykota", \
82                               "bin/waitprinter.sh", \
83                               "bin/papwaitprinter.sh", \
84                               "bin/mailandpopup.sh", \
85                               "contributed/pagecount.pl", \
86                               "contributed/dump_bfd.php", \
87                               "untested/pjl/pagecount.pjl", \
88                               "untested/pjl/status.pjl", \
89                               "untested/netatalk/netatalk.sh", \
90                               "untested/netatalk/pagecount.ps"]))
91
92data_files.append((os.sep.join([directory, "conf"]), ["conf/README", "conf/pykota.conf.sample", "conf/pykotadmin.conf.sample"]))
93
94data_files.append((os.sep.join([directory, "cgi-bin"]), ["cgi-bin/README", "cgi-bin/printquota.cgi", "cgi-bin/dumpykota.cgi", "cgi-bin/pykotme.cgi"]))
95
96data_files.append((os.sep.join([directory, "logos"]), glob.glob(os.sep.join(["logos", "*.jpeg"])) + glob.glob(os.sep.join(["logos", "*.png"])) + glob.glob(os.sep.join(["logos", "*.xcf"]))))
97
98data_files.append((os.sep.join([directory, "stylesheets"]), glob.glob(os.sep.join(["stylesheets", "*.css"])) + [ "stylesheets/README" ]))
99
100pgdirectory = os.sep.join([directory, "postgresql"])
101data_files.append((pgdirectory, ["initscripts/postgresql/README.postgresql", "initscripts/postgresql/pykota-postgresql.sql"]))
102
103ldapdirectory = os.sep.join([directory, "ldap"])
104data_files.append((ldapdirectory, ["initscripts/ldap/README.ldap", "initscripts/ldap/pykota.schema", "initscripts/ldap/pykota-sample.ldif"]))
105
106mysqldirectory = os.sep.join([directory, "mysql"])
107data_files.append((mysqldirectory, ["initscripts/mysql/README.mysql", "initscripts/mysql/pykota-mysql.sql"]))
108
109sqlitedirectory = os.sep.join([directory, "sqlite"])
110data_files.append((sqlitedirectory, ["initscripts/sqlite/README.sqlite", "initscripts/sqlite/pykota-sqlite.sql"]))
111
112class MyInstallData(install_data) :
113    """A special class to ensure permissions are OK on the cupspykota backend."""
114    def run(self) :
115        """Launches the normal installation and then tweaks permissions."""
116        install_data.run(self)
117        if not self.dry_run :
118            cupspykota = [ filename for filename in self.get_outputs() if filename.endswith("cupspykota") ][0]
119            os.chmod(cupspykota, stat.S_IRWXU)
120   
121os.umask(022)
122setup(name = "pykota", version = __version__,
123      license = "GNU GPL",
124      description = __doc__,
125      author = "Jerome Alet",
126      author_email = "alet@librelogiciel.com",
127      url = "http://www.pykota.com",
128      packages = [ "pykota", "pykota.storages", "pykota.loggers", "pykota.accounters", "pykota.reporters" ],
129      scripts = [ "bin/pknotify", "bin/pkusers", "bin/pkinvoice", "bin/pykoef", \
130                  "bin/pkturnkey", "bin/pkbcodes", "bin/pkmail", \
131                  "bin/pkbanner", "bin/autopykota", "bin/dumpykota", \
132                  "bin/pykosd", "bin/edpykota", "bin/repykota", \
133                  "bin/warnpykota", "bin/pykotme", "bin/pkprinters" ],
134      data_files = data_files,
135      cmdclass = { "install_data" : MyInstallData })
Note: See TracBrowser for help on using the browser.