From 520876d822c0c050ece141a628777f8e66663716 Mon Sep 17 00:00:00 2001 From: Thomas Clarke Date: Wed, 29 May 2024 15:28:51 +0100 Subject: [PATCH] gui-apps/sddm-conf: new package, add 0.2.0 Signed-off-by: Thomas Clarke --- gui-apps/sddm-conf/Manifest | 1 + gui-apps/sddm-conf/metadata.xml | 14 ++++++++ gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild | 39 +++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 gui-apps/sddm-conf/Manifest create mode 100644 gui-apps/sddm-conf/metadata.xml create mode 100644 gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild diff --git a/gui-apps/sddm-conf/Manifest b/gui-apps/sddm-conf/Manifest new file mode 100644 index 0000000000..511552a6c9 --- /dev/null +++ b/gui-apps/sddm-conf/Manifest @@ -0,0 +1 @@ +DIST 0.2.0.tar.gz 133748 BLAKE2B 14eafcd74a9f36b163ed782a3daf5ee9087065ee856ac461e4930b6b4b71d9f5a6afbb232745c2bfc8876745d036cc219c1e3202e8946f35e5e27fb860f1e85d SHA512 86530df07fb7d8b4f3fd849f2f39fe858f2e88979a6fb237d9ba78ab8c97f9e4fd56af84f3c57e8063388994ba45f35b73fc44fe36d0e64d901644b0bf2d8b22 diff --git a/gui-apps/sddm-conf/metadata.xml b/gui-apps/sddm-conf/metadata.xml new file mode 100644 index 0000000000..16f60776bd --- /dev/null +++ b/gui-apps/sddm-conf/metadata.xml @@ -0,0 +1,14 @@ + + + + + tomclarke2006@gotmail.com + Thomas Clarke + + + SDDM configuration editor + + + qtilities/sddm-conf + + diff --git a/gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild b/gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild new file mode 100644 index 0000000000..b4f54f256e --- /dev/null +++ b/gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild @@ -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 +}