summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-10-02 22:28:05 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-10-02 22:28:54 +0200
commitd6bfe280e722acce0596daf660c68d32179c8973 (patch)
tree1d79b0e25dc9a487b05880e9185df97e8f7d4ce3 /x11-misc
parentx11-misc/spacefm: Add missing x11-libs/gtk+:3[X] USEdep (diff)
downloadgentoo-d6bfe280e722acce0596daf660c68d32179c8973.tar.gz
gentoo-d6bfe280e722acce0596daf660c68d32179c8973.tar.bz2
gentoo-d6bfe280e722acce0596daf660c68d32179c8973.zip
x11-misc/spacefm: drop 1.0.6-r3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/spacefm/spacefm-1.0.6-r3.ebuild78
1 files changed, 0 insertions, 78 deletions
diff --git a/x11-misc/spacefm/spacefm-1.0.6-r3.ebuild b/x11-misc/spacefm/spacefm-1.0.6-r3.ebuild
deleted file mode 100644
index 38b080eb29e4..000000000000
--- a/x11-misc/spacefm/spacefm-1.0.6-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools linux-info optfeature xdg
-
-DESCRIPTION="A multi-panel tabbed file manager"
-HOMEPAGE="https://ignorantguru.github.io/spacefm/"
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/IgnorantGuru/${PN}.git"
- EGIT_BRANCH="next"
- inherit git-r3
-else
- KEYWORDS="~amd64 ~x86"
- SRC_URI="https://github.com/IgnorantGuru/spacefm/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-IUSE="+startup-notification +video-thumbnails"
-
-RDEPEND="dev-libs/glib:2
- dev-util/desktop-file-utils
- virtual/udev
- virtual/freedesktop-icon-theme
- x11-libs/cairo
- x11-libs/gdk-pixbuf
- x11-libs/gtk+:3
- x11-libs/pango
- x11-libs/libX11
- x11-misc/shared-mime-info
- startup-notification? ( x11-libs/startup-notification )
- video-thumbnails? ( media-video/ffmpegthumbnailer )"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-BDEPEND="dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-9999-include-sysmacros.patch
- "${FILESDIR}"/${PN}-fno-common.patch
- "${FILESDIR}"/${PN}-dash.patch #891181
- "${FILESDIR}"/${PN}-gcc14-build-fix.patch #928492
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable startup-notification) \
- $(use_enable video-thumbnails) \
- --disable-hal \
- --enable-inotify \
- --disable-pixmaps \
- --with-gtk3
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
-
- optfeature "mounting as non-root user" sys-apps/udevil sys-apps/pmount sys-fs/udisks
- optfeature "supporting ftp/nfs/smb/ssh URLs in the path bar" sys-apps/udevil
- optfeature "performing as root" x11-misc/ktsuss kde-plasma/kdesu-gui
- # sys-apps/util-linux is required for eject
- optfeature "other optional dependencies" sys-apps/dbus sys-process/lsof sys-apps/util-linux
-
- if ! has_version 'sys-fs/udisks' ; then
- elog "When using SpaceFM without udisks, and without the udisks-daemon running,"
- elog "you may need to enable kernel polling for device media changes to be detected."
- elog "See /usr/share/doc/${PF}/html/spacefm-manual-en.html#devices-kernpoll"
- fi
-}