gui-apps/core*: bump to 4.1.0

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
Maciej Barć
2020-12-02 22:35:56 +01:00
parent 9a7f6f6791
commit 3057f7e12c
37 changed files with 1019 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST corekeyboard-4.0.0.tar.gz 912573 BLAKE2B aee15c6435635cb035a7c11ec17f5cf10c1eac8102b660d8691bbe6710987e825ee52a13e58cdfb298596ebf311deb6fd1a3bfa543d6dc9a590aa9487250a870 SHA512 61b68ff7f2a68e67c8c5ae64a6afb3bc7b108b1d6a5e918592f30dd89fc4b966c7dc450624bf23c30497f92057efc902ef2ce739ae720091fa2b1761c64c8556
DIST corekeyboard-4.1.0.tar.gz 912580 BLAKE2B d912022af88bd927c4ad76a74b1032d2dfb2f2f9d338fd7dc78c91b44492b5a0d2e99dd645bcbc1c45787c54d7f730a91d190b60be3aa1bd40b0c47acc63e06c SHA512 e6678f96cc120c89f7618f058b3d032db8b4b1e8868a0a2c86d5caff109998a7036017a7bfd3e538227bd9f2fab0488fe29781cf9278b4cd6b98d02cedb947c1

View File

@@ -0,0 +1,53 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils xdg
DESCRIPTION="A x11 based virtual keyboard for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
else
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
fi
RESTRICT="mirror test"
LICENSE="GPL-3"
SLOT="0"
DEPEND="
dev-qt/qtcore:5=
dev-qt/qtgui:5=
dev-qt/qtwidgets:5=
dev-qt/qtx11extras:5
gui-libs/libcprime
"
RDEPEND="
${DEPEND}
"
src_prepare() {
default
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
}
src_configure() {
eqmake5
}
src_compile() {
emake
}
src_install() {
einstalldocs
emake INSTALL_ROOT="${D}" install
}