It just covers the basic idea of getting includedir/libdir. As many different packages require different hackeries, there is probably no good way of handling that.
I'd appreciate further ideas, feedback, and possibly an example from someone who will use it. --- gx86/eclass/boost-utils.eclass | 76 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 gx86/eclass/boost-utils.eclass diff --git a/gx86/eclass/boost-utils.eclass b/gx86/eclass/boost-utils.eclass new file mode 100644 index 0000000..c878b16 --- /dev/null +++ b/gx86/eclass/boost-utils.eclass @@ -0,0 +1,76 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +if [[ ! ${_BOOST_ECLASS} ]]; then + +# @ECLASS: boost-utils.eclass +# @MAINTAINER: +# Michał Górny <mgo...@gentoo.org> +# Tiziano Müller <dev-z...@gentoo.org> +# Sebastian Luther <sebastianlut...@gmx.de> +# Arfrever Frehtes Taifersar Arahesis <arfrever....@gmail.com> +# @BLURB: helper functions for packages using Boost C++ library +# @DESCRIPTION: +# Helper functions to be used when building packages using the Boost C++ +# library collection. + +case ${EAPI:-0} in + 0|1|2|3|4) ;; + *) die "${ECLASS}.eclass API in EAPI ${EAPI} not yet established." +esac + +inherit multilib versionator + +# @ECLASS-VARIABLE: BOOST_MAX_VERSION +# @DEFAULT_UNSET +# @DESCRIPTION: +# The maximal (newest) boost version supported by the package. If unset, +# the newest installed version will be used. +# +# Please note that if BOOST_MAX_VERSION is set, the package should +# depend on boost packages with *exactly* that slot (i.e. boost:1.47); +# otherwise, the package should depend on boost without a slot +# specified (i.e. >=boost-1.45). + +# @FUNCTION: boost-utils_get_best_slot +# @DESCRIPTION: +# Get newest installed slot of Boost. +boost-utils_get_best_slot() { + local pkg=dev-libs/boost + local atom=$(best_version ${pkg}) + get_version_component_range 1-2 ${atom#${pkg}} +} + +# @FUNCTION: boost-utils_get_includedir +# @USAGE: [slot] +# @DESCRIPTION: +# Get the includedir for given Boost slot. If no slot is given, defaults +# to ${BOOST_MAX_VERSION}. If that variable is unset, newest installed +# slot will be used. +# +# Output the sole path (without -I). +boost-utils_get_includedir() { + local slot=${1:-${BOOST_MAX_VERSION:-$(boost-utils_get_best_slot)}} + has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= + + echo -n "${EPREFIX}/usr/include/boost-${slot/./_}" +} + +# @FUNCTION: boost-utils_get_libdir +# @USAGE: [slot] +# @DESCRIPTION: +# Get the libdir for given Boost slot. If no slot is given, defaults +# to ${BOOST_MAX_VERSION}. If that variable is unset, newest installed +# slot will be used. +# +# Output the sole path (without -L). +boost-utils_get_libdir() { + local slot=${1:-${BOOST_MAX_VERSION:-$(boost-utils_get_best_slot)}} + has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= + + echo -n "${EPREFIX}/usr/$(get_libdir)/boost-${slot/./_}" +} + +_BOOST_ECLASS=1 +fi # _BOOST_ECLASS -- 1.7.12