mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
61 lines
1.2 KiB
Bash
61 lines
1.2 KiB
Bash
# 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
|
|
# _alpha -> -alpha
|
|
MY_PV="${PV/_/-}"
|
|
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"
|
|
|
|
BDEPEND="
|
|
kde-frameworks/extra-cmake-modules
|
|
"
|
|
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
|
|
}
|