diff --git a/gui-apps/corekeyboard/Manifest b/gui-apps/corekeyboard/Manifest index 100c395854..7871f3b4a0 100644 --- a/gui-apps/corekeyboard/Manifest +++ b/gui-apps/corekeyboard/Manifest @@ -1 +1,2 @@ DIST corekeyboard-4.2.0.tar.gz 914643 BLAKE2B 3251b023fd75d26f765b789df922f41f58425dc0fe7df5c734af1c01a2d3c63b0a4b5cfe376079654631aa843552110fa130724e17da931728de7c2919f61260 SHA512 d1f8a3d9f07626e3819a32d48227f3e8b706ff609f519fe59119b0540e874d46d84565955bbccbd7ac1658b30b7f07485a4702b013d8ad7f12d01e96ff2afc4a +DIST corekeyboard-v4.5.0.tar.bz2 913715 BLAKE2B 47c350841c1302ab2237a880b38dc71b27533faca1f993ce53a1d28f1e0dd2bc3fcd523ec4e293c680906e56bb99318b30c53122edd45a54ab968dd46cd40a43 SHA512 801aed3650fc34ede1ad74f582eecebc7a961047d898b2d2a256fe74c7b727e029a5ed3aa9bd06061fa5deac89b74503ed687804e3a7a84366950d8bba0a8a3e diff --git a/gui-apps/corekeyboard/corekeyboard-4.5.0.ebuild b/gui-apps/corekeyboard/corekeyboard-4.5.0.ebuild new file mode 100644 index 0000000000..bb057a5623 --- /dev/null +++ b/gui-apps/corekeyboard/corekeyboard-4.5.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg cmake + +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/corekeyboard.git" +else + SRC_URI="https://gitlab.com/cubocore/coreapps/corekeyboard/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtnetwork:5 + dev-qt/qtx11extras:5 + gui-libs/libcprime + x11-libs/libX11 + x11-libs/libXtst +" +RDEPEND="${DEPEND}" diff --git a/gui-apps/corekeyboard/corekeyboard-9999.ebuild b/gui-apps/corekeyboard/corekeyboard-9999.ebuild index 60e84e6b86..bb057a5623 100644 --- a/gui-apps/corekeyboard/corekeyboard-9999.ebuild +++ b/gui-apps/corekeyboard/corekeyboard-9999.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -MY_PV="${PV/_/-}" +EAPI=8 inherit xdg cmake @@ -12,14 +10,13 @@ HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard" if [[ "${PV}" == *9999* ]]; then inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git" + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/corekeyboard.git" else - SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://gitlab.com/cubocore/coreapps/corekeyboard/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-v${MY_PV}" + S="${WORKDIR}/${PN}-v${PV}" fi -RESTRICT="test" LICENSE="GPL-3" SLOT="0" @@ -27,10 +24,10 @@ DEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 + dev-qt/qtnetwork:5 dev-qt/qtx11extras:5 gui-libs/libcprime + x11-libs/libX11 x11-libs/libXtst " -RDEPEND=" - ${DEPEND} -" +RDEPEND="${DEPEND}"