[pkg-boost-commits] r14198 - in boost/trunk: . debian

smr at alioth.debian.org smr at alioth.debian.org
Sat Apr 12 15:36:24 UTC 2008


Author: smr
Date: 2008-04-12 15:36:22 +0000 (Sat, 12 Apr 2008)
New Revision: 14198

Removed:
   boost/trunk/Jamfile.v2
   boost/trunk/Jamrules
   boost/trunk/LICENSE_1_0.txt
   boost/trunk/README
   boost/trunk/boost-build.jam
   boost/trunk/boost.css
   boost/trunk/boost.png
   boost/trunk/boost/
   boost/trunk/configure
   boost/trunk/doc/
   boost/trunk/google_logo_40wht.png
   boost/trunk/index.htm
   boost/trunk/libs/
   boost/trunk/more/
   boost/trunk/people/
   boost/trunk/project-root.jam
   boost/trunk/regression/
   boost/trunk/rst.css
   boost/trunk/status/
   boost/trunk/tools/
   boost/trunk/wiki/
Modified:
   boost/trunk/debian/
Log:
Delete upstream sources; set mergeWithUpstream property on debian.

Deleted: boost/trunk/Jamfile.v2
===================================================================
--- boost/trunk/Jamfile.v2	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/Jamfile.v2	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,477 +0,0 @@
-# Copyright Vladimir Prus 2002-2006.
-# Copyright Dave Abrahams 2005-2006.
-# Copyright Rene Rivera 2005-2006.
-# Copyright Douglas Gregor 2005.
-#
-# Distributed under the Boost Software License, Version 1.0.
-#    (See accompanying file LICENSE_1_0.txt or copy at
-#          http://www.boost.org/LICENSE_1_0.txt)
-
-# Usage:
-#
-#   bjam [options] [install|stage]
-#
-#   Builds and installs Boost.
-#
-# Targets and Related Options:
-#
-#   install                 Install headers and compiled library files to the
-#   =======                 configured locations (below).
-#
-#   --prefix=<PREFIX>       Install architecture independent files here.
-#                           Default; C:\Boost on Win32
-#                           Default; /usr/local on Unix. Linux, etc.
-#
-#   --exec-prefix=<EPREFIX> Install architecture dependent files here.
-#                           Default; <PREFIX>
-#
-#   --libdir=<DIR>          Install library files here.
-#                           Default; <EPREFIX>/lib
-#
-#   --includedir=<HDRDIR>   Install header files here.
-#                           Default; <PREFIX>/include
-#
-#   stage                   Build and install only compiled library files
-#   =====                   to the stage directory.
-#
-#   --stagedir=<STAGEDIR>   Install library files here
-#                           Default; ./stage
-#
-# Other Options:
-#
-#   --builddir=DIR          Build in this location instead of building
-#                           within the distribution tree. Recommended!
-#
-#   --toolset=toolset       Indicates the toolset to build with.
-#
-#   --show-libraries        Displays the list of Boost libraries that require
-#                           build and installation steps, then exit.
-#
-#   --layout=<layout>       Determines whether to choose library names 
-#                           and header locations such that multiple 
-#                           versions of Boost or multiple compilers can
-#                           be used on the same system.
-#
-#                               versioned (default) - Names of boost
-#                               binaries include the Boost version
-#                               number and the name and version of the
-#                               compiler.  Boost headers are installed
-#                               in a subdirectory of <HDRDIR> whose
-#                               name contains the Boost version
-#                               number.
-#
-#                               system - Binaries names do not include
-#                               the Boost version number or the name
-#                               and version number of the compiler.
-#                               Boost headers are installed directly
-#                               into <HDRDIR>.  This option is
-#                               intended for system integrators who
-#                               are building distribution packages.
-#
-#   --buildid=ID            Adds the specified ID to the name of built
-#                           libraries.  The default is to not add anything.
-#
-#   --help                  This message.
-#
-#   --with-<library>        Build and install the specified <library>
-#                           If this option is used, only libraries
-#                           specified using this option will be built.
-#
-#   --without-<library>     Do not build, stage, or install the specified
-#                           <library>. By default, all libraries are built.
-
-# TODO:
-#  - handle boost version
-#  - handle python options such as pydebug
-
-import modules ;
-import set ;
-import stage ;
-import package ;
-import path ;
-import common ;
-import os ;
-import regex ;
-import errors ;
-import "class" : new ;
-import common ;
-
-constant BOOST_VERSION : 1.34.1 ;
-
-local version-tag = [ MATCH "^([^.]+)[.]([^.]+)[.]([^.]+)" : $(BOOST_VERSION) ] ;
-if $(version-tag[3]) = 0
-{
-    version-tag = $(version-tag[1-2]) ;
-}
-
-constant BOOST_VERSION_TAG : $(version-tag:J="_") ;
-
-local default-build ;
-if $(__file__:D) = ""
-{
-    default-build =
-        debug release
-        <threading>single <threading>multi
-        <link>shared <link>static
-        ;
-    
-    if [ os.name ] = NT
-    {
-        default-build += <runtime-link>shared <runtime-link>static ;
-    }
-}
-else
-{
-    default-build =
-        debug
-        ;
-}
-
-
-rule handle-static-runtime ( properties * )
-{    
-    # This property combination is dangerous.
-    # Ideally, we'd add constraint to default build,
-    # so that user can build with property combination
-    # by hand. But we don't have any 'constraint' mechanism
-    # for default-build, so disable such builds in requirements.
-    
-    # For CW, static runtime is needed so that
-    # std::locale works.
-    if <link>shared in $(properties)
-      && <runtime-link>static in $(properties)
-        && ! ( <toolset>cw in $(properties) )    
-    {
-        return <build>no ;
-    }
-}
-
-
-project boost
-    : requirements <include>.
-      # disable auto-linking for all targets here,
-      # primarily because it caused troubles with V2
-      <define>BOOST_ALL_NO_LIB=1
-      # Used to encode variant in target name. See the
-      # 'tag' rule below.
-      <tag>@$(__name__).tag
-      <conditional>@handle-static-runtime
-            
-    : usage-requirements <include>.
-    : build-dir bin.v2
-    : default-build $(default-build)
-    ;
-
-# Setup convenient aliases for all libraries.
-
-all-libraries =
-    [ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ] ]
-    ;
-
-# First, the complicated libraries: where the target name in
-# Jamfile is different from directory name.
-alias prg_exec_monitor : libs/test/build//boost_prg_exec_monitor ;
-alias test_exec_monitor : libs/test/build//boost_test_exec_monitor ;
-alias unit_test_framework : libs/test/build//boost_unit_test_framework ;
-alias bgl-vis : libs/graps/build//bgl-vis ;
-alias serialization : libs/serialization/build//boost_serialization ;
-alias wserialization : libs/serialization/build//boost_wserialization ;
-
-explicit prg_exec_monitor test_exec_monitor unit_test_framework
-    bgl-vis serialization wserialization ;
-
-for local l in $(all-libraries)
-{
-    if ! $(l) in test graph serialization
-    {
-        alias $(l) : libs/$(l)/build//boost_$(l) ;
-        explicit $(l) ;
-    }
-}
-
-alias headers : : : : <include>. ;
-
-
-# Decides which libraries are to be installed by looking at --with-<library>
-# --without-<library> arguments. Returns the list of directories under "libs"
-# which must be built at installed.
-rule libraries-to-install ( existing-libraries * )
-{
-   local argv = [ modules.peek : ARGV ] ;
-   local with-parameter = [ MATCH --with-(.*) : $(argv) ] ;
-   local without-parameter = [ MATCH --without-(.*) : $(argv) ] ;
-
-   # Do some checks
-   if $(with-parameter) && $(without-parameter)
-   {
-       ECHO "error: both --with-<library> and --without-<library> specified" ;
-       EXIT ;
-   }
-
-   local wrong = [ set.difference $(with-parameter) : $(existing-libraries) ] ;
-   if $(wrong)
-   {
-       ECHO "error: wrong library name '$(wrong[1])' in the --with-<library> option." ;
-       EXIT ;
-   }
-   local wrong = [ set.difference $(without-parameter) : $(existing-libraries) ] ;
-   if $(wrong)
-   {
-       ECHO "error: wrong library name '$(wrong[1])' in the --without-<library> option." ;
-       EXIT ;
-   }
-
-   if $(with-parameter)
-   {
-       return [ set.intersection $(existing-libraries) : $(with-parameter) ] ;
-   }
-   else
-   {
-       return [ set.difference $(existing-libraries) : $(without-parameter) ] ;
-   }
-}
-
-# what kind of layout are we doing?
-layout = [ MATCH "^--layout=(.*)" : [ modules.peek : ARGV ] ] ;
-layout ?= versioned ;
-layout-$(layout) = true ;
-
-# possible stage only location
-local stage-locate = [ MATCH "^--stagedir=(.*)" : [ modules.peek : ARGV ] ] ;
-stage-locate ?= stage ;
-
-path-constant BOOST_STAGE_LOCATE : $(stage-locate) ;
-
-
-# location of python
-local python-root = [ MATCH "^--with-python-root=(.*)" : [ modules.peek : ARGV ] ] ;
-PYTHON_ROOT ?= $(python-root) ;
-
-# Select the libraries to install.
-libraries = [ libraries-to-install $(all-libraries) ] ;
-
-if --show-libraries in [ modules.peek : ARGV ]
-{
-    ECHO "The following libraries require building:" ;
-    for local l in $(libraries)
-    {
-        ECHO "    - $(l)" ;
-    }
-    EXIT ;
-}
-
-# Custom build ID.
-local build-id = [ MATCH "^--buildid=(.*)" : [ modules.peek : ARGV ] ] ;
-if $(build-id)
-{
-    constant BUILD_ID : [ regex.replace $(build-id) "[*\\/:.\"\' ]" "_" ] ;
-}
-
-# This rule is called by Boost.Build to determine the name of
-# target. We use it to encode build variant, compiler name and
-# boost version in the target name
-rule tag ( name : type ? : property-set )
-{
-    if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
-    {
-        if $(layout) = versioned
-        {
-            local result = [ common.format-name
-                <base> <toolset> <threading> <runtime> -$(BOOST_VERSION_TAG)
-                -$(BUILD_ID)
-                : $(name) : $(type) : $(property-set) ] ;
-            
-            # Optionally add version suffix.
-            # On NT, library with version suffix won't be recognized
-            # by linkers. On CYGWIN, we get strage duplicate symbol
-            # errors when library is generated with version suffix.
-            # On OSX, version suffix is not needed -- the linker expets
-            # libFoo.1.2.3.dylib format.
-            # AIX linkers don't accept version suffixes either.
-            if $(type) = SHARED_LIB &&
-              ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix )
-            {
-                result = $(result).$(BOOST_VERSION)  ;
-            }
-            
-            return $(result) ;
-        }
-        else
-        {
-            return [ common.format-name
-                <base> <threading> <runtime> -$(BUILD_ID)
-                : $(name) : $(type) : $(property-set) ] ;
-        }
-    }
-}
-
-# Install to system location.
-
-local install-requirements =
-    <install-source-root>boost
-    ;
-if $(layout-versioned)
-{
-    install-requirements += <install-header-subdir>boost-$(BOOST_VERSION_TAG)/boost ;
-}
-else
-{
-    install-requirements += <install-header-subdir>boost ;
-}
-if [ modules.peek : NT ]
-{
-    install-requirements += <install-default-prefix>C:/Boost ;
-}
-else if [ modules.peek : UNIX ]
-{
-    install-requirements += <install-default-prefix>/usr/local ;
-}
-
-local headers =
-    [ path.glob-tree boost : *.hpp *.ipp *.h *.inc : CVS ]
-    [ path.glob-tree boost/compatibility/cpp_c_headers : c* : CVS ]
-    [ path.glob-tree boost/test/utils/runtime : *.cpp : CVS ]
-    [ path.glob-tree boost/spirit/tree :
-        parsetree.dtd : CVS ]
-    [ path.glob-tree boost/tr1/tr1 :
-        algorithm array bitset complex deque exception fstream functional
-        iomanip ios iostream istream iterator limits list locale map
-        memory new numeric ostream queue random regex set sstream stack
-        stdexcept streambuf string strstream tuple type_traits typeinfo
-        utility valarray vector *.SUNWCCh : CVS ]
-    ;
-
-
-# Complete install
-package.install install-proper
-    :   $(install-requirements) <install-no-version-symlinks>on
-    :
-    :   libs/$(libraries)/build
-    :   $(headers)
-    ;
-explicit install-proper ;
-
-# Install just library.
-install stage-proper
-    :   libs/$(libraries)/build
-    :   <location>$(stage-locate)/lib
-        <install-dependencies>on <install-type>LIB 
-        <install-no-version-symlinks>on
-    ;
-explicit stage-proper ;
-
-
-if $(layout-versioned) 
-  && ( [ modules.peek : NT ] || [ modules.peek : UNIX ] )
-{
-    rule make-unversioned-links ( project name ? : property-set : sources * )
-    {
-        local result ;
-        local filtered ;
-        local pattern ;        
-        local nt = [ modules.peek : NT ] ;
-        
-        # Collect the libraries that have the version number in 'filtered'.
-        for local s in $(sources)
-        {
-            local m ;
-            if $(nt)
-            {
-                m = [ MATCH "(.*[.]lib)" : [ $(s).name ] ] ;
-            }
-            else
-            {
-                m = [ MATCH "(.*[.]so[.0-9]+)" "(.*[.]a)" : [ $(s).name ] ] ;
-            }            
-            if $(m)
-            {
-                filtered += $(s) ;
-            }
-        }
-        
-        # Create hardlinks without version.
-        for local s in $(filtered)
-        {
-            local name = [ $(s).name ] ;
-            local ea = [ $(s).action ] ;
-            local ep = [ $(ea).properties ] ;
-            local a  = [
-              new non-scanning-action $(s) : common.hard-link : $(ep) ] ;
-            
-            local noversion-file ;
-            if $(nt)
-            {
-                noversion-file = [ MATCH "(.*)-[0-9_]+([.]lib)" : $(name) ] ;
-            }
-            else
-            {
-                noversion-file = 
-                  [ MATCH "(.*)-[0-9_]+([.]so)[.0-9]*" : $(name) ] 
-                  [ MATCH "(.*)-[0-9_]+([.]a)" : $(name) ] 
-                  [ MATCH "(.*)-[0-9_]+([.]dll[.]a)" : $(name) ] ;
-            }
-                        
-            local new-name = 
-               $(noversion-file[1])$(noversion-file[2]) ;
-            result += [ new file-target $(new-name) exact : [ $(s).type ] : $(project)
-                    : $(a) ] ;
-
-        }
-        return $(result) ;
-    }    
-            
-    generate stage-unversioned : stage-proper : 
-      <generating-rule>@make-unversioned-links ;
-    explicit stage-unversioned ;
-    
-    generate install-unversioned : install-proper : 
-      <generating-rule>@make-unversioned-links ;
-    explicit install-unversioned ;
-}
-else
-{
-    # Create do-nothing aliases
-    alias stage-unversioned ;
-    alias install-unversioned ;
-}
-
-alias install : install-proper install-unversioned ;
-alias stage : stage-proper stage-unversioned ;
-explicit install ;
-explicit stage ;
-
-
-# Just build the libraries, don't install them anywhere.
-# This is what happens with just "bjam --v2".
-alias build_all : libs/$(libraries)/build ;
-
-# This rule should be called from libraries' Jamfiles and will
-# create two targets, "install" and "stage", that will install
-# or stage that library. The --prefix option is respected, by
-# --with and --without options, naturally, are ignored.
-#
-# - libraries -- list of library targets to install.
-rule boost-install ( libraries * )
-{
-    package.install install
-        : <dependency>/boost//install-headers $(install-requirements)
-        : # No binaries
-        : $(libraries)
-        : # No headers, it's handled by the dependency
-    ;
-
-    install stage : $(libraries) : <location>$(BOOST_STAGE_LOCATE) ;
-
-    local c = [ project.current ] ;
-    local project-module = [ $(c).project-module ] ;
-    module $(project-module)
-    {
-        explicit stage ;
-    }
-}
-
-# Make project ids of all libraries known.
-for local l in $(libraries)
-{
-    use-project /boost/$(l) : libs/$(l)/build ;
-}

