root/branches/libffado-2.0/support/mixer/SConscript

Revision 1222, 2.9 kB (checked in by ppalmers, 16 years ago)

fix mixer installation issue

Line 
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2007-2008 Arnold Krille
4 # Copyright (C) 2007-2008 Pieter Palmers
5 #
6 # This file is part of FFADO
7 # FFADO = Free Firewire (pro-)audio drivers for linux
8 #
9 # FFADO is based upon FreeBoB.
10 #
11 # This program is free software: you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 2 of the License, or
14 # (at your option) version 3 of the License.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 #
24 import os
25 from string import Template
26
27 Import( 'env' )
28
29 if env.has_key('PYUIC'):
30     e = env.Clone()
31
32     e['MIXERGUIS'] = [ 'phase24', 'phase88',
33                        'saffire',
34                        'saffireprolarge', 'saffireprosmall',
35                        'saffirelelarge', 'saffirelesmall',
36                        'af2', 'bcoaudio5', 'edirolfa66',
37                        'mackie_generic', 'quatafire', 'motu',
38                        'global', 'dummy'
39                      ]
40     e['MIXERAPPS'] = [ 'phase24', 'phase88',
41                        'saffire',
42                        'saffirepro',
43                        'saffirele',
44                        'af2', 'bcoaudio5', 'edirolfa66',
45                        'mackie_generic', 'quatafire', 'motu',
46                        'global', 'dummy'
47                      ]
48     e['OTHERGUIS'] = ['ffado_regdialog']
49     e['OTHERAPPS'] = ['ffado_regdialog']
50
51     #
52     # For the ffadomixer.in
53     e['PYTHONDIR'] = Template( os.path.join( e['SHAREDIR'], 'python' ) ).safe_substitute( e )
54     # For the installation of the stuff
55     e['pythondir'] = Template( os.path.join( e['sharedir'], 'python' ) ).safe_substitute( e )
56
57     for m in e['MIXERGUIS']:
58         app = "mixer_" + m
59         if os.path.exists( app+".ui" ):
60             e.PyUIC( source=app+".ui", target=app+"ui.py" )
61             e.Install( "$pythondir", app+"ui.py" )
62     for m in e['MIXERAPPS']:
63         app = "mixer_" + m
64         e.Install( "$pythondir", app+".py" )
65
66     for app in e['OTHERGUIS']:
67         if os.path.exists( app+".ui" ):
68             e.PyUIC( source=app+".ui", target=app+"ui.py" )
69             e.Install( "$pythondir", app+"ui.py" )
70     for app in e['OTHERAPPS']:
71         e.Install( "$pythondir", app+".py" )
72
73     e.Install( "$pythondir", "ffado_registration.py" )
74
75     e.ScanReplace( "ffadomixer_config.py.in" )
76     e.Depends( "ffadomixer_config.py", "#/config.h" )
77     e.Install( "$pythondir", "ffadomixer_config.py" )
78
79     e.ScanReplace( "ffadomixer.in" )
80     e.Depends( "ffadomixer", "#/config.h" )
81     e.Depends( "ffadomixer", "SConscript" )
82     e.Install( "$bindir", "ffadomixer" )
83
Note: See TracBrowser for help on using the browser.