comparison setup.py @ 1419:c717b8d63a7e

included UN*X manual pages from Bastian Kleineidam
author Richard Jones <richard@users.sourceforge.net>
date Wed, 12 Feb 2003 00:24:40 +0000
parents 3758a5af985f
children c1ecd373b5c9
comparison
equal deleted inserted replaced
1417:472c21af7f69 1419:c717b8d63a7e
14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
18 # 18 #
19 # $Id: setup.py,v 1.41 2002-12-10 00:11:13 richard Exp $ 19 # $Id: setup.py,v 1.42 2003-02-12 00:24:39 richard Exp $
20 20
21 from distutils.core import setup, Extension 21 from distutils.core import setup, Extension
22 from distutils.util import get_platform 22 from distutils.util import get_platform
23 from distutils.command.build_scripts import build_scripts 23 from distutils.command.build_scripts import build_scripts
24 24
154 'roundup.templates' 154 'roundup.templates'
155 ] 155 ]
156 installdatafiles = [ 156 installdatafiles = [
157 ('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']), 157 ('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']),
158 ] 158 ]
159
160 # install man pages on POSIX platforms
161 if os.name == 'posix':
162 installdatafiles.append(('man/man1', ['doc/roundup-admin.1',
163 'doc/roundup-mailgw.1', 'doc/roundup-server.1']))
159 164
160 # munge the template HTML into the htmlbase module 165 # munge the template HTML into the htmlbase module
161 buildTemplates() 166 buildTemplates()
162 167
163 # add the templates to the setup packages and data files lists 168 # add the templates to the setup packages and data files lists

Roundup Issue Tracker: http://roundup-tracker.org/