Deleted: boost/trunk/Jamrules
===================================================================
--- boost/trunk/Jamrules	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/Jamrules	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,15 +0,0 @@
-# Boost.Build top level Jamrules
-
-# See tools/build/index.html for documentation.
-project boost ;
-
-# Set some important global variables if they haven't already been set by the
-# user on the command-line or in the environment
-
-# Establish this as the root of the boost installation. Most targets will want
-# $(BOOST_ROOT) in their #include path.
-path-global BOOST_ROOT : . ;
-
-# The current version of Boost.
-BOOST_VERSION ?= 1.34.0 ;
-

Deleted: boost/trunk/LICENSE_1_0.txt
===================================================================
--- boost/trunk/LICENSE_1_0.txt	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/LICENSE_1_0.txt	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,23 +0,0 @@
-Boost Software License - Version 1.0 - August 17th, 2003
-
-Permission is hereby granted, free of charge, to any person or organization
-obtaining a copy of the software and accompanying documentation covered by
-this license (the "Software") to use, reproduce, display, distribute,
-execute, and transmit the Software, and to prepare derivative works of the
-Software, and to permit third-parties to whom the Software is furnished to
-do so, all subject to the following:
-
-The copyright notices in the Software and this entire statement, including
-the above license grant, this restriction and the following disclaimer,
-must be included in all copies of the Software, in whole or in part, and
-all derivative works of the Software, unless such copies or derivative
-works are solely in the form of machine-executable object code generated by
-a source language processor.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.

