summaryrefslogtreecommitdiff
path: root/wscript
blob: 82119fa69fd28b445c0f4f95d76e709bec0058c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# -*- python -*-

import os

top = '.'
out = 'build_directory'
d = top

APPNAME='py2cairo'
VERSION='1.10.1'
cairo_version_required = '1.10.2'
xpyb_version_required  = '1.3'


def options(ctx):
  print('  %s/options()' %d)
  ctx.tool_options('gnu_dirs')
  ctx.tool_options('compiler_cc')
  ctx.tool_options('python') # options for disabling pyc or pyo compilation


def configure(ctx):
  print('  %s/configure()' %d)

  env = ctx.env
  ctx.check_tool('gnu_dirs')
  ctx.check_tool('compiler_cc')
  ctx.check_tool('python')
  ctx.check_python_version((2,6,0))
  ctx.check_python_headers()

  ctx.check_cfg(package='cairo',
                atleast_version=cairo_version_required,
                args='--cflags --libs')

  ctx.check_cfg(package='xpyb',
                atleast_version=xpyb_version_required,
                args='--cflags --libs',
                mandatory=False)

  # add gcc options
  if env['CC_NAME'] == 'gcc':
    env.append_unique('CCFLAGS', ['-std=c99', '-Wall'])

  version = [int(s) for s in VERSION.split('.')]
  ctx.define('VERSION', VERSION)
  ctx.define('PYCAIRO_VERSION_MAJOR', version[0])
  ctx.define('PYCAIRO_VERSION_MINOR', version[1])
  ctx.define('PYCAIRO_VERSION_MICRO', version[2])

  ctx.write_config_header('src/config.h')

  print("Configuration:")
  print("%-40s : %s" % ('PREFIX', env['PREFIX']))
  print("%-40s : %s" % ('LIBDIR', env['LIBDIR']))


def build(ctx):
  print('  %s/build()' %d)
  ctx.recurse('src')

  # generate and install the .pc file
  ctx(
    features = 'subst',
    source   = 'pycairo.pc.in',
    target   = 'pycairo.pc',
    dct      = {
      'VERSION'   : VERSION,
      'prefix'    : ctx.env['PREFIX'],
      'includedir': os.path.join(ctx.env['PREFIX'], 'include'),
      },
    install_path = os.path.join(ctx.env['LIBDIR'], 'pkgconfig'),
    )


def dist(ctx):
  # exclude these files from the distribution archive
  exclude  = (
    'build_directory/',
    'doc/_static/',
    'doc/_templates/',
    'doc/_build/doctrees/',
    'doc/_build/html/_sources/',
    'examples/cairo_snippets/c_to_python.py',
    'RELEASING',

    '.git/',
    '**/.gitignore',
    '**/.lock-w*',
    '.waf*',

    '**/*.pdf',
    '**/*.png',
    '**/*.pyc',
    '**/*.ps',
    '**/*.svg',

    # autoconf specific files
    '**/Makefile',
    'autogen.sh',
    'autom4*',
    'config.log',
    'config.guess',
    'config.sub',
    'depcomp',
    'install-sh',
    'missing',
    'py-compile',
    'src/.deps/',
    'src/.libs/',
    '**/*.lo',
    '**/stamp-h1',
    )
  ctx.excl = ' '.join(exclude)