Changeset 3214 for pykota/trunk
- Timestamp:
- 07/24/07 10:04:08 (17 years ago)
- Location:
- pykota/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/debian/control
r3117 r3214 9 9 Architecture: all 10 10 Depends: python, python-egenix-mxdatetime, cupsys, python-pygresql | python-ldap | python-pysqlite2 | python-mysqldb, jaxml | python-jaxml, python-osd, python-reportlab, python-imaging, python-pysnmp4, python-imaging 11 Recommends: snmp, netatalk, python-psyco, npadmin, python-pam, python-chardet11 Recommends: qa-assistant, snmp, netatalk, python-psyco, npadmin, python-pam, python-chardet 12 12 Description: Print Quota/Accounting system for CUPS 13 13 PyKota is a full featured, internationalized, centralized and extensible 14 14 Print Quota system for CUPS. It supports both PostgreSQL, MySQL, SQLite and 15 15 OpenLDAP (or other LDAP servers) as the quota database backend. 16 Older versions of this software also support LPRng as the printing17 system, but this release doesn't. LPRng support might be reintroduced18 at a later date.19 16 . 20 17 This software features most of what you might expect from a modern Print -
pykota/trunk/debian/rules
r3186 r3214 75 75 install -m 644 logos/pykota.xcf $(CURDIR)/debian/tmp/usr/share/doc/pykota/logos/pykota.xcf 76 76 install -m 644 logos/README $(CURDIR)/debian/tmp/usr/share/doc/pykota/logos/README 77 install -m 644 qa-assistant/pykota.xml $(CURDIR)/debian/tmp/usr/share/qa-assistant/data/pykota.xml 77 78 (chown www-data.www-data $(CURDIR)/debian/tmp/usr/lib/cgi-bin/printquota.cgi) 78 79 (chown www-data.www-data $(CURDIR)/debian/tmp/usr/lib/cgi-bin/dumpykota.cgi) -
pykota/trunk/MANIFEST.in
r3156 r3214 18 18 recursive-include openoffice README *.png *.sx? *.pdf 19 19 recursive-include tests README *.py *.sh 20 recursive-include qa-assistant README *.xml -
pykota/trunk/setup.py
r3156 r3214 58 58 data_files.append((docdir, docfiles)) 59 59 60 docfiles = glob.glob(os.sep.join(["docs", "spanish", "*.pdf"]))61 docfiles += glob.glob(os.sep.join(["docs", "spanish", "*.sxw"]))62 data_files.append((os.path.join(docdir, "spanish"), docfiles))63 64 60 docfiles = glob.glob(os.sep.join(["docs", "pykota", "*.html"])) 65 61 data_files.append((os.path.join(docdir, "html"), docfiles)) … … 69 65 docfiles += glob.glob(os.sep.join(["openoffice", "README"])) 70 66 data_files.append((os.path.join(docdir, "openoffice"), docfiles)) 67 68 docfiles = glob.glob(os.sep.join(["qa-assistant", "*.xml"])) 69 docfiles += glob.glob(os.sep.join(["qa-assistant", "README"])) 70 data_files.append((os.path.join(docdir, "qa-assistant"), docfiles)) 71 71 72 72 directory = os.sep.join(["share", "man", "man1"])