Deleted: boost/trunk/README
===================================================================
--- boost/trunk/README	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/README	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,18 +0,0 @@
-Copyright 2000-2003 Beman Dawes
-Distributed under the Boost Software License, Version 1.0. (See accompany-
-ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-Unless otherwise specified, all Boost software and documentation is subject
-to the Boost Software License Version 1.0. See the accompanying file LICENSE_1_0.txt.
-A copy of the license is also available at http://www.boost.org/LICENSE_1_0.txt.
-
-For the most current version of Boost libraries and documentation, see:
-
-   http://www.boost.org
-
-Boost documentation is in HTML format.
-
-The top-level directory (which contains this README file) should contain
-a file named index.htm with links to all documentation, including
-documentation on building boost libraries for your particular compiler
-and operating system.

Deleted: boost/trunk/boost-build.jam
===================================================================
--- boost/trunk/boost-build.jam	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/boost-build.jam	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,9 +0,0 @@
-#~ Copyright (C) 2002-2003, David Abrahams.
-#~ Copyright (C) 2002-2003, Vladimir Prus.
-#~ Copyright (C) 2003, Rene Rivera.
-#~ Use, modification and distribution are subject to the
-#~ Boost Software License, Version 1.0. (See accompanying file
-#~ LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-BOOST_ROOT = $(.boost-build-file:D) ;
-boost-build tools/build/v2 ;

Deleted: boost/trunk/boost.css
===================================================================
--- boost/trunk/boost.css	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/boost.css	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,65 +0,0 @@
-/*=============================================================================
-    Copyright 2002 William E. Kempf
-    Distributed under the Boost Software License, Version 1.0. (See accompany-
-    ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-=============================================================================*/
-
-H1
-{
-    FONT-SIZE: 200%;
-    COLOR: #00008B;
-}
-H2
-{
-    FONT-SIZE: 150%;
-}
-H3
-{
-    FONT-SIZE: 125%;
-}
-H4
-{
-    FONT-SIZE: 108%;
-}
-BODY
-{
-    FONT-SIZE: 100%;
-    BACKGROUND-COLOR: #ffffff;
-}
-PRE
-{
-    MARGIN-LEFT: 2em;
-    FONT-FAMILY: Courier,
-                 monospace;
-}
-CODE
-{
-    FONT-FAMILY: Courier,
-                 monospace;
-}
-CODE.as_pre
-{
-    white-space: pre;
-}
-.index
-{
-    TEXT-ALIGN: left;
-}
-.page-index
-{
-    TEXT-ALIGN: left;
-}
-.definition
-{
-    TEXT-ALIGN: left;
-}
-.footnote
-{
-    FONT-SIZE: 66%;
-    VERTICAL-ALIGN: super;
-    TEXT-DECORATION: none;
-}
-.function-semantics
-{
-    CLEAR: left;
-}
\ No newline at end of file

Deleted: boost/trunk/boost.png
===================================================================
--- boost/trunk/boost.png	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/boost.png	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,61 +0,0 @@
-‰PNG
-
-   
-IHDR     V   n7•Ã   gAMA  ¯È7Šé   tEXtSoftware Adobe ImageReadyqÉe<  6IDATxÚì]]Å}ï™Ùٝý:íéNpÒaà8p…˜ãÃFáA’©BQHìâA¡*®2¡¨8~¡pò2æ%¦Š"qÅD”	ãBRÅD®ÂèT.ÀA‡@p’ ݝ´§;í×ìÎîÎä?3»³s3Ó==»³»º£ÿ5ZõôôtÏMÿýÿè÷pš¦!FŒµEÃ#F?Œ1ü0bÄðã Ê&8ŽcýÁˆá' fœ1ü„	$F_Eüë¡i…Œ†"Fk?¸Ú®™ †"Fk?”È¡oÂO´01Zøñ¼Ñžé.ày‹ö!Fk?dlQD/‚¬4C£µƒx<‘ÓÆü'rÈ’Š£U‰7N‰ ø!$Š­nüÁC>
-„J811Z5ø¡û·ü01Z›ø¡AµóUÛz¢g~þÆ»GgÜù×m}îGËxeµÐkì{ýPoú1.x(Qä¨Ödw+APîÂfŽ=3}éÔ™9Ïüë60¦\E4wa©gýéäfx<ᄈó­AyÝÄ’Ï‚V;aÙ3tà cÊUD½ìÇH ¨67xhD ö_œð±~(êPŸ™Å]bògu®+/;ù〓<J)|"*ph%sÈö¿ž*ÉJŠ¯tCó…nÐfògÕŸ.õc¤m´xŠ;x€Šu)!ršî¦°­<kåŠQ±¦T"¼FoQªs¾õà”æTBِa|¹ZgÄv©;•?8ä UT. ÿØ—èÄÒ¹—Óõƒo$!™ÌÓ]7 T„+rñ¤ZtÀF©#{#È:uf#ôGS®&ù“]îe?òAäU y‘\	<Z”µ¿„ú4«|+GÿQõôÇYý’*ZnWUժʞvk‰A݁Æ-fü¬.ú¤·ýÈ*í’gŽ®¹U)¦Ÿ÷ÏeL´ l\úd],#ãê‚„HãIÇ=¿E…RÏKédœ1尺ԏ|{·á„•£òQ¨z>§}~Qµå·ÓJ –\zÞA¼Œb&Z‚	ùEßyB'|˜üY3öO—ú1Ò6r<£°MÊUÅx\>SŸÖ4ÃÌÑmÉ`:Ü4›N3Jè9*úú•&¦¹HLª•dçùÐÜ~9Ê{qÆЭcŒ)W&!ºÔþñ;„P7X¨Õµ
-Ÿ#Ü—ËÚ¯gêœÎ¹ºÇ€ãšI›¡uÊ¡íס+H7…T½¹²,KšlÅïXä8uäXi„ýA.÷ó/î?øÎtÛ/1•À<ÝzÓØÝ·Otîä
-ø`î ´JÇ€
-|JJ×o…5\žèv»PùoÎ@åiOC/üä1ë%?õìËÌøÔµõÚÿ†Ã1óõX"Êô?VuQ`NS5CW4¥Ç547K
-àÑ´B.Ód(å8ÕKŒÐL
-yºæÚPš)	¸
-zŽ}¯Ú»{û_½J ÇÍù±fœàöîm{vLvÚ´¯F¨NÝÁô4Š7
-uî”kÓív[›iEE±˜^çÇõ›iB¨é\^¡ÅAbâ
-=],×à¤˨)=,d´ägÞÅ¡ˆZ•¸š{×O€Vׄ`ü‘]A9øÕS8ùF8 ±{vN[·q{·Û)´	5Œàõ¡¤ë{Œ‚ÿÍL—j±D„»XTVœ1ÕãimÛˆb?µ|)>0€p	™æå*§Õ«žRˆlöØ/u8†¹ÉT)!ôÚÁ#mp°»’ã3§d'ý€Ú›vÃO¸ÂG¯m8Ó]üÐ, at hin
-oú¬§Ï*P4»½±R‹3‘ˆ¡k×ÃI¡Ä‰) O^AÙbÓ5Øý1åǵ·%$‘/Õ£	MqDYסò†ƒÐÖ‰1PrÈ£ø3ÿñFX¢ÏäÔ§ð_õ²Ýç_<"xÐÊP‚ק
-4öZs'ªš r¨PQ?[ ˇ7U,ËÜÁBwnF¢€d¥®ÕJéô0 ãÓEôQ¶—`÷1ØÓ‰º"Ž"b´^©<òY@Á£¸ëN¹7ðúÀlø•¼Ä¥—í ºl·»¡q!W—©ýãvÄ9r’BµR$cü=ãÒoOBñ+b:½¡-ëÑHJw”sËbjre4s¾•†¥ÄÙ~[sEèð9´cŠ\‘'5™°2ìBÀÍXÃà´óÞÛpwùÜ Ö€vÜ»µm&†Þ½ub‹9ñ—/Ê )ù²# 
-çÀèq»¯œÂÕ¿w÷};ÁzÝÝGÓ'f=…*®ƒš‹aÊO\Ex­XQ¢¢tí†Èô¾XAN-ÎeÝ<¢çJUÈJH†îwnÅŒˆ 3ÚÔÌ4ÚkœÍæÐMƒHŠFªŠ5ÝÞ+Ž;¨Ô ‡cè`‚'
-.Ao=ÿâ~‚ú7=3ëÆ°¯/Ã]žÞ-hÄšç"Ùטò|ì·oÕóÍ ×‚²
-ï:Þ­.Žf÷c‡ÄwnüØeQZTÊ•:ècß—4͈<hFï¬ö1.Ýv–‰£šª©Å¬”΀
-¶PDù†Ø±‡Æ­ˆ÷AȪæäEtIÑC~ª|Ü3Œ•Ò»ê«jã öô?|—À
-ž¶‰Í5Ə?²ËS5‡Ì'¿÷ÐÞÝÛÉÚÔåÐ.H-Ó‡žû±[ø!x®=´¥ZþÍðp8 dó6h¯~mH?/ä
-Z4…J½sÊ;4Î#d®yüaQ¯5!re.JÀ.¿ÃesÀXd®r7Ðèˆ-ŽÒ8 `4%{&ÜiïÛmʳÌÖ›ºÏÑËesþø¡Œ¼tÇž%„ª,× }Ç×$ã²êœ)2~·ó’ˆÊŠªV.%“)(ñÙ"ªÔ< ‚,!Ûo³Àù"ºP6t´HLufmZˆz¹¨7ŽcÈÇ™&雽‘AëtLõ«ÝöÊ„(|P——?úÛ?¾Êr…öðj±®®Ûâo‹ å›óž€žCW
-€)‚J¹%!1$F¸\=Ó4{\¡qM?€Ó2OÍ¡›QLàJ5)©UìN‡/ÁíHeÙÜÝ·O€õLãÔ&t3èNôŠ
-<ˆJïV¿ÚÅ™I¡G¡ž/›kÓ੼¹cŸ£¨V+ÉØÖÍQÎc¡vã¤PRZK§ ó´™9ΊèqzÞ?8RÀR›ÿÍB­†NçÐ
-‹Šõ²ÂóÞ{Ëæ(cãàC쀟‚²p!%÷¥ÝTRÂ	䧞}^¯/h¡!0]@c¤w—Íùà‡þ$¸½Dbõ\¡”áø€±Ý†êªªÊK±ÔEytrA3ƒåÜ¡qá!dÊ$ý_$Ñ€ÈÉ‘DD+Ño»J¸;MawD¦vz¹¹ÉDi÷«Ý­c
-M{fßë‡öìœôu }Ò§å|'Ê›3"¡|5R¨ÇàP´¸Z•ëe¹.—êr±&ਖôCC.¨rŽ×êqIð©Ÿ5B4†ÐÌE='.ò²&Rþña-›#hGÖØyüÄ,¡Ù.÷$Âì¡]céW»`†2öC„žq{]ÐíåÁæOÉÊ[^“©xC±òZ[¡È©*Ê-ÎçŠåLJºùjîT»F¨äc	F
-…°f;è¸Eö“Œ¶uhí"¢_í–ÕΰbÀ„ƒÊ	RèÔå#ÚSÞªu-Ó½‹…z¶P¿˜¯çd5W֏|Y-TÔ|ãÐòeý +%’âJÕš–‰swŒ5aé8+¸! ¾“•zœ«vhü €Ë­p¾Z{%Ÿ„½Ä•ÒóÞ¯vQÓ-Öl!Úµ÷Ëæ¨ä9å­T—’Ÿ—ëÿ5µh˜æj9“øF™9ü•™ÈKÅÅ‹ÅT>Ÿ_?8píüL]Qk„8®¥­¡{6¢¤¨OÅJj™hœ*Ècc.þñ¶ls…b¹C÷%Ç8K¿Úµr^xæ1Þ9Öù"+0¨<ã¡p5÷`ã1*ýÍ÷³•*/Åu«ãý32²»‰
-´âß±<êÂrí‹eqc†Od”å/d%
-ßç}‚´F!I at W&õKŠRMqÞ{ËREÍ$y·¶t©Û¦ñV
-¥ÃªgíB&è]44æUÂûÄÉ\~6¾à? X>eN_³³p©úÁ邵'ˆ­€Öš9mÄò¨ß—KŠ&EùzlHÎ_„BW
-p›ÖÃU}ϏmFVjkvúÆFý·RÓR\žZ۱ƹb±iä†ï znð£40òE¹
-{€àø¢¬¤_ít­ÇÙEŽç„êîÅ:Ðâ‡Æò¹Tá’.|Ïä™
-˜iŽ´#–çäB~RI^Uò%}
-Ï­›Óà0„Ü‘e]Fâz7ªVìÈéÄø¡_Võü‹ûqƒßž“ÔJÑé@/ÿµƒGpr©õ«]2íîRÇ9:_?4›®Ü¼
-ñ¢ÜzöbenIið‚ÐÊúÕ÷>«,TA@|b*eÁzYç¶^Ûѥn_òÚxñæ
-z~YQ%N! ÇcÙ\–ÊKæ'ÜÔ@ϸPeœÎ‰“x:hƒ¬âîW»áa7‡ÛSùCŽÈ\®ð’È+õ·~—Åiw–@³BH›ZÜ{gtÈ%b‹
-%ÝâÜÀWW@a6^¼ùJ´.¦»
-b¶9SOÍÍ
-$ëÐè]¸4á„ÙÙµïC”¼òÌÏß 7hûÕnÛD˜°ò´'	“ÝXYÜ©þf‡SUÕDÃgýѹRÍ®¤Ù0C6„Î\¨ž[ªó’Òƒe©\U“"ºB° ÔªÉ˺vÐ>5‘C¾€q\:u¶ÍȐ9O=û2< Ç»ù‰<mu*´¸Ú%°‹g$[¿Úm[˜¼Š‰$¤·'-zõàT¸+mÛ÷¿y.XÈ+b"Îeóµ©˨±4­}cž6ãk,gÚŠðÃ÷ö‡å¿úÓ¤å—#™z1'e2×qƒIm©ˆÈ/~k%D¤Ô´$W漈 ¼Æ­ùKÀ.‡Ü%ÀIž;‡€y œJ¸Ú|vyïCÛÝÚ#ÍF9€XO¤_í¶#yô
-À~ƒëÂZ`òŸøñ tÏ'Éùú¦q”“ëºåÃs¦O+5çv¯ùf§5ä˜Ò/ñ¼y×ä
-ñ›¯ŠÔjš’;Ã	)²×ª*²y¢{Yq¨µ…ÈÕúoE®$…çyÜ‹ó)Õ?ÿ»Ÿtã…>ýƒïàæìÈ*Ÿ] ]>
-üñä÷jOÕ½]]Ó+õÉ`û¹=ê‰@a¼sÓ+ÏýcˆXjý¶¢‰qž;·T9õeÑšæÔšÑ;ŽeÒ­_ƒ…W›Âeêcyt]r}’—cëy%§EGҲç»ãˆª(j*RmÌÏÚ¤Ûgí Oˆ¾94„7Õ4ÓˆÀI@µdŸoÛ%/ónûÅâ˜>R•„+ˆ¨Öo{’ è÷Î/)-{¦)°p†­Z§!TRô9ŸhTˆqµBQΗtv¾Gµ G©Z”õ£ 58ŠåZ©\Õ>ž2wÞYÈ^
-·ƒMµlFC­Ãí?à`_ó£—ívc`"J¼¡/g á‡<‹R«ê®³¯ND¡åUs#„bFh0ÅoÌè’P)—AKò¥$ʧ¸i¾Ši^?„Òºˆ¼N(e"r&RΈIPê —þ†>(Œ­½jM/†f®¥Ü£g톾¼ÔwT2½”Zèá¤ô7ǺÎõq´\©%b‘wløå‘y»>†\G‘}	÷Œë:w©\
-ÎwKø@	¼ó œn†n£Yâ`åžy’¶w¬Ž	ê2îM»mÄ4ܘ{wßG#1LHƒÝå«£†¾—•ÿÀáH°¾½³\RE)üùß¿;ö¼Ü
-mr±…‚Fc†S¡á<0¤$&6ÆïC#•R^âkžV Ç	åÇ~⧝x6¯3>CpýæÑNæ= ³Á,y÷½Êi
-à`)ßmMûÛn‡D°Þí=Û&‚†N›ÞBÜ.p¾ÞÞáÇ¡¬,$%ñ|NùÅ;s-oBž¾¸¿™ÌÄùBIIó¥6„á'‚èW§ö†€õP€ì2ÞÁœ”NÆG†õ©Ð£‰ûÕîZ"ü â×~ä*ªñÑÏ¿3³tüÓ\ƒ5­ý4˜¡oß¾nÓzQ©ªB5'
-\ áƒÃ	Aò\†àa´ª‰ê<p8¸â"ªTŒÐÏ-V¨ÁŠ
-ßrÈ1ː–øMƒ"¤jJE‡ A~¬´;Aø–£~âÇpn×°ušU¥¦Ä…¿1Ò‚
-7¹Dœ‘ß×Óp¡\®§Åª6ã‰†F}“?”Ã6\Š‰|]Q at _Û2,
-¦¢-„f„@͏fôïÔZÙ7Z|‘ãHx>3ƒ£þàÇ¡¼¹i}Ée}ÏÑoÝ2d_l@˜Ú6–@ºÏºš5_Ìø"Ç-*xõÁ€\ߦ÷ô¹
-9Y¢º/ûݏ–컍6}	­I!8‰Gù[·$j55Šd‘'¹
-|½4ŽgfI®|1¿h¦7Ž%â±Ë¤K>ŸËÂï¦Ñaš’rY¹aì*\gÏYé¸%Ôi&ª5iq9¿¸”÷}uögð}ÕP˜üœV»fzh0=”IÓ”ô-ÜE<¹Íó[:žŸ¦²2âü…R5)‰wß8èØ€€s'ÿ•J5•à)? íöD· ©c½²¿µŒüÍ)(<<8@ÃOÇOÌþÙä-vɯ…ßïwMÉ“³çÿï/´Ÿ>¸}îñ <ŽÂãcW‘Ÿá•·Cë„:=Ÿ!þÓ÷÷à …ÉíþêÐïßžúƒuºw÷}8H¼²ÿðÔ±“öœ‡wMNÞvc×ñƒC”ý»¼ŠìZ«çËœ§JèÞÃ¾Þj_äm3Ü à¡›Pø1
-nð ?uŽ“))KŽû	] ^žüéKdQf1®YøäJ¹áS>ŸÏïž5¤%Í3 ýë¿ü|n°ê9™…	ÑÿN} àñE¬ùç xàñþùï÷tUYˆÐ Ç3Ç®A5öìð±ˆê\yêõÅ&$x`h´µ6cÒôÌ,¼Yðì{ý(HxóÐïA©xx×]ÞÈ™™…ÞÊ.ååJåg/¼ò_aEb¦®EYt\ì’¾ÅÏŒá¿T®lºsë8¶ðrð`Î:Ïý“DPö€ï¿Sg⷏|@xHÇ3 xà1p/Ç,LøÛò€ma'© AÐÁ+zâÇÿI)NÃďã+¼žŸàu'5¸9Û7è¦
-¯4¥“ tâáA*=øšÑa`,4«o.CèׄƒîÉ.Ü42‰¡Áö•lS_u‘ÒL&jÿÀ¬æpœØ&P›ùð0¸Àäï+™>	e €´’¬è÷b,(¬Õ‚˜¦L>°ýOÈ#Áø±jó}9ð—‚–hYt¿0TMomkéož@r#Ç­æy~DāŸÎ‘Ô·Høøô9À÷d‹ôРÃÈ
-ô
-o:ú×ß¾«Ã2ÇàéfÁä5‘Fà6c°n8é‡ÆEÐQáá¡<!Àm8ü Ã_
-È„[,½÷Pæ®ÛÆáíÈ‚w>}â4?f…„¿^ŒðNÌŽ#ŒSnwˆ#èèÞéonä	!_Èòݲˆ·¢Kô+èª}¯ÿÆ<ýá£fè¤ÉÁqß:¡Ã@/'€kwA4m_‚®o„A3«2¹çû¶‘E™Y@Ƹޒ't_yë0äÿðÑ¿0Oÿåß^%˜@ð“·›ô= N8Í
-,	/†'$VÇ^HÈ7
-7Œ<н»ábå(÷©BøÐ8D÷¥Tœ
-Š‡š£¾G^dJ!÷)%~_¸4›e´ºñ㡠‡,‚x­qüàpB)||=r<ŒÖ~È
-ŠÈN6F«?8`´‡1ð0ZSø¡DQúC£¯
-~õwÚ“?<ŒÖ8~è¡âY¦“YWFŒÖ~:±yr1ü„$†F_uüÐ@‹á„Ã#FŒ~1bøaĨ¿ôÿ ä$~cÝ®Y    IEND®B`‚
\ No newline at end of file

Deleted: boost/trunk/configure
===================================================================
--- boost/trunk/configure	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/configure	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,347 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2005, 2006 Douglas Gregor.
-# Copyright (C) 2006 The Trustees of Indiana University
-#
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-
-# boostinspect:notab - Tabs are required for the Makefile.
-
-BJAM=""
-TOOLSET=""
-BJAM_CONFIG=""
-BUILD=""
-PREFIX=/usr/local
-EPREFIX=
-LIBDIR=
-INCLUDEDIR=
-LIBS=""
-PYTHON=python
-PYTHON_VERSION=
-PYTHON_ROOT=
-ICU_ROOT=
-
-# Internal flags
-flag_no_python=
-flag_icu=
-flag_show_libraries=
-
-for option
-do
-    case $option in
-
-    -help | --help | -h)
-      want_help=yes ;;
-
-    -prefix=* | --prefix=*)
-      PREFIX=`expr "x$option" : "x-*prefix=\(.*\)"`
-      ;;
-
-    -exec-prefix=* | --exec-prefix=*)
-      EPREFIX=`expr "x$option" : "x-*exec-prefix=\(.*\)"`
-      ;;
-
-    -libdir=* | --libdir=*)
-      LIBDIR=`expr "x$option" : "x-*libdir=\(.*\)"`
-      ;;
-
-    -includedir=* | --includedir=*)
-      INCLUDEDIR=`expr "x$option" : "x-*includedir=\(.*\)"`
-      ;;
-
-    -show-libraries | --show-libraries )
-      flag_show_libraries=yes
-      ;;
-
-    -with-bjam=* | --with-bjam=* )
-      BJAM=`expr "x$option" : "x-*with-bjam=\(.*\)"`
-      ;;
-
-    -with-icu | --with-icu )
-      flag_icu=yes
-      ;;
-
-    -with-icu=* | --with-icu=* )
-      flag_icu=yes
-      ICU_ROOT=`expr "x$option" : "x-*with-icu=\(.*\)"`
-      ;;
-
-    -without-icu | --without-icu )
-      flag_icu=no
-      ;;
-
-    -with-libraries=* | --with-libraries=* )
-      library_list=`expr "x$option" : "x-*with-libraries=\(.*\)"`
-      if test "$library_list" != "all"; then
-          old_IFS=$IFS
-          IFS=,
-          for library in $library_list
-          do
-              LIBS="$LIBS --with-$library"
-
-              if test $library = python; then
-                  requested_python=yes
-              fi
-          done
-          IFS=$old_IFS
-
-          if test "x$requested_python" != xyes; then
-              flag_no_python=yes
-          fi
-      fi
-      ;;
-
-    -without-libraries=* | --without-libraries=* )
-      library_list=`expr "x$option" : "x-*without-libraries=\(.*\)"`
-      old_IFS=$IFS
-      IFS=,
-      for library in $library_list
-      do
-          LIBS="$LIBS --without-$library"
-
-          if test $library = python; then
-              flag_no_python=yes
-          fi
-      done
-      IFS=$old_IFS
-      ;;
-
-    -with-python=* | --with-python=* )
-      PYTHON=`expr "x$option" : "x-*with-python=\(.*\)"`
-      ;;
-
-    -with-python-root=* | --with-python-root=* )
-      PYTHON_ROOT=`expr "x$option" : "x-*with-python-root=\(.*\)"`
-      ;;
-
-    -with-python-version=* | --with-python-version=* )
-      PYTHON_VERSION=`expr "x$option" : "x-*with-python-version=\(.*\)"`
-      ;;
-
-    -with-toolset=* | --with-toolset=* )
-      TOOLSET=`expr "x$option" : "x-*with-toolset=\(.*\)"`
-      ;;
-
-    -*)
-      { echo "error: unrecognized option: $option
-Try \`$0 --help' for more information." >&2
-      { (exit 1); exit 1; }; }
-      ;; 
-
-    esac
-done
-
-if test "x$want_help" = xyes; then
-  cat <<EOF
-\`configure' configures Boost to adapt to a few kinds of systems.
-
-Usage: $0 [OPTION]... 
-
-Defaults for the options are specified in brackets.
-
-Configuration:
-  -h, --help                display this help and exit
-  --with-bjam=BJAM          use existing Boost.Jam executable (bjam)
-                            [automatically built]
-  --with-toolset=TOOLSET    use specific Boost.Build toolset
-                            [automatically detected]
-  --show-libraries          show the set of libraries that require build
-                            and installation steps (i.e., those libraries
-                            that can be used with --with-libraries or
-                            --without-libraries), then exit
-  --with-libraries=list     build only a particular set of libraries,
-                            describing using either a comma-separated list of
-                            library names or "all"
-                            [all]
-  --without-libraries=list  build all libraries except the ones listed []
-  --with-icu                enable Unicode/ICU support in Regex 
-                            [automatically detected]
-  --without-icu             disable Unicode/ICU support in Regex
-  --with-icu=DIR            specify the root of the ICU library installation
-                            and enable Unicode/ICU support in Regex
-                            [automatically detected]
-  --with-python=PYTHON      specify the Python executable [python]
-  --with-python-root=DIR    specify the root of the Python installation
-                            [automatically detected]
-  --with-python-version=X.Y specify the Python version as X.Y
-                            [automatically detected]
-
-Installation directories:
-  --prefix=PREFIX           install Boost into the given PREFIX
-                            [/usr/local]
-  --exec-prefix=EPREFIX     install Boost binaries into the given EPREFIX
-                            [PREFIX]
-
-More precise control over installation directories:
-  --libdir=DIR              install libraries here [EPREFIX/lib]
-  --includedir=DIR          install headers here [PREFIX/include]
-
-EOF
-fi
-test -n "$want_help" && exit 0
-
-# TBD: Determine where the script is located
-my_dir="."
-
-# Determine the toolset, if not already decided
-if test "x$TOOLSET" = x; then
-  TOOLSET=`$my_dir/tools/jam/src/build.sh --guess-toolset`
-fi
-
-rm -f config.log
-
-# Build bjam
-if test "x$BJAM" = x; then
-  echo -n "Building Boost.Jam with toolset $TOOLSET... "
-  pwd=`pwd`
-  cd "$my_dir/tools/jam/src" && ./build.sh "$TOOLSET" > config.log 2>&1
-  cd $pwd
-  arch=`cd $my_dir/tools/jam/src && ./bootstrap/jam0 -d0 -f build.jam --toolset=$TOOLSET --toolset-root= --show-locate-target && cd ..`
-  BJAM="$my_dir/tools/jam/src/$arch/bjam"
-  echo "tools/jam/src/$arch/bjam"
-fi
-
-# TBD: Turn BJAM into an absolute path
-
-# If there is a list of libraries 
-if test "x$flag_show_libraries" = xyes; then
-  libraries=`$BJAM -d0 --show-libraries`
-  cat <<EOF
-
-The following Boost libraries have portions that require a separate build
-and installation step. Any library not listed here can be used by including
-the headers only.
-
-The Boost libraries requiring separate building and installation are:
-EOF
-  for lib in $libraries
-  do
-    echo "         $lib"
-  done
-  exit 0
-fi
-
-# Setup paths
-if test "x$EPREFIX" = x; then
-  EPREFIX=$PREFIX
-fi
-
-if test "x$LIBDIR" = x; then
-  LIBDIR="$EPREFIX/lib"
-fi
-
-if test "x$INCLUDEDIR" = x; then
-  INCLUDEDIR="$PREFIX/include"
-fi
-
-# Find Python
-if test "x$flag_no_python" = x; then
-  result=`$PYTHON -c "exit" > /dev/null 2>&1`
-  if [ "$?" -ne "0" ]; then
-    flag_no_python=yes
-  fi
-fi
-
-if test "x$flag_no_python" = x; then
-    if test "x$PYTHON_VERSION" = x; then
-        echo -n "Detecting Python version... "
-        PYTHON_VERSION=`$PYTHON -c "import sys; print (\"%d.%d\" % (sys.version_info[0], sys.version_info[1]))"`
-        echo $PYTHON_VERSION
-    fi
-
-    if test "x$PYTHON_ROOT" = x; then
-        echo -n "Detecting Python root... "
-        PYTHON_ROOT=`$PYTHON -c "import sys; print sys.prefix"`
-        echo $PYTHON_ROOT
-    fi    
-fi
-
-# Configure ICU
-echo -n "Unicode/ICU support for Boost.Regex?... "
-if test "x$flag_icu" != xno; then
-  if test "x$ICU_ROOT" = x; then
-    COMMON_ICU_PATHS="/usr /usr/local /sw"
-    for p in $COMMON_ICU_PATHS; do
-      if test -r $p/include/unicode/utypes.h; then
-        ICU_ROOT=$p
-      fi
-    done
-  
-    if test "x$ICU_ROOT" = x; then
-      echo "not found."
-    else      
-      BJAM_CONFIG="$BJAM_CONFIG -sICU_PATH=$ICU_ROOT"
-      echo "$ICU_ROOT"
-    fi
-  else
-    BJAM_CONFIG="$BJAM_CONFIG -sICU_PATH=$ICU_ROOT"
-    echo "$ICU_ROOT"
-  fi
-else
-  echo "disabled."
-fi
-
-# Backup the user's existing user-config.jam
-JAM_CONFIG_OUT="user-config.jam"
-if test -r "user-config.jam"; then
-  counter=1
- 
-  while test -r "user-config.jam.$counter"; do
-    counter=`expr $counter + 1`
-  done
-
-  echo "Backing up existing Boost.Build configuration in user-config.jam.$counter"
-  mv "user-config.jam" "user-config.jam.$counter"
-fi
-
-# Generate user-config.jam
-echo "Generating Boost.Build configuration in user-config.jam..."
-cat > user-config.jam <<EOF
-# Boost.Build Configuration
-# Automatically generated by Boost configure 
-
-# Compiler configuration
-using $TOOLSET ; 
-EOF
-
-#  - Python configuration
-if test "x$flag_no_python" = x; then
-  cat >> user-config.jam <<EOF
-
-# Python configuration
-using python : $PYTHON_VERSION : $PYTHON_ROOT ;
-EOF
-fi
-
-# Generate the Makefile
-echo "Generating Makefile..."
-cat > Makefile <<EOF
-BJAM=$BJAM
-BJAM_CONFIG=$BJAM_CONFIG
-PREFIX=$PREFIX
-EPREFIX=$EPREFIX
-LIBDIR=$LIBDIR
-INCLUDEDIR=$INCLUDEDIR
-LIBS=$LIBS
-
-all: .dummy
-	@echo "\$(BJAM) \$(BJAM_CONFIG) --user-config=user-config.jam \$(LIBS)"
-	@\$(BJAM) \$(BJAM_CONFIG) --user-config=user-config.jam \$(LIBS) || \\
-	echo "Not all Boost libraries built properly."
-
-clean: .dummy
-	rm -rf bin.v2
-
-distclean: clean
-	rm -rf Makefile config.log
-
-check: .dummy
-	@cd status && ../\$(BJAM) \$(BJAM_CONFIG) --user-config=../user-config.jam || echo "Some Boost regression tests failed. This is normal for many compilers."
-
-install: .dummy
-	@echo "\$(BJAM) \$(BJAM_CONFIG) --user-config=user-config.jam --prefix=\$(PREFIX) --exec-prefix=\$(EPREFIX) --libdir=\$(LIBDIR) --includedir=\$(INCLUDEDIR) \$(LIBS) install"
-	@\$(BJAM) \$(BJAM_CONFIG) --user-config=user-config.jam --prefix=\$(PREFIX) --exec-prefix=\$(EPREFIX) --libdir=\$(LIBDIR) --includedir=\$(INCLUDEDIR) \$(LIBS) install || echo "Not all Boost libraries built properly."
-
-.dummy:
-
-EOF


Property changes on: boost/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Deleted: boost/trunk/google_logo_40wht.png
===================================================================
--- boost/trunk/google_logo_40wht.png	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/google_logo_40wht.png	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,30 +0,0 @@
-‰PNG
-
-   
-IHDR   €   5   ¾ç?  ÷PLTE	 íìíÑÑÓÉÉËããäààáÔÔÕÎÎÏ"j¿ÁÆ >Å /š,(„<¸6§&s1ƒ B‹;z/QœŠ’£˜ ±GÖEÌPÚ
-FÀMÉF²SÆ#XÃ+Tª8b·<UŠe}¯TgŒo}˜z‰¦²µ»·ºÀÑÔÚÎÐÔÉËÏìíïéêìWâZ×;mÊM|ÏUy½lŒÄ‚˜¿hãeß(hÖ-rã?€ç\‰Ö§Ð¥³Ê¥«µ¸¾ÈÀÅÍÞãëæéîPŒè^™ïg”ØpŸãy¡ÝŠ®åœ¸ã¦»ÙºÅÕËÖæÈÎפ¨®®²¸âæìóõøðòõãåè¬ÂàêíñÕÚßÇÉËÌÌÌôõöëìíéêëèéêåæçÄÅÆíïð÷øøïððÝÞÞÉÊÊY|e-p-v½vPuP˜Ò˜ºq‡q¯Ï¯‘œ‘ÚèÚÊÏÊðõðÑÕÑÍÑÍØÛØÕØÕÜÞÜ÷ø÷çèçÐÑÐÁÂÁjm(—'7©6>°=I¸HgÁf€ÏW‰VÆÆÃóóñööõÞÞÝëêãñÞ„ÑÊ©ôÌ-õØWñá›Ôƍéá¿ÏÍÄÉÈÄÆšá±	÷Æ
-íÀÕ«Ë­>Æ°^’‚KŸ“i×ÔÉáßØèæߤ‹k²‹{`Šu/¿¶™ÞÛÑóñ쮢”öõôõôóáàßÖÕÔã͹èàÚµ¬¦¾¶²ÅÁ¿èæåϼµ²±ìéèçäãÜÙØ訛òèæÞQ9álWä‹zÏ¡™à¸±èÒÎäÙ×Ü%Û-á1Ô8!ã>$ÊŒ‚ª‰Í­¨Í¹¶ÕÎͽÐ!£¹%Ç0Ë3Ã:)¶E8ÂWI¸bW¸}v‰`[›yuÜÔÓ² ¥ ’
-܏"§2&}1*F=r
-ÔÆÅÐÌÌfffÔÑÑÞÜÜüûûæååûûûùùù÷÷÷ôôôóóóïïïëëëéééçççäääâââßßßÜÜÜÚÚÚÙÙÙ×××ÓÓÓÈÈÈÇÇÇÆÆÆÄÄÄ»»»ñðñé’ª<   tRNS @æØf   bKGD ˆH   	pHYs    ÒÝ~ü   tIMEÔ
-¡Óùþ  
-hIDATxœíX}\÷÷ÒÜL|‘ѹJ(`UĪÅnuîb½\ÖÍ·¹®Ýº\ÖÕv]n« sˆ`Ýf}é²¹6°²ê¢¶õ…¨µµUDŠP‡Ø—ä’Ëåí.w	/ùc¿âlVèÇöŸÿøq¿ßóý=¿çù>ß'#Fܳ{vÏîÙ]3;
-Ìþ¹§ãfÔø0 Øi'Ž»\.ÜùðÓ?ýÉúõÏÿz­‰¢‡êgYþPáÒ•Ë<æV»œCÜßo?[¿~ýožýñ“>”[Øi×òÒœÔÙ³g§¦dç—”.…À
-†û/uÚ
-Ï=¾!õ®`wFÊKN{Øápø§ç&gçgç,c‡rÀÿNr±
-›µã½Ìï×_œœ6ƒàà@ æø™IÊQ†ˆk8!ÀYxÃsÏl>÷ ].NÊž“k}Z?'ÈâcÆý 0¤Þ4' °ù™Ý¢öŽØñUK’§’ˆ@È
-y´œ˜>=Cˆá- tÒlê}̝Ðé^Z0&‹Dx¹†5¹Ý&Ö?,C‚ò Å	JÓukiÒ4î¢>_­ö(û ëˁMaÁ«¶K¤€iYÓÔôEÊ=*š…Ó€Gt?G¼:)ìο½uøðá7ߎ0®ÇÐοþaëÖ­¯¾fºÉ6 Ñ÷VkÖ¬Yóí®&ÖnþÑ&}ЫgýûUi¯ôá'ÀF|2` "KââÃ$ï»Q¹vœa!
-¤S;Áµ\oùàÂ…VëÑ·Y7NKˆL[+jjkvVTnû‹Ž‘è‚v~eéÂ’ÒÅssR¦äjŸ^ûl€§Þ´~ðþ)«ÕöFDM÷ŸÀN­Zœ=º,‚Ùþ¬œ¤f$*¢o½`»Î}v½ùDã)ˆ“Æ_©¬ÝöÊÁCÛwUWìÜâ1¹œNÝÊœ9……³ÈÏžP,ü\€}º×Ž\<óᡳ—O^<èc¤û€6-[”Sþ\ÖJ
-®³ÇÞm†	‚KÇO´[´¬›ùseÍvŽàyáÓÚêêš×
-¬Û½4?× „´ÄıÓBA>€à?xô\Ç"Ùt²µÅÏFÍNvÞÂä˜2é;)v'tØzíAžà¼t¼ý=‹_sðÅ»AÁ/þ±¦zÇÞíïÃUóyž±Ô	ª±#Œùc§Z‚Á  `kíì¬7˜œpA¥I£ô¼ÇõÅØP¯=:$ò‡Ÿ@ÌÇß½rY$¶Tî1‡DB®•ó¡] €Y–äCEžÊ2¿£ˆK@‘§$ áÐõ#ç-ˆ(…³M§ßñëðPÞÒü¤Qñzú" gä˜õŠ9iùúSÇ[;ôÛ_¬xÙ
-ÆyüBÝÎꪗ°ÂE“Æ•‡x²òGeb²'$ ÝèëG
-h躭éb³¥åìÀ ìjCnþ¤¸Œð-è+i§ûŸGÛÌÒVFÍÊ‘K'[;ê*wî³`‚ƒU3LÖVWí7Î+H³‚äZ•8:SOFô`¶ÆÌgmÖóÍŸÊP4Äû"?]í-|`¢*½\ðRýîՏ͜¹zæèÃ#'ÛZô©Ó”‡·5žë4¨Üñ²äCÓŒWØU]µ¯!÷þIqñ(ï…|Âœ¤˜„ Œa[ck‹¹ùØ!˜
-á”Ø)ÍŒ¼‰Ê1+þ*øî²’¹¥¥%9©Óß±ž¸r9, §ÒºÀ™(€Š/ïÖ5”Ôu¸mUû,eÙ”é ë!JbÇõb7 ”77¶^îÁD"ȵ–L¸ bÎÄDÕTf£1¢—/™7/wa~l‚ð±õDk‡1Jê´[{Öz¥³Ì\±sÏK]€fÁ‡ù–Š½û2JU<"×øæOWԍ†¢Ih챝<wÕ‚‰°ÏëtnÊ9ƒæ1rÒ…*Aèkà4îöŠóG¯@±¦ãçÚÌ2¿‰agg­m
-wû{ú1mÙ¹gwCoïøØXU˜>+¶¨C„> åæ lÂb 4˜Û
-Dšñ‰i
-…b|I\!€‹ó£‹ºÂÍííW.c0È_«gNu¶44ÔJ¥'óGh À·­fŸ¹×Ø3-sê˜É%¥S²0T$ˆ'£ ºëÞm?wµACn×m{‘Ýq#§(Š”ùrÀV ÷©¡@qAâ貞®ºóàŒ^)4´Ûqô£p[KÍPzä²Ó¦ßUîÙß[Ž‘(Ö=­pNAb¦C¿ükA74†õ—ÚÛÛ¯Õó^“K¢ÕÁÐ&Ÿ˜5^¥LLÉh)—Xqž*¦¬Ã,ÿim½VC Ïžï¨3–wõ˜«ªªv‹Å@Ûª^2vIwT?ëþÄ©½ f½>ОÙÔ£Ç꯵žk¿pì3Îý÷7ß<
-@ÅÁ²SãTŠ	³—=
-±:ÖK*cbŠôd³\mk½øŽú×™÷¯Zô"õ»÷ì­ÚõŠýý¶šýõ)^'¢¹÷OPNÉýïS›ÿáº^ãShØÜÞÞd;lkjŽàƒ«šñ¤1>}LœJ™2kîܹ³R§¤g$ôÈ‚ Ôµt´½wñRSÓée2‘€	³ìÞ¿§ªvWmíR
-ÃzäÓ‹s“”Š	)	œÁ°á…uëÖ½°á	›;ÛÚ®´];扨-Iy	YØX–‘>uìØñ©i¹…3P½žäå>?ÂÂu§›m¯tÂ?Hb¿µ˜wø“Ä0ðydåܼÉÉcÇ€&­€åO‹XW&rpìî=Ýrº¥.çép“Q}8|ß}ÂGÛ/"ò¼, ! 9†Z(¸Y!Jÿ%`iÉça]™“œ[X<²·,]Š	•¥L&pƒƒ@°pw“	 Àí" /i9‘É€3>ê
-–Ðe‚´¨u¿Öç…t[Äã€Á’Ü!-ŒY¹p|1I½±7C©ˆ¸ Øî÷‚i伈„Ä ¬…@)î_â*ùä@{H'û€¼X%I"uÒx½ð÷
-Q&8]t	Kn&²l‘²t] íêMKŒKÚèçjŠbX6 ÐÀœu» ô2±ý¾t‘èp(m‘f]S$bbnN‹’`sG—(W¯Y’?jŠ Í ù™59.$:FMIŠ|	½‰ýKæj“	ŒÖ.ü–ù>:3;?7ðÓýK´zÕÂì¸á üÂ}9£âQBÃÜdIÀeÚîSw>‘Ñ̪¼‰ªŒ®à*ÀLo¥Œ5’ÜÿI›»g !ÍQ(“3IÎø(£$¶ƒhŸ»€1 €Ås–Áš™3——¨âI„LûÜ
-³S"+cœD¡99©©ió‘÷o¨¦á:‡€M‹šž–0ƒeì‡Ü__ À¨!¹@bFŠQ“û ÷mÚÎ]0À¡B%*âƒpþ×ê_ÒÐ:VÚ‚_bf‰>¿Vÿ#¢Üa!Ä¾nj8¿~e“~Á Ô}ìûý>j—ì›r>Lû/ŸDµ¨â+ç    IEND®B`‚
\ No newline at end of file

