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

« back to all changes in this revision

Viewing changes to texturing/plugins/jpg2tif/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
 
jpg2tifenv = env.Copy()
3
 
jpg2tif_sources=Split("""
4
 
        jpg2tif.c""")
5
 
 
6
 
jpg2tifenv.AppendUnique(CPPPATH=['$jpeg_include_path'])
7
 
 
8
 
# Set any platform specific options for this target
9
 
jpg2tifenv.UseTargetOptions('plugin')
10
 
jpg2tifenv.UseTargetOptions('texture_plugin')
11
 
jpg2tifenv.UseTargetOptions('jpg2tif')
12
 
 
13
 
Import('common_objs')
14
 
 
15
 
jpg2tif = jpg2tifenv.SharedLibrary('jpg2tif', [jpg2tif_sources, common_objs], LIBS=['$tiff_lib', '$z_lib', '$jpeg_lib'])
16
 
 
17
 
jpg2tifenv.Install('$PLUGINDIR', jpg2tif)
18
 
 
19
 
env.Distribute(jpg2tif_sources)
20
 
env.Distribute('SConscript')