~ubuntu-branches/ubuntu/raring/boost-build/raring

« back to all changes in this revision

Viewing changes to tools/package.jam

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-08-06 00:38:31 UTC
  • mfrom: (4.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080806003831-zr65893244swds0b
Tags: 2.0-m12-2
* debian/rules: Do not install /etc/user-config.jam.
* debian/site-config.jam: New.  Install into /etc instead of empty
  example.  Closes: #493323.

* debian/control: Update homepage.  Update description.  Closes:
  #493510.  Update Standards-Version to 3.8.0; no changes.

* debian/compat: New.  Set compat level to 7.
* debian/rules: Remove DH_COMPAT setting.
* debian/control: Change debhelper build-dep to version >= 7.

* debian/control: Remove docbook-to-man, bison from build-deps.

* debian/rules: Clean up upstream source by removing debian/conffiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  Copyright (c) 2005 Vladimir Prus.
 
2
#  Copyright 2006 Rene Rivera.
2
3
#
3
4
#  Use, modification and distribution is subject to the Boost Software
4
5
#  License Version 1.0. (See accompanying file LICENSE_1_0.txt or
53
54
    install-header-subdir ?= "" ;
54
55
    requirements = [ property.change $(requirements) : <install-header-subdir> ] ;
55
56
    
56
 
    # First, figure out all locations.
57
 
    local prefix = [ option.get prefix : "" ] ;
58
 
    
 
57
    # First, figure out all locations. Use the default if no prefix option given.
 
58
    local prefix = [ option.get prefix :
 
59
        [ property.select <install-default-prefix> : $(requirements) ] ] ;
 
60
    requirements = [ property.change $(requirements) : <install-default-prefix> ] ;
 
61
    # Or some likely defaults if neither is given.
59
62
    if ! $(prefix)
60
63
    {
61
64
        if [ modules.peek : NT ] { prefix = C:\\$(name) ; }