Deleted: boost/trunk/index.htm
===================================================================
--- boost/trunk/index.htm	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/index.htm	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,578 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-<head>
-  <title>Boost C++ Libraries</title>
-  <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
-  <link rel="icon" href="more/favicon.ico" type="image/ico" />
-  <link rel="stylesheet" type="text/css" href="more/css_0/front.css" />
-  <!--[if IE]>
-  <style type="text/css">
-    body { behavior: url(more/css_0/csshover.htc); }
-  </style>
-  <![endif]-->
-</head>
-
-<body>
-  <div class="body-0">
-    <div class="body-1">
-      <div class="body-2">
-        <div id="heading">
-          <div id="heading-0">
-            <h1><img id="boost-logo" src="more/boost-dark-trans.png" alt=
-            "Boost C++ Libraries" width="237" height="55" name=
-            "boost-logo" /></h1>
-
-            <p id="heading-quote"><span class="quote">&ldquo;...one of the
-            most highly regarded and expertly designed C++ library projects
-            in the world.&rdquo;</span> <span class="attribution">&mdash;
-            <a href="http://www.gotw.ca/">Herb Sutter</a> and <a href=
-            "http://en.wikipedia.org/wiki/Andrei_Alexandrescu">Andrei
-            Alexandrescu</a>, <a href=
-            "http://safari.awprofessional.com/?XmlId=0321113586">C++ Coding
-            Standards</a></span></p>
-
-            <div class="clear"></div>
-          </div>
-        </div>
-
-        <div id="content">
-          <table summary="">
-            <tr>
-              <td id="sections" rowspan="2">
-
-                <div class="section" id="intro">
-                  <h1>Welcome to Boost.org!</h1>
-
-                  <div class="section-body">
-                    <div class="section-body-0">
-                      <div class="section-body-1">
-                        <p>Boost provides free peer-reviewed portable C++
-                        source libraries.</p>
-
-                        <p>We emphasize libraries that work well with the C++
-                        Standard Library. Boost libraries are intended to be
-                        widely useful, and usable across a broad spectrum of
-                        applications. The <a href=
-                        "more/license_info.html">Boost license</a> encourages
-                        both commercial and non-commercial use.</p>
-
-                        <p>We aim to establish "existing practice" and
-                        provide reference implementations so that Boost
-                        libraries are suitable for eventual standardization.
-                        Ten Boost libraries are already included in the
-                        <a href="http://www.open-std.org/jtc1/sc22/wg21">C++
-                        Standards Committee's</a> Library Technical Report (
-                        <a href=
-                        "http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1745.pdf">
-                        TR1</a>) as a step toward becoming part of a future
-                        C++ Standard. More Boost libraries are proposed for
-                        the upcoming <a href=
-                        "http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1810.html">
-                        TR2</a>.</p>
-
-                        <p class="note"><span class="note-label">Getting
-                        started:</span> <span class="note-body">Boost works
-                        on almost any modern operating system, including UNIX
-                        and Windows variants. Follow the <a href=
-                        "more/getting_started.html">Getting Started Guide</a>
-                        to download and install Boost. Popular Linux and Unix
-                        distributions such as <a href=
-                        "http://fedora.redhat.com/">Fedora</a>, <a href=
-                        "http://www.debian.org/">Debian</a>, and <a href=
-                        "http://www.netbsd.org/">NetBSD</a> include pre-built
-                        Boost packages. Boost may also already be available
-                        on your organization's internal web
-                        server.</span></p>
-
-                        <p class="note"><span class=
-                        "note-label">Background:</span> <span class=
-                        "note-body">The <a href=
-                        "more/background.html">Background Information
-                        page</a> has introductory material to help those
-                        educating their organization about Boost.</span></p>
-                      </div>
-                    </div>
-                  </div>
-                  </div>
-
-                <div class="section" id="participation">
-                  <h2><a name="Membership" id=
-                  "Membership"></a>Participation</h2>
-
-                  <div class="section-body">
-                    <div class="section-body-0">
-                      <div class="section-body-1">
-                        <p>Although Boost was begun by members of the C++
-                        Standards Committee Library Working Group,
-                        participation has expanded to include thousands of
-                        programmers from the C++ community at large.</p>
-
-                        <p>If you are interested in participating in Boost,
-                        please join our main <a href=
-                        "more/mailing_lists.htm#main">developers mailing
-                        list</a>. Discussions are highly technical, and list
-                        members are encouraged to participate in formal
-                        reviews of proposed libraries. There is also a
-                        <a href="more/mailing_lists.htm#users">users mailing
-                        list</a>, and several <a href=
-                        "more/mailing_lists.htm#projects">project specific
-                        lists</a>.</p>
-
-                        <p>Both the main Boost developers list and the users
-                        list are also accessible as <a href=
-                        "more/mailing_lists.htm">newsgroups</a>.</p>
-                      </div>
-                    </div>
-                  </div>
-                </div>
-
-                <div class="section" id="news">
-                  <h2>Latest News</h2>
-
-                  <div class="section-body">
-                    <div class="section-body-0">
-                      <div class="section-body-1">
-
-                        <h3>July 24, 2007 - Version 1.34.1</h3>
-
-                        <p>This is a bug fix release addressing many problems with the 1.34.0 release.
-                        It is a recommended upgrade for all users of Boost 1.34.0. For a complete list of fixes see
-                        <a href="http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">Boost Trac</a>.</p>
-                        
-                        <h4>Supported Compilers</h4>
-
-                        <p>New in this release is improved support for
-                        the IBM XL C/C++ compiler.</p>
-                        
-                        <p>Boost is tested on a wide range of compilers and
-                        platforms. Since Boost libraries rely on modern C++
-                        features not available in all compilers, not all
-                        Boost libraries will work with every compiler.
-                        The following compilers and platforms have been
-                        extensively tested with Boost, although many other
-                        compilers and platforms will work as well. For more
-                        information, see the <a href=
-                        "http://www.boost.org/regression/release/user/">regression
-                        test results</a>.</p>
-
-                        <ul>
-                          <li><a href="http://developer.apple.com/">Apple
-                          GCC</a> 4.0.1 on Mac OS X.</li>
-
-                          <li><a href=
-                          "http://www.borland.com/us/products/cbuilder/">Borland
-                          C++</a> 5.8.2 on Windows.</li>
-
-                          <li><a href="http://gcc.gnu.org/">GNU C++</a>
-                            <ul>
-                              <li>
-                                3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux
-                              </li>
-                              <li>
-                                4.1.x on Solaris
-                              </li>
-                              <li>
-                                3.4.x on Windows
-                              </li>
-                            </ul>
-                          </li>
-
-                          <li><a href="http://h30097.www3.hp.com/cplus/">HP
-                          C++ for Tru64 UNIX 7.1</a>.</li>
-
-                          <li><a href="http://www.hp.com/go/c++">HP
-                          aC++ A.06.14</a>.</li>
-
-                          <li><a href=
-                          "http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">
-                          Intel C++</a> 9.1 on Windows, 9.0 on Linux.</li>
-
-                          <li><a href="http://www.metrowerks.com/">Metrowerks
-                          CodeWarrior</a> 9.4 on Windows.</li>
-
-                          <li><a href=
-                          "http://msdn.microsoft.com/visualc/">Microsoft
-                          Visual C++</a> 6.0 (sp5, with and without STLport),
-                          7.0, 7.1, 8.0. Note: Boost does not support the
-                          non-standard "Safe" C++ Library shipping with
-                          Visual C++ 8.0, which may result in many spurious
-                          warnings from Boost headers and other
-                          standards-conforming C++ code. To suppress these
-                          warnings, define the macro
-                          <code>_SCL_SECURE_NO_DEPRECATE</code>.</li>
-
-                          <li><a href="http://developers.sun.com/sunstudio/compilers_index.html">
-                          Sun Studio 11</a>
-                          on Solaris.</li>
-                          
-                        </ul>
-
-                        <h4>Acknowledgements</h4>
-
-                        <p><a href="people/thomas_witt.html">Thomas Witt</a>
-                        managed this release.</p>
-                        
-                        <p>A great number of people contributed their time
-                        and expertise to make this release possible. Special
-                        thanks go to Kim Barrett consolidating Boost.Iostreams changes
-                        from various branches and Rene Rivera for general build and installation
-                        support.</p>
-
-                      </div>
-                    </div>
-                  </div>
-                </div>
-
-                <div class="clear"></div>
-              </td>
-
-              <td id="sidebars-top">
-                <div class="sidebar" id="boost-sidebar">
-                  <div class="sidebar-0">
-                    <div class="sidebar-1">
-                      <div class="sidebar-2">
-                        <div class="sidebar-3">
-                          <div class="sidecell" id="libraries">
-                            <div class="sidecell-0">
-                              <h4>Libraries</h4>
-
-                              <ul>
-                                <li><a href=
-                                "libs/libraries.htm">Documentation</a></li>
-
-                                <li><a href=
-                                "more/license_info.html">License</a></li>
-
-                                <li><a href=
-                                "http://sourceforge.net/project/showfiles.php?group_id=7586">
-                                Download</a></li>
-
-                                <li><a href=
-                                "more/getting_started.html">Getting
-                                Started</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="tests">
-                            <div class="sidecell-0">
-                              <h4>Regression Tests</h4>
-
-                              <ul>
-                                <li><a href=
-                                "status/compiler_status.html">General
-                                Info</a></li>
-
-                                <li><a href=
-                                "http://www.boost.org/regression/release/user/">
-                                Release</a></li>
-
-                                <li><a href=
-                                "http://www.boost.org/regression/developement/developer/">
-                                Development</a></li>
-
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="search">
-                            <div class="sidecell-0">
-                              <h4>Search Boost</h4>
-
-                              <form method="get" action=
-                              "http://www.google.com/custom">
-                                <p><span id="search-text"><input type="text"
-                                name="q" id="q" size="31" maxlength="255"
-                                alt="Search Text" /></span> <span id=
-                                "search-choice"><select name="hq" id="hq">
-                                  <option label="Boost" value=
-                                  "site:www.boost.org">
-                                    Boost
-                                  </option>
-
-                                  <option label="Documentation" value=
-                                  "site:www.boost.org inurl:www.boost.org/libs OR inurl:www.boost.org/doc">
-                                  Documentation
-                                  </option>
-
-                                  <option label="Mailing Lists" value=
-                                  "site:lists.boost.org">
-                                    Mailing Lists
-                                  </option>
-                                </select></span> <span id="go"><input type=
-                                "image" name="search" src="more/space.gif"
-                                alt="Search" id="search-button" /></span>
-                                <span id="google"><a href=
-                                "http://www.google.com/search"><img src=
-                                "more/google_logo_25wht.gif" alt="Google"
-                                width="75" height="32" /> Powered</a></span>
-                                <input type="hidden" name="cof" value=
-                                "LW:277;L:http://www.boost.org/boost.png;LH:86;AH:center;GL:0;S:http://www.boost.org;AWFID:9b83d16ce652ed5a;" />
-                                 <input type="hidden" name="sa" value=
-                                "Google Search" /> <input type="hidden" name=
-                                "domains" value=
-                                "www.boost.org;lists.boost.org" /></p>
-                              </form>
-                            </div>
-                          </div>
-
-                          <div class="clear"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </div>
-                </div>
-
-                <div class="sidebar" id="participation-sidebar">
-                  <div class="sidebar-0">
-                    <div class="sidebar-1">
-                      <div class="sidebar-2">
-                        <div class="sidebar-3">
-                          <div class="sidecell" id="groups">
-                            <div class="sidecell-0">
-                              <h4>Groups</h4>
-
-                              <ul>
-                                <li><a href=
-                                "more/mailing_lists.htm#main">Boost
-                                (Developers)</a></li>
-
-                                <li><a href=
-                                "more/mailing_lists.htm#users">Boost
-                                Users</a></li>
-
-                                <li><a href=
-                                "more/mailing_lists.htm#announce">Announcements</a></li>
-
-                                <li><a href=
-                                "more/mailing_lists.htm#interest">Boost
-                                General Interest</a></li>
-
-                                <li><a href=
-                                "more/mailing_lists.htm#projects">Project-Specific</a></li>
-
-                                <li><a href=
-                                "more/discussion_policy.htm">Discussion
-                                Policy</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="contribute">
-                            <div class="sidecell-0">
-                              <h4>Contribute</h4>
-
-                              <ul>
-                                <li><a href=
-                                "more/formal_review_process.htm">Formal
-                                Reviews</a></li>
-
-                                <li><a href=
-                                "more/formal_review_schedule.html">Review
-                                Schedule</a></li>
-
-                                <li><a href=
-                                "more/lib_guide.htm#Requirements">Requirements</a></li>
-
-                                <li><a href=
-                                "more/lib_guide.htm#Guidelines">Guidelines</a></li>
-
-                                <li><a href=
-                                "more/submission_process.htm">Submissions</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="clear"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </div>
-                </div>
-
-                <div class="sidebar" id="resources-sidebar">
-                  <div class="sidebar-0">
-                    <div class="sidebar-1">
-                      <div class="sidebar-2">
-                        <div class="sidebar-3">
-                          <div class="sidecell" id="support">
-                            <div class="sidecell-0">
-                              <h4>Support</h4>
-
-                              <ul>
-                                <li><a href="more/faq.htm">FAQ</a></li>
-
-                                <li><a href=
-                                "http://sourceforge.net/tracker/?group_id=7586">
-                                Request Support</a></li>
-
-                                <li><a href="more/bugs.htm">Report
-                                Bugs</a></li>
-
-                                <li><a href=
-                                "more/requesting_new_features.htm">Suggest
-                                Features</a></li>
-
-                                <li><a href=
-                                "more/links.htm#CommercialSupport">Commercial
-                                Support</a></li>
-
-                                <li><a href="more/mailing_lists.htm">Mailing
-                                Lists</a></li>
-
-                                <li><a href=
-                                "more/version_history.html">Version
-                                History</a></li>
-
-                                <li><a href=
-                                "more/mailing_lists.htm#IRC">#boost IRC
-                                channel</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="other">
-                            <div class="sidecell-0">
-                              <h4>Other Resources</h4>
-
-                              <ul>
-                                <li><a href=
-                                "http://www.boostcon.com">BoostCon
-                                2007</a></li>
-
-                                <li><a href=
-                                "http://boost-consulting.com/vault/">Vault
-                                Files</a></li>
-
-                                <li><a href=
-                                "http://sourceforge.net/cvs/?group_id=7586">Main
-                                CVS</a></li>
-
-                                <li><a href=
-                                "http://svn.boost.org/trac/boost/wiki/BoostSubversion">Sandbox
-                                SVN</a></li>
-
-                                <li><a href=
-                                "http://engineering.meta-comm.com/boost.aspx">
-                                Snapshots</a></li>
-
-                                <li><a href="tools/index.html">Tools</a></li>
-
-                                <li><a href=
-                                "people/people.htm">People</a></li>
-
-                                <li><a href=
-                                "doc/html/who_s_using_boost_.html">Who's
-                                Using Boost?</a></li>
-
-                                <li><a href=
-                                "more/moderators.html">Moderators</a></li>
-
-                                <li><a href="more/index.htm">More
-                                Boost</a></li>
-
-                                <li><a href="more/links.htm#cpp">More
-                                C++</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="official">
-                            <div class="sidecell-0">
-                              <h4>Official Branch Sites</h4>
-
-                              <ul>
-                                <li><a href=
-                                "http://spirit.sourceforge.net/">Spirit</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="sidecell" id="unofficial">
-                            <div class="sidecell-0">
-                              <h4>Unofficial Branch Sites</h4>
-
-                              <ul>
-                                <li><a href=
-                                "http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl">
-                                Wiki</a></li>
-                              </ul>
-                            </div>
-                          </div>
-
-                          <div class="clear"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </div>
-                </div>
-              </td>
-            </tr>
-
-            <tr>
-              <td id="sidebars-bottom">
-                <div class="sidebar" id="footer-sidebar">
-                  <div class="sidebar-0">
-                    <div class="sidebar-1">
-                      <div class="sidebar-2">
-                        <div class="sidebar-3">
-                          <div class="sidecell" id="footer">
-                            <div class="sidecell-0">
-                              <div id="revised">
-                                <p>Revised $Date: 2007/07/24 19:26:43 $</p>
-                              </div>
-
-                              <div id="copyright">
-                                <p>Copyright Beman Dawes, David Abrahams,
-                                1998-2003.</p>
-
-                                <p>Copyright Rene Rivera 2004-2007.</p>
-                              </div>
-
-                              <div id="license">
-                                <p>Distributed under the Boost Software
-                                License, Version 1.0. (See accompanying file
-                                <a href="LICENSE_1_0.txt">LICENSE_1_0.txt</a>
-                                or copy at <a href=
-                                "http://www.boost.org/LICENSE_1_0.txt">www.boost.org/
-                                LICENSE_1_0.txt</a>)</p>
-                              </div>
-
-                              <div id="banners">
-                                <p><a href=
-                                "http://validator.w3.org/check?uri=referer"><img class="c1"
-                                     src="more/w3c_valid_xhtml10.png" alt=
-                                     "Valid XHTML 1.0!" width="88" height=
-                                     "31" /></a></p>
-
-                                <p><a href=
-                                "http://jigsaw.w3.org/css-validator/check/referer">
-                                <img class="c1" src="more/w3c_valid_css.png"
-                                alt="Valid CSS!" width="88" height=
-                                "31" /></a></p>
-
-                                <p><a href=
-                                "http://sourceforge.net"><img class="c1" src=
-                                "http://sourceforge.net/sflogo.php?group_id=7586&amp;type=1"
-                                     alt="SourceForge.net" /></a></p>
-                              </div>
-                            </div>
-                          </div>
-
-                          <div class="clear"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </div>
-                </div>
-              </td>
-            </tr>
-          </table>
-        </div>
-      </div>
-    </div>
-  </div>
-</body>
-</html>

