summaryrefslogtreecommitdiff
blob: 7449dca1bb6418d0d7a4a64b693022250b1cc84c (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: boost.eselect-0.2,v 1.2 2010/01/22 15:00:56 jer Exp $

# This eclass-module has been initially written by Łukasz Michalik <lmi@ift.uni.wroc.pl>
# Corrections and extensions by Tiziano Müller <dev-zero@gentoo.org>

DESCRIPTION="Manage boost installations"

_boost_tools="bcp bjam compiler_status inspect library_status process_jam_log quickbook wave"

find_targets() {
	local f
	for f in "${ROOT}"/usr/include/boost-[[:digit:]]* ; do
		[[ -d "${f}" ]] && echo $(basename "${f}")
	done
}

remove_installation() {
	local link
	for link in "${ROOT}/usr/include/boost" "${ROOT}/usr/share/boostbook" ; do
		if [[ -L "${link}" ]] ; then
			rm "${link}" || die -q "Couldn't remove \"${link}\" symlink"
		else
			[[ -e "${link}" ]] && die -q "\"${link}\" exists and isn't a symlink"
		fi
	done

	pushd "${ROOT}/usr/%LIBDIR%" 1>/dev/null
	local lib
	for lib in libboost_*.{a,so} ; do
		[[ -L "${lib}" && "${lib}" != libboost_*[[:digit:]]_[[:digit:]][[:digit:]].@(a|so) ]] || continue
		rm "${lib}" || die -q "Unable to remove \"/usr/%LIBDIR%/${lib}\" symlink"
	done
	popd 1>/dev/null

	pushd "${ROOT}"/usr/bin 1>/dev/null
	local tool
	for tool in ${_boost_tools} ; do
		[[ -L "${tool}" ]] && ( rm "${tool}" || die -q "Unable to remove \"/usr/bin/${tool}\" symlink" )
	done
	popd 1>/dev/null

	local mod="mpi.so"
	for moddir in "${ROOT}"/usr/%LIBDIR%/python*/site-packages ; do
		if [ -L "${moddir}/${mod}" ] ; then
			rm "${moddir}/${mod}" || die -q "Unable to remove \"${moddir}/${mod}\" symlink"
		else
			[[ -e "${moddir}/${mod}" ]] && die -q "\"${moddir}/${mod}\" exists and isn't a symlink"
		fi
	done
}

set_installation() {
	[[ -z "${2}" ]] && die -q "Too few parameters to set_installation()"
	local target="${1}"
	local version="${2}"

	if [[ -d "${ROOT}/usr/include/${target}" ]] ; then
		pushd "${ROOT}/usr/include" 1>/dev/null
		ln -s "${target}/boost" boost || die -q "Couldn't create symlink \"/usr/include/boost\""
		popd 1>/dev/null

		pushd "${ROOT}/usr/share/" 1>/dev/null
		[[ -d "boostbook-${version}" ]] && \
			( ln -s "boostbook-${version}" "boostbook" || die -q "Couldn't create symlink \"/usr/bin/${tool}\"" )
		popd 1>/dev/null

		pushd "${ROOT}/usr/%LIBDIR%" 1>/dev/null
		local lib
		for lib in libboost_*-"${version}".{a,so} ; do
			[[ -e "${lib}" ]] && \
				( ln -s "${lib}" "${lib//-${version}}" || die -q "Couldn't create symlink \"/usr/%LIBDIR%/${lib}\"" )
		done
		popd 1>/dev/null

		pushd "${ROOT}/usr/bin/" 1>/dev/null
		local tool
		for tool in ${_boost_tools} ; do
			[[ -e "${tool}" ]] && die -q "\"/usr/bin/${tool}\" exists and isn't a symlink"
			[[ -e "${tool}-${version}" ]] && \
				( ln -s "${tool}-${version}" "${tool}" || die -q "Couldn't create symlink \"/usr/bin/${tool}\"" )
		done
		popd 1>/dev/null

		local mod="mpi.so"
		for moddir in "${ROOT}"/usr/%LIBDIR%/python*/site-packages ; do
			pushd "${moddir}" 1>/dev/null
			[[ -e "${mod}" ]] && die -q "\"${moddir}/${mod}\" exists and isn't a symlink"
			[[ -e "mpi_${version}/mpi.so" ]] && \
				( ln -s "mpi_${version}/${mod}" "${mod}" || die -q "Couldn't create symlink \"${moddir}/${mod}\"" )
			popd 1>/dev/null
		done

	else
		die -q "Target \"${target}\" doesn't appear to be valid!"
	fi
}

### show action ###

describe_show() {
	echo "Show the current boost version used"
}

do_show() {
	local include

	write_list_start "Current boost version:"
	if [[ -L "${ROOT}"/usr/include/boost ]] ; then
		include=$(basename $(dirname $(canonicalise "${ROOT}"/usr/include/boost )))
		write_kv_list_entry "${include%/}" ""
	else
		write_kv_list_entry "(unset)" ""
	fi
}

### list action ###

describe_list() {
	echo "List available boost versions"
}

do_list() {
	local targets=( $(find_targets ) )
	write_list_start "Available boost versions:"
	if [[ -n "${targets[@]}" ]] ; then
		local i
		for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do
			[[ "${targets[${i}]}" == $(basename $(dirname $(canonicalise "${ROOT}"/usr/include/boost))) ]] && \
				targets[${i}]="${targets[${i}]} $(highlight '*' )"
		done
		write_numbered_list "${targets[@]}"
	else
		write_kv_list_entry "(none found)" ""
	fi
}

### set action ###

describe_set() {
	echo "Set a new boost version"
}

describe_set_parameters() {
	echo "<target>"
}

describe_set_options() {
	echo "target : Target name or number (from 'list' action)"
}

do_set() {
	if [[ -z "${1}" ]] ; then
		# no parameter
		die -q "You didn't tell me what to set the version to"
	fi

	local target="${1}"
	if is_number "${target}" ; then
		targets=($(find_targets))
		target="${targets[$((${target} - 1))]}"
	fi
	local version="${target//boost-}"

	if [[ -L "${ROOT}"/usr/include/boost ]] ; then
		if ! remove_installation ; then
			die -q "Couldn't unset existing installation"
		elif ! set_installation "${target}" "${version}" ; then
			die -q "Couldn't set a new installation"
		fi
	elif [[ -e "${ROOT}"/usr/include/boost ]] ; then
		die -q "Sorry, existing boost installation confuses me"
	else
		set_installation "${target}" "${version}" || die -q "Couldn't set a new version"
	fi
}

### update action ###

describe_update() {
	echo "Automaticly update boost version used"
}

do_update() {
	local current=
	if [[ -L "${ROOT}/usr/include/boost" ]]; then
		current=$(basename $(canonicalise "${ROOT}/usr/include/boost") )
		if [[ ! -e $(canonicalise "${ROOT}/usr/include/boost") ]]; then
			# clean up dead symlinks
			remove_installation || die -q "Couldn't remove existing installation"
		fi
	elif [[ -e "${ROOT}/usr/include/boost" ]]; then
		die -q "Sorry, \"/usr/include/boost\" exists but is not a symlink"
	fi

	local targets=($(find_targets))
	if [[ ${#targets[@]} -gt 0 ]]; then
		remove_installation
		local target="${targets[@]:(-1)}"
		set_installation "${target}" "${target//boost-}" || die -q "Couldn't set a new symlink"
	else
		die -q "No slotted boost version found"
	fi
}