summaryrefslogtreecommitdiff
path: root/dev-build
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-05 19:59:10 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-05 19:59:10 +0000
commit166802665d0efaeab9a68a2e890fe3fbbd9eaa44 (patch)
tree173243f34a08c1c6267da514d0e6c176ba609cc9 /dev-build
parent2ebba2ef6b80896e051dfc98b90c88af971b69f3 (diff)
downloadbaldeagleos-repo-166802665d0efaeab9a68a2e890fe3fbbd9eaa44.tar.gz
baldeagleos-repo-166802665d0efaeab9a68a2e890fe3fbbd9eaa44.tar.xz
baldeagleos-repo-166802665d0efaeab9a68a2e890fe3fbbd9eaa44.zip
Adding metadata
Diffstat (limited to 'dev-build')
-rw-r--r--dev-build/dolphin-plugins-makefileactions/Manifest1
-rw-r--r--dev-build/dolphin-plugins-makefileactions/dolphin-plugins-makefileactions-25.12.3.ebuild60
2 files changed, 61 insertions, 0 deletions
diff --git a/dev-build/dolphin-plugins-makefileactions/Manifest b/dev-build/dolphin-plugins-makefileactions/Manifest
index 1950fa1f20ff..bb5f49b6b113 100644
--- a/dev-build/dolphin-plugins-makefileactions/Manifest
+++ b/dev-build/dolphin-plugins-makefileactions/Manifest
@@ -1 +1,2 @@
DIST dolphin-plugins-25.12.2.tar.xz 337120 BLAKE2B 30979c4bbce83f1d1b80e06f425d4755535501b86030a0f01308e0235400006960483653a4588a921c6453183b040f75e1c750b92531acd2887e40d80e02b95e SHA512 d4cb531255785f860ac98c679daf84b7c27660c20a758cdfd2887e39c7e793a5dcb3087ed9eed6d9d160f8c18ac7907e9b43c61c6e1b88408f2abaeb4fd2688c
+DIST dolphin-plugins-25.12.3.tar.xz 337964 BLAKE2B ca59dcec606af363da0ffe6bba9de4165f94c738cb8249d0f2f93f294dbaa00a2d2a2a7bf739be01519a0f1faf868cad9ba87ea6447634c45814a2ab80c238b4 SHA512 e79f80cd17f1acb7a8160020625fa59a7983f7762c1c26c620cb856b87470cfede44fc7a0f1c14116b8fc237dfb0fa81e338bf41853bdce901b4015e47fc0b4d
diff --git a/dev-build/dolphin-plugins-makefileactions/dolphin-plugins-makefileactions-25.12.3.ebuild b/dev-build/dolphin-plugins-makefileactions/dolphin-plugins-makefileactions-25.12.3.ebuild
new file mode 100644
index 000000000000..75a54afbf08b
--- /dev/null
+++ b/dev-build/dolphin-plugins-makefileactions/dolphin-plugins-makefileactions-25.12.3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KDE_ORG_NAME="dolphin-plugins"
+MY_PLUGIN_NAME="makefileactions"
+PVCUT=$(ver_cut 1-3)
+KFMIN=6.19.0
+QTMIN=6.10.1
+inherit ecm gear.kde.org
+
+DESCRIPTION="Dolphin plugin for Makefile targets integration"
+HOMEPAGE="https://apps.kde.org/dolphin_plugins/"
+
+LICENSE="GPL-2+"
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[concurrent,gui,widgets]
+ >=kde-apps/dolphin-${PVCUT}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kjobwidgets-${KFMIN}:6
+"
+RDEPEND="${DEPEND}
+ !<kde-apps/dolphin-plugins-subversion-24.08.2-r1
+ >=kde-apps/dolphin-plugins-common-${PV}
+"
+
+src_prepare() {
+ ecm_src_prepare
+ ecm_punt_po_install
+ # solid, qtdbus only required by mountiso
+ ecm_punt_qt_module DBus
+ ecm_punt_kf_module Solid
+ # kxmlgui, qtnetwork only required by dropbox
+ ecm_punt_qt_module Network
+ ecm_punt_kf_module XmlGui
+ # kcompletion, ktextwidgets only required by other plugins
+ ecm_punt_kf_module Completion
+ ecm_punt_kf_module TextWidgets
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_${MY_PLUGIN_NAME}=ON
+ -DBUILD_bazaar=OFF
+ -DBUILD_dropbox=OFF
+ -DBUILD_git=OFF
+ -DBUILD_hg=OFF
+ -DBUILD_mountiso=OFF
+ -DBUILD_svn=OFF
+ )
+ ecm_src_configure
+}