gui-apps/paperde: version bump to 0.1.1

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
Aisha Tammy
2021-04-22 08:43:06 -04:00
parent 861f741984
commit a2bc3bbf0a
2 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# _alpha -> -alpha
MY_PV="${PV/_/-}"
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
SRC_URI="https://gitlab.com/cubocore/paper/${PN}/-/archive/v${MY_PV}/${PN}-v${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${MY_PV}"
fi
LICENSE="GPL-3"
SLOT="0"
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-wm/wayfire-0.7.0[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
}