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 corepdf-4.0.0.tar.gz 115775 BLAKE2B f8b43c69d30d30d89bcc1f01719dacd48be1b453a6ba1fe932ab9d71137d92ffa87e12ccd0e3ab0c47a867ab6e431b9150307a05d90ad8836d395ba9d68f6acf SHA512 c28de6f79f78cba1fd1fa34f9cff552133e396523e9f50ac8eeff94511d4179d0d405eb4af415f61d34df28809f521c7e6f9f196a007e6995f79d4c237d23310
DIST corepdf-4.1.0.tar.gz 115777 BLAKE2B 1e333c3ca16375186b5b3b379d3e2d344d7b4064bc03c7c282ec6b2bed3b4b02c9bafd9d71f6242656c2193daecf58b951899fa853ad2833ca33a5fb32361faa SHA512 dcc9a5cb5d8566f783c1fc680f596f54261ac1e6b679e13043e9b7146e3bbddc8527d57e48ea359a748b4a6f3106cb2c97b8bd41c5c51bcf9d0e4cf558b1da99

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 PDF viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
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="
app-text/poppler[qt5]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets: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
}