blob: 6582e4b0d479c421a37fcfd902b005aad3fefc2a (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils toolchain-funcs
DESCRIPTION="Tool to quickly switch between multiple Qt installations"
HOMEPAGE="https://code.qt.io/cgit/qtsdk/qtchooser.git/"
SRC_URI="http://download.qt.io/official_releases/${PN}/${P}.tar.xz"
LICENSE="|| ( LGPL-2.1 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="test"
DEPEND="test? (
dev-qt/qtcore:5
dev-qt/qttest:5
)"
RDEPEND=""
qtchooser_make() {
emake \
CXX="$(tc-getCXX)" \
LFLAGS="${LDFLAGS}" \
prefix="${EPREFIX}/usr" \
"$@"
}
src_compile() {
qtchooser_make
}
src_test() {
pushd tests/auto >/dev/null || die
eqmake5
popd >/dev/null || die
qtchooser_make check
}
src_install() {
qtchooser_make INSTALL_ROOT="${D}" install
keepdir /etc/xdg/qtchooser
# TODO: bash and zsh completion
# newbashcomp scripts/${PN}.bash ${PN}
}
|