diff options
author | Thomas Clarke <TomClarke2006@hotmail.com> | 2024-05-29 15:28:51 +0100 |
---|---|---|
committer | Thomas Clarke <TomClarke2006@hotmail.com> | 2024-05-29 15:28:51 +0100 |
commit | 520876d822c0c050ece141a628777f8e66663716 (patch) | |
tree | 958d8c5a23e00c9bd016a2bbddcbfdc401a6c78e /gui-apps/sddm-conf | |
parent | net-im/teams-for-linux: add 1.5.2 (diff) | |
download | guru-520876d822c0c050ece141a628777f8e66663716.tar.gz guru-520876d822c0c050ece141a628777f8e66663716.tar.bz2 guru-520876d822c0c050ece141a628777f8e66663716.zip |
gui-apps/sddm-conf: new package, add 0.2.0
Signed-off-by: Thomas Clarke <TomClarke2006@hotmail.com>
Diffstat (limited to 'gui-apps/sddm-conf')
-rw-r--r-- | gui-apps/sddm-conf/Manifest | 1 | ||||
-rw-r--r-- | gui-apps/sddm-conf/metadata.xml | 14 | ||||
-rw-r--r-- | gui-apps/sddm-conf/sddm-conf-0.2.0.ebuild | 39 |
3 files changed, 54 insertions, 0 deletions
diff --git a/gui-apps/sddm-conf/Manifest b/gui-apps/sddm-conf/Manifest new file mode 100644 index 000000000..511552a6c --- /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 000000000..16f60776b --- /dev/null +++ b/gui-apps/sddm-conf/metadata.xml @@ -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> 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 000000000..b4f54f256 --- /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 +} |