You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
970 B
46 lines
970 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
QT5_MODULE="qttools"
|
|
inherit desktop gnome2-utils qt5-build
|
|
|
|
DESCRIPTION="Graphical tool that lets you introspect D-Bus objects and messages"
|
|
|
|
if [[ ${QT5_BUILD_TYPE} == release ]]; then
|
|
KEYWORDS="amd64 ~arm ~hppa ppc64 x86 ~amd64-fbsd"
|
|
fi
|
|
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
~dev-qt/qtcore-${PV}
|
|
~dev-qt/qtdbus-${PV}
|
|
~dev-qt/qtgui-${PV}
|
|
~dev-qt/qtwidgets-${PV}
|
|
~dev-qt/qtxml-${PV}
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
QT5_TARGET_SUBDIRS=(
|
|
src/qdbus/qdbusviewer
|
|
)
|
|
|
|
src_install() {
|
|
qt5-build_src_install
|
|
|
|
doicon -s 32 src/qdbus/qdbusviewer/images/qdbusviewer.png
|
|
newicon -s 128 src/qdbus/qdbusviewer/images/qdbusviewer-128.png qdbusviewer.png
|
|
make_desktop_entry "${QT5_BINDIR}"/qdbusviewer 'Qt 5 QDBusViewer' qdbusviewer 'Qt;Development'
|
|
}
|
|
|
|
pkg_postinst() {
|
|
qt5-build_pkg_postinst
|
|
gnome2_icon_cache_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
qt5-build_pkg_postrm
|
|
gnome2_icon_cache_update
|
|
}
|