~ubuntu-branches/ubuntu/quantal/aqsis/quantal

« back to all changes in this revision

Viewing changes to texturing/plugins/exr2tif/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-08-06 04:53:26 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806045326-z6xeaaao62idxcc6
Tags: 1.6.0-0ubuntu1
* New upstream release
* debian/control:
  - changed name of lib package to libaqsis1 instead of aqsis-libsc2a
  - changed name of dev package to libaqsis-dev instead of aqsis-libs-dev
  - Added aqsis-data package
  - Revised summary text according to that specified by the RISpec (Pixar)
* Moved examples installation from aqsis.install to aqsis-data.install
* debian/rules: 
  - added content to binary-indep target
* debian/rules: added explicit name of mime file to force dh_installmime
  to generate postinst and prerm scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Import('env')
2
 
 
3
 
exr2tif_sources=Split("""
4
 
        exr2tif.cpp""")
5
 
 
6
 
if not env['no_exr']:
7
 
        exr2tifenv = env.Copy()
8
 
        exr2tifenv.AppendUnique(CPPPATH=['$exr_include_path'])
9
 
 
10
 
        Import('common_objs')
11
 
 
12
 
        exr2tifenv.Replace(LIBS = ['$tiff_lib'])
13
 
 
14
 
        # Set any platform specific options for this target
15
 
        exr2tifenv.UseTargetOptions('plugin')
16
 
        exr2tifenv.UseTargetOptions('texture_plugin')
17
 
        exr2tifenv.UseTargetOptions('exr2tif')
18
 
 
19
 
        exr2tif = exr2tifenv.SharedLibrary('exr2tif', [exr2tif_sources, common_objs])
20
 
 
21
 
        exr2tifenv.Install('$PLUGINDIR', exr2tif)
22
 
 
23
 
env.Distribute(exr2tif_sources)
24
 
env.Distribute('SConscript')