2018-04-11 18:13:57 +02:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
2018-04-15 23:43:27 +02:00
|
|
|
inherit cmake-utils eapi7-ver gnome2-utils xdg-utils
|
2018-04-11 18:13:57 +02:00
|
|
|
|
|
|
|
if [[ ${PV} = *9999* ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
|
|
|
|
else
|
2018-04-11 18:33:36 +02:00
|
|
|
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
|
2018-04-11 18:13:57 +02:00
|
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
|
|
fi
|
|
|
|
|
2018-04-15 23:21:59 +02:00
|
|
|
DESCRIPTION="Qt-based multitab terminal emulator"
|
|
|
|
HOMEPAGE="https://github.com/lxqt/qterminal"
|
|
|
|
|
|
|
|
LICENSE="GPL-2+"
|
2018-04-11 18:13:57 +02:00
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
dev-qt/qtcore:5
|
|
|
|
dev-qt/qtdbus:5
|
2018-04-16 22:14:12 +02:00
|
|
|
dev-qt/qtgui:5=
|
2018-04-11 18:13:57 +02:00
|
|
|
dev-qt/qtwidgets:5
|
|
|
|
dev-qt/qtx11extras:5
|
|
|
|
x11-libs/libX11
|
2018-04-15 23:21:59 +02:00
|
|
|
=x11-libs/qtermwidget-$(ver_cut 1-2)*
|
2018-04-11 18:13:57 +02:00
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
2018-04-15 23:21:59 +02:00
|
|
|
>=dev-util/lxqt-build-tools-0.4.0
|
2018-04-11 18:13:57 +02:00
|
|
|
"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local mycmakeargs=(
|
|
|
|
-DPULL_TRANSLATIONS=OFF
|
|
|
|
)
|
|
|
|
cmake-utils_src_configure
|
|
|
|
}
|
2018-04-15 23:21:59 +02:00
|
|
|
|
|
|
|
pkg_postinst() {
|
2018-04-15 23:43:27 +02:00
|
|
|
xdg_desktop_database_update
|
2018-04-15 23:21:59 +02:00
|
|
|
gnome2_icon_cache_update
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
2018-04-15 23:43:27 +02:00
|
|
|
xdg_desktop_database_update
|
2018-04-15 23:21:59 +02:00
|
|
|
gnome2_icon_cache_update
|
|
|
|
}
|