summaryrefslogtreecommitdiff
path: root/libs/clearlooks-newer
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2009-12-06 14:21:46 +0000
committerTaybin Rutkin <taybin@taybin.com>2009-12-06 14:21:46 +0000
commit52b4b464f9657860e07b224564245ce22ea03df8 (patch)
treeeb920d2cfde38a4b2b5c38ef06d95c492665003d /libs/clearlooks-newer
parent3fdcba185980896366cc0d3d14f6dfd6bbaf1d0a (diff)
Merged revisions 6292,6294-6295,6311,6314 via svnmerge from
svn+ssh://ardoursvn@subversion.ardour.org/ardour2/branches/build_fixes ........ r6292 | trutkin | 2009-12-05 08:31:25 -0500 (Sat, 05 Dec 2009) | 1 line remove scons build files ........ r6294 | trutkin | 2009-12-05 09:11:17 -0500 (Sat, 05 Dec 2009) | 2 lines cairomm remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6295 | trutkin | 2009-12-05 09:12:54 -0500 (Sat, 05 Dec 2009) | 2 lines soundtouch remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6311 | trutkin | 2009-12-05 23:38:49 -0500 (Sat, 05 Dec 2009) | 2 lines glibmm2, gtkmm2, libgnomecanvasmm, sigc++2 remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6314 | trutkin | 2009-12-06 09:15:49 -0500 (Sun, 06 Dec 2009) | 4 lines remove scons referencing from Makefile - TODO: should move cscope stuff to waf and get rid of the Makefile ........ git-svn-id: svn://localhost/ardour2/branches/3.0@6315 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/clearlooks-newer')
-rw-r--r--libs/clearlooks-newer/SConscript50
1 files changed, 0 insertions, 50 deletions
diff --git a/libs/clearlooks-newer/SConscript b/libs/clearlooks-newer/SConscript
deleted file mode 100644
index 6b71356dd2..0000000000
--- a/libs/clearlooks-newer/SConscript
+++ /dev/null
@@ -1,50 +0,0 @@
-# -*- python -*-
-
-import os.path
-import glob
-
-libclearlooks_files = [
- 'animation.c',
- 'cairo-support.c',
- 'clearlooks_draw.c',
- 'clearlooks_draw_glossy.c',
- 'clearlooks_draw_gummy.c',
- 'clearlooks_draw_inverted.c',
- 'clearlooks_rc_style.c',
- 'clearlooks_style.c',
- 'clearlooks_theme_main.c',
- 'support.c',
- 'widget-information.c'
- ]
-
-Import ('env install_prefix')
-
-clearlooks = env.Clone()
-
-clearlooks.Replace(CCFLAGS = ' `pkg-config --cflags gtk+-2.0 cairo` ',
- LINKFLAGS = ' `pkg-config --libs gtk+-2.0 cairo` ')
-
-if env['GTKOSX']:
- clearlooks.Append (CCFLAGS = '-DGTKOSX')
-
-libclearlooks = clearlooks.SharedLibrary('clearlooks', libclearlooks_files)
-usable_libclearlooks = clearlooks.Install ('engines', libclearlooks)
-
-if env['GTKOSX']:
- # GTK looks only for foo.so, not foo.dylib
- print ("GTKOSX part");
- really_usable_module = clearlooks.Command ('engines/libclearlooks.so', usable_libclearlooks, 'ln -s libclearlooks.dylib libclearlooks.so', chdir=1)
- Default (really_usable_module)
-else:
- print ("non-GTKOSX part");
- Default (usable_libclearlooks)
-
-env.Alias('install', env.Install (
- os.path.join(install_prefix,env['LIBDIR'], 'ardour3', 'engines'),
- libclearlooks))
-
-env.Alias('tarball', env.Distribute (env['DISTTREE'],
- [ 'SConscript', 'bits.c'] +
- libclearlooks_files +
- glob.glob('*.h')
- ))