summaryrefslogtreecommitdiff
blob: 1f946a416a14ba3176b2ad4c469463499ad8f9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/boost-utils.eclass,v 1.3 2012/10/07 08:29:49 mgorny Exp $

if [[ ! ${_BOOST_ECLASS} ]]; then

# @ECLASS: boost-utils.eclass
# @MAINTAINER:
# Michał Górny <mgorny@gentoo.org>
# Tiziano Müller <dev-zero@gentoo.org>
# Sebastian Luther <SebastianLuther@gmx.de>
# Arfrever Frehtes Taifersar Arahesis <arfrever.fta@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.
#
# Please note that this eclass does not set the dependencies for you.
# You need to do that yourself.
#
# For cmake & autotools it is usually necessary to set BOOST_ROOT using
# boost-utils_export_root. However, other build system may require more
# hackery or even appending -I$(boost-utils_get_includedir) to CFLAGS
# and -L$(boost-utils_get_libdir) to LDFLAGS.

case ${EAPI:-0} in
	0|1|2|3|4|5) ;;
	*) die "${ECLASS}.eclass API in EAPI ${EAPI} not yet established."
esac

inherit multilib versionator

# @ECLASS-VARIABLE: BOOST_MAX_SLOT
# @DEFAULT_UNSET
# @DESCRIPTION:
# The maximal (newest) boost slot supported by the package. If unset,
# there is no limit (the newest installed version will be used).

# @FUNCTION: boost-utils_get_best_slot
# @DESCRIPTION:
# Get newest installed slot of Boost. If BOOST_MAX_SLOT is set, the version
# returned will be at most in the specified slot.
boost-utils_get_best_slot() {
	local pkg=dev-libs/boost
	[[ ${BOOST_MAX_SLOT} ]] && pkg="<=${pkg}-${BOOST_MAX_SLOT}.9999"

	local cpv=$(best_version ${pkg})
	get_version_component_range 1-2 ${cpv#dev-libs/boost-}
}

# @FUNCTION: boost-utils_get_includedir
# @USAGE: [slot]
# @DESCRIPTION:
# Get the includedir for the given Boost slot. If no slot is given,
# defaults to the newest installed Boost slot (but not newer than
# BOOST_MAX_SLOT if that variable is set).
#
# Outputs the sole path (without -I).
boost-utils_get_includedir() {
	local slot=${1:-$(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 the given Boost slot. If no slot is given, defaults
# to the newest installed Boost slot (but not newer than BOOST_MAX_SLOT
# if that variable is set).
#
# Outputs the sole path (without -L).
boost-utils_get_libdir() {
	local slot=${1:-$(boost-utils_get_best_slot)}
	has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX=

	echo -n "${EPREFIX}/usr/$(get_libdir)/boost-${slot/./_}"
}

# @FUNCTION: boost-utils_export_root
# @USAGE: [slot]
# @DESCRIPTION:
# Set the BOOST_ROOT variable to includedir for the given Boost slot.
# If no slot is given, defaults to the newest installed Boost slot(but
# not newer than BOOST_MAX_SLOT if that variable is set).
#
# This variable satisfies both cmake and sys-devel/boost-m4 autoconf
# macros.
boost-utils_export_root() {
	export BOOST_ROOT=$(boost-utils_get_includedir "${@}")
}

_BOOST_ECLASS=1
fi # _BOOST_ECLASS