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 coreinfo-4.0.0.tar.gz 52156 BLAKE2B 72225ded45603aa5b05682e195d033dc93e462ef6f28f7cce65c2dd4a29efd0e4b62598fbe6646a0d58c8e249cc6b0fded54ad7bfe50081c65b831089b63933b SHA512 d0a0a900ddb201504dd5d331a14317b30173ea35de53306363e1c904629e29d82c0720ff931a88cf780c455d1b3202611090c762594c4758b65a249989249db9
DIST coreinfo-4.1.0.tar.gz 52699 BLAKE2B a4ee3a52bac8d6b4e17876dc5f1553c82472091a641299a2ff32e9bc24e2e3c8f8d7c12cc7fb1865e0b1a4cd04b87ea2cd6fd56e3385553681fec98163948fa3 SHA512 a34ecb108b947c9d80bb2a796c54710cd0392d8a5cc728233712af14f23d3516e4d95925bef0dcbb58e79fde2a5563187a355e1ca9d73682566bfe02fb54bf6a

View File

@@ -0,0 +1,55 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils xdg
DESCRIPTION="A file information tool for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
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
gui-libs/libcprime
media-libs/libmediainfo
media-libs/libzen
sys-libs/zlib
"
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
}