summaryrefslogtreecommitdiff
path: root/sys-apps/qdirstat
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-apps/qdirstat
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'sys-apps/qdirstat')
-rw-r--r--sys-apps/qdirstat/Manifest1
-rw-r--r--sys-apps/qdirstat/metadata.xml24
-rw-r--r--sys-apps/qdirstat/qdirstat-2.0.ebuild52
3 files changed, 0 insertions, 77 deletions
diff --git a/sys-apps/qdirstat/Manifest b/sys-apps/qdirstat/Manifest
deleted file mode 100644
index 74577ce0ef33..000000000000
--- a/sys-apps/qdirstat/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST qdirstat-2.0.tar.gz 9538247 BLAKE2B 28480565f930cd395053be55e8a798c99bc08523c548264ceda1ecd1adb8e5eaf6ad0cdb8ae587ba23bf85bceba47dd15f777e32daf83662a3ceeb8c56de733d SHA512 33e2c32fc5b24750f2d9fe6f98fbcb0c9c318f2e5b0ced6feea1b022ec067398bb788a971d62a9eff821f3866b3ebb1290e9bfc2c96d43052ef50ae8554b3c63
diff --git a/sys-apps/qdirstat/metadata.xml b/sys-apps/qdirstat/metadata.xml
deleted file mode 100644
index ba245f43a2e0..000000000000
--- a/sys-apps/qdirstat/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>conikost@gentoo.org</email>
- <name>Conrad Kostecki</name>
- </maintainer>
- <longdescription>
- Qt-based directory statistics: KDirStat without any KDE,
- from the author of the original KDirStat.
-
- QDirStat is a graphical application to show where your disk space
- has gone and to help you to clean it up.
-
- This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now
- based on the latest Qt 5. It does not need any KDE libs or
- infrastructure. It runs on every X11-based desktop on Linux, BSD
- and other Unix-like systems.
- </longdescription>
- <upstream>
- <bugs-to>https://github.com/shundhammer/qdirstat/issues</bugs-to>
- <remote-id type="github">shundhammer/qdirstat</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-apps/qdirstat/qdirstat-2.0.ebuild b/sys-apps/qdirstat/qdirstat-2.0.ebuild
deleted file mode 100644
index 34984ae26853..000000000000
--- a/sys-apps/qdirstat/qdirstat-2.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils xdg-utils
-
-DESCRIPTION="Qt-based directory statistics"
-HOMEPAGE="https://github.com/shundhammer/qdirstat"
-SRC_URI="https://github.com/shundhammer/qdirstat/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="
- dev-qt/qt5compat:6
- dev-qt/qtbase:6[gui,widgets]
- virtual/zlib:=
-"
-RDEPEND="${DEPEND}
- dev-lang/perl
- dev-perl/URI
-"
-
-src_prepare() {
- default
-
- # Fix QA warning about incorrect use of doc path
- sed -e "/doc.path/s/${PN}/${PF}/" -i doc/doc.pro doc/stats/stats.pro || die
-
- # Don't install compressed man pages
- sed -e '/gzip/d' -e 's/.gz//g' -i man/man.pro || die
-}
-
-src_configure() {
- eqmake6
-}
-
-src_install() {
- emake INSTALL_ROOT="${ED}" install
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_icon_cache_update
-}