blob: 330186fb4099a00137336caf5efc01360515958e (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit cmake-utils multibuild git-r3
DESCRIPTION="Qt terminal emulator widget"
HOMEPAGE="https://github.com/lxde/qtermwidget"
EGIT_REPO_URI="https://github.com/lxde/qtermwidget.git"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE="qt4 qt5"
REQUIRED_USE="|| ( qt4 qt5 )"
DEPEND="
qt4? ( dev-qt/designer:4
dev-qt/qtcore:4
dev-qt/qtgui:4 )
qt5? ( dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5 )"
RDEPEND="${DEPEND}"
src_prepare() {
MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
default
}
mb_variantx() {
if [[ ${MULTIBUILD_VARIANT} == "$1" ]]; then
echo "${2-ON}"
else
echo "${3-OFF}"
fi
}
src_configure() {
myconfigure() {
local mycmakeargs=(
-DBUILD_DESIGNER_PLUGIN="$(mb_variantx qt4)"
-DUSE_QT5="$(mb_variantx qt5)"
)
cmake-utils_src_configure
}
multibuild_foreach_variant myconfigure
}
src_compile() {
multibuild_foreach_variant cmake-utils_src_compile
}
src_install() {
multibuild_foreach_variant cmake-utils_src_install
}
|