summaryrefslogtreecommitdiff
blob: a9ac8b5c5f44cea5f85306c4cae1ddd8e0e86d9c (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit cmake-utils multibuild

DESCRIPTION="Qt terminal emulator widget"
HOMEPAGE="https://github.com/lxde/qtermwidget"
SRC_URI="https://github.com/lxde/${PN}/releases/download/${PV}/${P}.tar.xz"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
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
}