Deleted: boost/trunk/project-root.jam
===================================================================
--- boost/trunk/project-root.jam	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/project-root.jam	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,6 +0,0 @@
-# Copyright Rene Rivera, Vladimir Prus, David Abrahams
-# 2006. Distributed under the Boost Software License, Version
-# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
-
-path-constant BOOST_ROOT : . ;

Deleted: boost/trunk/rst.css
===================================================================
--- boost/trunk/rst.css	2008-04-08 03:24:58 UTC (rev 14197)
+++ boost/trunk/rst.css	2008-04-12 15:36:22 UTC (rev 14198)
@@ -1,149 +0,0 @@
- at import url("doc/html/boostbook.css");
- at import url("doc/html/docutils.css");
-/* Copyright David Abrahams 2006. Distributed under the Boost
-   Software License, Version 1.0. (See accompanying
-   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
-
-dl.docutils dt {
-  font-weight: bold }
-
-img.boost-logo {
-  border: none;
-  vertical-align: middle
-}
-
-pre.literal-block span.concept {
-  font-style: italic;
-}
-
-.nav { 
-display: inline;
-list-style-type: none;
-}
-
-.prevpage {
-padding-top: -5px;
-text-align: left;
-float: left;
-}
-
-.nextpage {
-padding-top: -20px;
-text-align: right;
-float: right;
-}
-
-div.small {
-   font-size: smaller }
-
-h2 a { 
-   font-size: 90%; 
-}
-h3 a { 
-   font-size: 80%; 
-}
-h4 a { 
-   font-size: 70%; 
-}
-h5 a { 
-   font-size: 60%; 
-}
-
-dl,table
-{
-   text-align: left;
-   font-size: 10pt; 
-   line-height: 1.15;
-}
-
-
-/*=============================================================================
-    Tables
-=============================================================================*/
-
-/* The only clue docutils gives us that tables are logically tables,
-   and not, e.g., footnotes, is that they have border="1".  Therefore
-   we're keying off of that.  We used to manually patch docutils to
-   add a "table" class to all logical tables, but that proved much too
-   fragile.
-*/
-
-    table[border="1"]
-    {
-        width: 92%;
-        margin-left: 4%;
-        margin-right: 4%;
-    }
-    
-    table[border="1"]
-    {
-        padding: 4px;
-    }
-    
-    /* Table Cells */
-    table[border="1"] tr td
-    {
-        padding: 0.5em;
-        text-align: left;
-        font-size: 9pt;
-    }
-
-    table[border="1"] tr th
-    {
-        padding: 0.5em 0.5em 0.5em 0.5em;
-        border: 1pt solid white;
-        font-size: 80%;
-    }
-
-    @media screen
-    {
-    
-    /* Tables */
-        table[border="1"] tr td
-        {
-            border: 1px solid #DCDCDC;
-        }
-    
-        table[border="1"] tr th
-        {
-            background-color: #F0F0F0;
-            border: 1px solid #DCDCDC;
-        }
-
-        pre, 
-        .screen
-        {
-            border: 1px solid #DCDCDC;
-        }
-    
-        td pre
-        td .screen
-        {
-            border: 0px
-        }
-    
-        .sidebar pre
-        {
-            border: 0px
-        }
-    
-    }
-
-    pre, 
-    .screen
-    {
-        font-size: 9pt;
-        display: block;
-        margin: 1pc 4% 0pc 4%;
-        padding: 0.5pc 0.5pc 0.5pc 0.5pc;
-    }
-
-    /* Program listings in tables don't get borders */
-    td pre, 
-    td .screen
-    {
-        margin: 0pc 0pc 0pc 0pc;
-        padding:  0pc 0pc 0pc 0pc;
-    }
-




More information about the pkg-boost-commits mailing list