bump non-liblxqt dependent things to new versions

This commit is contained in:
2018-04-15 23:21:59 +02:00
parent 6548144a93
commit 6f06f22917
11 changed files with 155 additions and 3 deletions

View File

@@ -0,0 +1 @@
DIST qtermwidget-0.8.0.tar.xz 160904 BLAKE2B 47a807ea77c5b243593f45c22eb556ae59198a6362bb3d36e642a813667daf4a6be1883fb9e045f471fe8184ccc5a6c226abd7bf8d1f0ee14517308086d08d58 SHA512 2e1354b457d49ae2ad37479259549b279f8bb381ce6bce2d18eb3f845af615e796a9d0bd143156b485a1b2abeffc83e686d85f9ee157611b20c8c1bb3254fe82

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>qt@gentoo.org</email>
<name>Gentoo Qt Project</name>
</maintainer>
<longdescription lang="en">
QTermWidget is an opensource project based on KDE4 Konsole application.
The main goal of this project is to provide unicode-enabled, embeddable
Qt widget for using as a built-in console or terminal emulation widget.
</longdescription>
<upstream>
<remote-id type="github">lxqt/qtermwidget</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
DESCRIPTION="Qt terminal emulator widget"
HOMEPAGE="https://github.com/lxqt/qtermwidget"
LICENSE="GPL-2+"
SLOT="0"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
"
DEPEND="${RDEPEND}
>=dev-util/lxqt-build-tools-0.4.0
"
src_configure() {
local mycmakeargs=(
-DPULL_TRANSLATIONS=OFF
)
cmake-utils_src_configure
}