blob: 65ddfd653e42af8ac3e69cf403f8e493f064ba32 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils git-r3
DESCRIPTION="Additional style plugins for Qt5 (gtk2, cleanlook, plastic, motif)"
HOMEPAGE="https://code.qt.io/cgit/qt/qtstyleplugins.git/"
EGIT_REPO_URI="https://code.qt.io/qt/qtstyleplugins.git"
EGIT_COMMIT="v${PV}"
LICENSE="LGPL-2"
SLOT="5"
KEYWORDS="x86 amd64"
DEPEND="
x11-libs/gtk+:2
dev-qt/qtgui:5
dev-qt/qtdbus:5
x11-libs/libX11"
RDEPEND="${DEPEND}"
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
pkg_postinst() {
elog ""
elog "To make Qt5 applications use the gtk2 style"
elog "insert the following into ~/.profile:"
elog "QT_QPA_PLATFORMTHEME=gtk2"
elog "For environments using ~/.pam_environment (gnome wayland):"
elog "QT_QPA_PLATFORMTHEME OVERRIDE=gtk2"
elog ""
}
|