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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
# -*- python -*- =======================================================
# FILE: SConstruct
# CONTENTS: scons build script for scvim
# AUTHOR: alex AT x37v DOT info
# AUTHOR: sk AT k-hornz DOT de (some of this SConstruct taken from sk's SConstruct for SuperCollider)
# ======================================================================
import os
import re
import pwd
PLATFORM = os.uname()[0].lower()
SC_FILE_RE = re.compile('.*\.sc$')
VIM_FILE_RE = re.compile('.*\.vim$')
ANY_FILE_RE = re.compile('.*')
HOME_DIR_RE = re.compile(os.environ.get('HOME') + '.*')
DEFAULT_PREFIX = '/usr/local/'
if os.path.isdir(os.path.join(DEFAULT_PREFIX, 'share/SuperCollider/Help/')):
DEFAULT_SC_HELP = os.path.join(DEFAULT_PREFIX, 'share/SuperCollider/Help/')
elif os.path.isdir('../../common/build/Help/'):
DEFAULT_SC_HELP = '../../common/build/Help/'
else:
DEFAULT_SC_HELP = os.path.join(DEFAULT_PREFIX, 'share/SuperCollider/Help/')
def in_home_directory(dir):
return HOME_DIR_RE.match(dir)
def pkg_data_dir(prefix, *args):
if PLATFORM == 'darwin':
base = '/Library/Application Support'
if in_home_directory(prefix):
base = os.path.join(prefix, base)
else:
base = os.path.join(prefix, 'share')
return os.path.join(base, 'SuperCollider', *args)
def pkg_extension_dir(prefix, *args):
return pkg_data_dir(prefix, 'Extensions', *args)
SWAP_FILE_MATCH = re.compile('.*.swp')
def install_dir(env, src_dir, dst_dir, filter_re, strip_levels=0):
nodes = []
for root, dirs, files in os.walk(src_dir):
src_paths = []
dst_paths = []
if 'CVS' in dirs: dirs.remove('CVS')
if '.svn' in dirs: dirs.remove('.svn')
for d in dirs[:]:
if filter_re.match(d):
src_paths += flatten_dir(os.path.join(root, d))
dirs.remove(d)
for f in files:
#ditch swap files
if not SWAP_FILE_MATCH.match(f) and filter_re.match(f):
src_paths.append(os.path.join(root, f))
dst_paths += map(
lambda f:
os.path.join(
dst_dir,
*f.split(os.path.sep)[strip_levels:]),
src_paths)
nodes += env.InstallAs(dst_paths, src_paths)
return nodes
def bin_dir(prefix):
return os.path.join(prefix, 'bin')
def share_dir(prefix):
return os.path.join(prefix, 'share')
#build help, the help depends on having the home directory enviroment variable.. that could change
build_help = Builder(action =
'export HOME=' + os.environ.get('HOME') + ' && ruby ' + os.getcwd() + '/bin/scvim_make_help -f -s $SOURCE -d $TARGET')
#create our options
opts = Options()
opts.Add(PathOption('PREFIX', 'Specify the prefix for the bin and share files',
DEFAULT_PREFIX, PathOption.PathIsDir))
opts.Add(PathOption('CACHE_DIR',
'Specify the dir for scvim help docs, syntax highlighting, etc',
os.path.join(os.environ.get('HOME', '/'), '.scvim/'), PathOption.PathAccept))
opts.Add(PathOption('VIMFILE_DIR',
'Specify the dir for vim files, these need to be in vim\'s runtime path',
os.path.join(os.environ.get('HOME', '/'), '.vim/'), PathOption.PathAccept))
opts.Add(PathOption('SUPERCOLLIDER_HELP_DIR',
'Specify the location of SuperCollider\'s help',
DEFAULT_SC_HELP, PathOption.PathIsDir))
#create our enviroment, with our options and custom builders
env = Environment(options = opts, BUILDERS = {'BuildHelp' : build_help})
#generate the help options
Help(opts.GenerateHelpText(env))
#XXX how do we test for vim?
if not env.GetOption('clean'):
#test for the ruby
if os.system("ruby -e exit") != 0:
print "error: scvim depends on ruby and the ruby executable is not in your path"
Exit(1)
#get our variables from the options
PREFIX = env.get('PREFIX')
VIMFILE_DIR = env.get('VIMFILE_DIR')
CACHE_DIR = env.get('CACHE_DIR')
SUPERCOLLIDER_HELP_DIR = env.get('SUPERCOLLIDER_HELP_DIR')
DOC_DIR = os.path.join(CACHE_DIR, 'doc/')
#install_from_base = env.Alias('install-from-base',[
#Import( 'vimenv' ),
#print vimenv],
#)
install_vimfiles = env.Alias('install-vimfiles', [
install_dir( env, 'ftplugin', VIMFILE_DIR, VIM_FILE_RE, 0),
install_dir( env, 'syntax', VIMFILE_DIR, VIM_FILE_RE, 0),
install_dir( env, 'indent', VIMFILE_DIR, VIM_FILE_RE, 0)],
#could chown here, if in user's homedir?
)
install_doc = env.Alias('install-doc', env.Install(DOC_DIR, ['SCVim.scd']))
build_help = env.Alias('build-help', env.BuildHelp(target = Dir(DOC_DIR),
source = Dir(SUPERCOLLIDER_HELP_DIR)))
AlwaysBuild(Dir(DOC_DIR))
Depends(build_help, install_doc)
install_bin = env.Alias('install-bin',
install_dir(env, 'bin', bin_dir(PREFIX), ANY_FILE_RE, 1))
install_rc = env.Alias('install-rc', env.Install(os.path.join(share_dir(PREFIX), 'scvim/'), ['scvimrc']))
install_classes = env.Alias('install-classes', install_dir(
env, 'scclasses',
pkg_extension_dir(PREFIX, 'scvim'),
SC_FILE_RE, 1))
env.Alias('install-all', [
install_bin,
install_vimfiles,
install_doc,
install_rc,
install_classes])
#this should be commonly run by the user who wishes to use it if the CACHE_DIR
# and VIMFILE_DIR is in the user's homedir
env.Alias('install-user', [install_vimfiles, install_doc])
#this should normally be run with sudo privileges
env.Alias('install-system', [install_bin, install_rc, install_classes])
#called from main script
#env.Alias('install', [install_from_base])
#print env['install']
#for x in env.Glob('*', ondisk = False, strings = False, source = False):
# print x.get_abspath()
# ======================================================================
# configuration summary
# ======================================================================
#def yesorno(p):
#if p: return 'yes'
#else: return 'no'
#print '------------------------------------------------------------------------'
#print 'PREFIX :' PREFIX
#print 'CACHE_DIR :' CACHE_DIR
#print 'VIMFILE_DIR :' VIMFILE_DIR
#print 'DOC_DIR :' DOC_DIR
#print 'SUPERCOLLIDER_HELP_DIR :' SUPERCOLLIDER_HELP_DIR
#print '------------------------------------------------------------------------'
# ======================================================================
# EOF
|