~ubuntu-branches/ubuntu/wily/xmms2/wily

« back to all changes in this revision

Viewing changes to src/clients/mdns/avahi/wscript

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-07-04 16:23:34 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080704162334-b3esbkcapt8wbrk4
Tags: 0.5DrLecter-2ubuntu1
* Merge from debian unstable (LP: #241098), remaining changes:
  + debian/control:
    + Update Maintainer field
    + add lpia to xmms2-plugin-alsa supported architectures
    + Added liba52-0.7.4-dev to build depends
  + debian/rules: Added patch, patch-stamp and unpatch
  + changed 01_gcc4.3.patch:
    + src/include/xmmsclient/xmmsclient++/helpers.h: Added #include <climits>
* New upstream relase fixes LP: #212566, #222341

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
import Common
3
3
 
4
4
def build(bld):
 
5
  env = bld.env()
 
6
 
5
7
  obj = bld.create_obj('cc', 'program')
6
8
  obj.target = 'xmms2-mdns-avahi'
7
9
  obj.source = ['mdns-avahi.c']
11
13
 
12
14
  obj = bld.create_obj('subst')
13
15
  obj.source = 'xmms2-mdns-launcher.sh.in'
14
 
  obj.dict = {'PRG_PATH' : os.path.join(bld.env_of_name('default')['PREFIX'], 'bin')}
 
16
  obj.dict = {'PRG_PATH' : env['BINDIR']}
15
17
  Common.install_files('SCRIPTDIR', None, 'xmms2-mdns-launcher.sh',chmod=0755)
16
18
 
17
19
  find = bld.create_obj('cc', 'program')