gui-apps/sddm-conf: new package, add 0.2.0

Signed-off-by: Thomas Clarke <TomClarke2006@hotmail.com>
This commit is contained in:
Thomas Clarke
2024-05-29 15:28:51 +01:00
parent 12ae18da99
commit 520876d822
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST 0.2.0.tar.gz 133748 BLAKE2B 14eafcd74a9f36b163ed782a3daf5ee9087065ee856ac461e4930b6b4b71d9f5a6afbb232745c2bfc8876745d036cc219c1e3202e8946f35e5e27fb860f1e85d SHA512 86530df07fb7d8b4f3fd849f2f39fe858f2e88979a6fb237d9ba78ab8c97f9e4fd56af84f3c57e8063388994ba45f35b73fc44fe36d0e64d901644b0bf2d8b22

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>tomclarke2006@gotmail.com</email>
<name>Thomas Clarke</name>
</maintainer>
<longdescription>
SDDM configuration editor
</longdescription>
<upstream>
<remote-id type="github">qtilities/sddm-conf</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,39 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="SDDM configuration editor"
HOMEPAGE="https://qtilities.github.io/"
SRC_URI="https://github.com/qtilities/${PN}/archive/refs/tags/${PV}.tar.gz"
S="${WORKDIR}/${PN}-0.2.0"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-qt/qtbase
sys-auth/polkit
x11-misc/sddm
"
DEPEND="${RDEPEND} "
BDEPEND="
dev-build/cmake
dev-qt/qttools
dev-build/qtilitools
dev-qt/linguist-tools
"
src_configure() {
local mycmakeargs=(
"-DCMAKE_INSTALL_PREFIX=/usr"
)
cmake_src_configure
}
src_install() {
cmake_src_install
}