The boost C++ library consists of several components. Some components do include shared libraries, other don't.
Under a Fedora 14 system I've looked a bit around with yum search boost and rpm -qR and indeed like with other distributions the boost library is split into several packages.
For example there is boost-program-options which only contains the shared libraries of the boost program-options component.
It seems that package boost depends on all shared-library sub-packages. There is boost-devel which seems to provide all headers and depends on all shared-library sub-packages (via boost).
Am I right that it is not possible to just install the boost headers via yum (using the default repositories) without all boost shared library packages?

yum install boost, I am told that the download is just 22k!! I could find very little documentation to help me. Are you saying thatboost-develis what I should install? – Agnel Kurian Jun 23 '12 at 13:47boost-develwhich installs all headers and depends on all shared libraries of boost. Anyways, installingboost-develshould be safe. In addition, there is alsoboost-docwhich includes the Boost documentation (which is also available online). – maxschlepzig Jun 24 '12 at 16:21