gui-apps/paperde: bump to 0.1.1_p20210426

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@riseup.net>
This commit is contained in:
Maciej Barć
2021-06-15 12:03:14 +02:00
parent 4d8366bfc1
commit e44ac8d608
2 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST paperde-0.1.1_p20210426.tar.gz 2238328 BLAKE2B 268cd6171cba04e24a872fe1e604c907edc274dc7c6e35f08d84afb4cb4cfef43a8e2d0cf1e2dfefd926172e4146c9228609a00c872f954e77b6a47ef944b375 SHA512 df27178d17e5938076acfdb588f298fbba549a626c8279ea28ab531c311be237dcec8ed4711bdcbe53dd34419b597e4f85441e2800f04f806ea275f2beb922aa

View File

@@ -0,0 +1,60 @@
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake xdg
DESCRIPTION="Simple, sleek QT based DE for wayland using wayfire"
HOMEPAGE="https://gitlab.com/cubocore/paper/paperde"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/cubocore/paper/${PN}.git"
else
COMMIT="15018307192107e2915671d412f3fc900ac5af4b"
SRC_URI="https://gitlab.com/cubocore/paper/${PN}/-/archive/${COMMIT}/paperde-${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-${COMMIT}"
fi
LICENSE="GPL-3"
SLOT="0"
BDEPEND="
kde-frameworks/extra-cmake-modules:5
"
DEPEND="
dev-libs/libdbusmenu-qt
dev-libs/wayland
dev-libs/wayland-protocols
dev-qt/designer:5
dev-qt/qtcore:5
dev-qt/qtgui:5[wayland,X]
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5[X]
gui-libs/libcprime
gui-libs/libcsys
"
RDEPEND="
${DEPEND}
gui-libs/wlroots
gui-wm/wayfire[X]
sys-apps/xdg-desktop-portal
x11-misc/qt5ct
"
src_prepare() {
cmake_src_prepare
xdg_src_prepare
}
src_configure() {
local mycmakeargs=(
-DPKGSHAREDPATH="${EPREFIX}/usr/share/paperde"
-DPKGCONFPATH="${EPREFIX}/etc/xdg/paperde"
)
cmake_src_configure
}