diff -u boost1.38-1.38.0/debian/control boost1.38-1.38.0/debian/control --- boost1.38-1.38.0/debian/control +++ boost1.38-1.38.0/debian/control @@ -27,7 +27,8 @@ Architecture: any Section: libdevel Depends: ${shlibs:Depends}, libstdc++-dev -Recommends: libboost1.38-doc, libboost-date-time1.38-dev, libboost-filesystem1.38-dev, libboost-graph1.38-dev, libboost-iostreams1.38-dev, libboost-math1.38-dev, libboost-mpi1.38-dev, libboost-program-options1.38-dev, libboost-python1.38-dev, libboost-regex1.38-dev, libboost-serialization1.38-dev, libboost-signals1.38-dev, libboost-system1.38-dev, libboost-test1.38-dev, libboost-thread1.38-dev, libboost-wave1.38-dev +Recommends: libboost1.38-doc, libboost-date-time1.38-dev, libboost-filesystem1.38-dev, libboost-graph1.38-dev, libboost-iostreams1.38-dev, libboost-math1.38-dev, libboost-mpi1.38-dev, libboost-program-options1.38-dev, libboost-python1.38-dev, libboost-regex1.38-dev, libboost-serialization1.38-dev, libboost-signals1.38-dev, libboost-system1.38-dev, libboost-test1.38-dev, libboost-thread1.38-dev, libboost-wave1.38-dev, boost-build (>= 2.0-m12-3), xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2) +Suggests: default-jdk (>= 1.4), fop (>= 0.94) Conflicts: libboost-dev (<< 1.35.0), bcp, libboost1.35-dev, libboost1.36-dev, libboost1.37-dev Description: Boost C++ Libraries development files The Boost web site provides free, peer-reviewed, portable C++ source diff -u boost1.38-1.38.0/debian/rules boost1.38-1.38.0/debian/rules --- boost1.38-1.38.0/debian/rules +++ boost1.38-1.38.0/debian/rules @@ -184,6 +184,7 @@ cd tools/bcp && $(JAM) cd tools/inspect/build && $(JAM) + cd tools/quickbook && $(JAM) cd tools/wave/build && $(JAM) cd tools/regression/build && $(JAM) cd libs/python/pyste/install && python setup.py build @@ -211,6 +212,7 @@ rm -rf tools/jam/src/bootstrap rm -rf tools/jam/src/bin.* rm -ff tools/jam/src/bjam + rm -rf tools/regression/build/bin rm -rf bin.v2 dist rm -rf user-config.jam @@ -257,6 +259,20 @@ usr/include dh_install -plibboost$(PKGVERSION)-dev dist/bin/bcp usr/bin dh_installman -plibboost$(PKGVERSION)-dev debian/bcp.1 + # boostbook files + dh_installdirs -plibboost$(PKGVERSION)-dev usr/share/boostbook/xsl + dh_install -plibboost$(PKGVERSION)-dev tools/boostbook/xsl/* \ + usr/share/boostbook/xsl + dh_installdirs -plibboost$(PKGVERSION)-dev usr/share/boostbook/dtd + dh_install -plibboost$(PKGVERSION)-dev tools/boostbook/dtd/* \ + usr/share/boostbook/dtd + # other tools + dh_install -plibboost$(PKGVERSION)-dev dist/bin/inspect usr/bin + dh_install -plibboost$(PKGVERSION)-dev dist/bin/quickbook usr/bin + # tool configuration + dh_installdirs -plibboost$(PKGVERSION)-dev etc/boost-build + dh_install -plibboost$(PKGVERSION)-dev debian/boost-tools.jam \ + etc/boost-build # package libboost-doc rm -rf $(htmldir) diff -u boost1.38-1.38.0/debian/changelog boost1.38-1.38.0/debian/changelog --- boost1.38-1.38.0/debian/changelog +++ boost1.38-1.38.0/debian/changelog @@ -1,3 +1,14 @@ +boost1.38 (1.38.0-7) unstable; urgency=low + + * debian/control: Recommend and suggest helper packages for use + with boost tools. + * debian/rules: Install boostbook, quickbook and inspect tools + as part of libboost1.38-dev + * debian/boost-tools.jam: New. Configure boost-build to find + the tools. + + -- Bernhard Reiter Wed, 03 Jun 2009 02:03:36 +0200 + boost1.38 (1.38.0-6) unstable; urgency=low * control: Add version (<< 1.35.0) to conflicts for -doc and -dbg only in patch2: unchanged: --- boost1.38-1.38.0.orig/debian/boost-tools.jam +++ boost1.38-1.38.0/debian/boost-tools.jam @@ -0,0 +1,9 @@ +# Boost tools configuration + +# Boostbook +import boostbook-config ; + +# Quickbook +import xsltproc-config ; +using doxygen ; +import quickbook-config ;