From: "Daniel Campbell" <zlg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/spacefm/
Date: Sun, 3 Apr 2016 12:47:35 +0000 (UTC) [thread overview]
Message-ID: <1459687641.e8aa8576867161f00fc7deda3a06abbd45df9a39.zlg@gentoo> (raw)
commit: e8aa8576867161f00fc7deda3a06abbd45df9a39
Author: Daniel Campbell <zlg <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 3 12:46:44 2016 +0000
Commit: Daniel Campbell <zlg <AT> gentoo <DOT> org>
CommitDate: Sun Apr 3 12:47:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8aa8576
x11-misc/spacefm: revbump to fix distfile name
Thanks, Samuel Bauer.
Gentoo-Bug: 578886
Gentoo-Bug-URL: https://bugs.gentoo.org/578886
Package-Manager: portage-2.2.28
x11-misc/spacefm/Manifest | 1 +
x11-misc/spacefm/spacefm-1.0.5-r1.ebuild | 88 ++++++++++++++++++++++++++++++++
2 files changed, 89 insertions(+)
diff --git a/x11-misc/spacefm/Manifest b/x11-misc/spacefm/Manifest
index ced15f5..3bd3f13 100644
--- a/x11-misc/spacefm/Manifest
+++ b/x11-misc/spacefm/Manifest
@@ -1,2 +1,3 @@
DIST 1.0.4.tar.gz 3487476 SHA256 b08df31894f48c43e38ce3f3d32acf0bec67c38164d20f7765a7e4af9e3af7a2 SHA512 bbb3d3048c62b0223799468e24abd8614a75d9118ad9d8493e7118882072fb3401f086239dc05a4a742b39b40520771de5bc9fe6735a2c5853ffb5aa961e6112 WHIRLPOOL 9a7af8a52c822b1024a0fbe45556b7c1c53995c827315d6b2fad6e506720abc93fa1e200428d39cf4788bed7f1e635dc883d37711583157be31b12796167d379
DIST 1.0.5.tar.gz 3491483 SHA256 d3f14fd1b1cfb51df98ebc341ab78ce741ba443ae2ce9e1662de39d01a95e0f3 SHA512 f32a59eac773df1bd9d36ba26cf7397bd205a2a8918e01f978c42ffb6aa2238a6f4dc871503a43f130c3b10d80f43364f54965d441f602ac895d0483fc073498 WHIRLPOOL 2e6f9a742032d04e863a7801b8707ada523be009d3c7abe8d54390af822653bab923783926082af28ad6a546f86035f50ec44a490e170186f395d6e5395b48bb
+DIST spacefm-1.0.5.tar.gz 3491483 SHA256 d3f14fd1b1cfb51df98ebc341ab78ce741ba443ae2ce9e1662de39d01a95e0f3 SHA512 f32a59eac773df1bd9d36ba26cf7397bd205a2a8918e01f978c42ffb6aa2238a6f4dc871503a43f130c3b10d80f43364f54965d441f602ac895d0483fc073498 WHIRLPOOL 2e6f9a742032d04e863a7801b8707ada523be009d3c7abe8d54390af822653bab923783926082af28ad6a546f86035f50ec44a490e170186f395d6e5395b48bb
diff --git a/x11-misc/spacefm/spacefm-1.0.5-r1.ebuild b/x11-misc/spacefm/spacefm-1.0.5-r1.ebuild
new file mode 100644
index 0000000..a1026ea
--- /dev/null
+++ b/x11-misc/spacefm/spacefm-1.0.5-r1.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit fdo-mime gnome2-utils linux-info
+
+DESCRIPTION="A multi-panel tabbed file manager"
+HOMEPAGE="https://ignorantguru.github.com/spacefm/"
+SRC_URI="https://github.com/ignorantguru/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk2 +gtk3 +startup-notification +video-thumbnails"
+REQUIRED_USE="gtk2? ( !gtk3 )"
+
+RDEPEND="dev-libs/glib:2
+ dev-util/desktop-file-utils
+ >=virtual/udev-143
+ virtual/freedesktop-icon-theme
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf
+ gtk2? ( x11-libs/gtk+:2 )
+ !gtk2? ( x11-libs/gtk+:3 )
+ x11-libs/pango
+ x11-libs/libX11
+ x11-misc/shared-mime-info
+ video-thumbnails? ( media-video/ffmpegthumbnailer )
+ startup-notification? ( x11-libs/startup-notification )"
+DEPEND="${RDEPEND}
+ dev-util/intltool
+ virtual/pkgconfig
+ sys-devel/gettext"
+
+src_configure() {
+ econf \
+ --htmldir=/usr/share/doc/${PF}/html \
+ $(use_enable startup-notification) \
+ $(use_enable video-thumbnails) \
+ --disable-hal \
+ --enable-inotify \
+ --disable-pixmaps \
+ $(use_with gtk3 gtk3 "yes")
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ fdo-mime_desktop_database_update
+ fdo-mime_mime_database_update
+ gnome2_icon_cache_update
+
+ einfo
+ elog "To mount as non-root user you need one of the following:"
+ elog " sys-apps/udevil (recommended, see below)"
+ elog " sys-apps/pmount"
+ elog " sys-fs/udisks:0"
+ elog " sys-fs/udisks:2"
+ elog "To support ftp/nfs/smb/ssh URLs in the path bar you need:"
+ elog " sys-apps/udevil"
+ elog "To perform as root functionality you need one of the following:"
+ elog " x11-misc/ktsuss"
+ elog " x11-libs/gksu"
+ elog " kde-apps/kdesu"
+ elog "Other optional dependencies:"
+ elog " sys-apps/dbus"
+ elog " sys-process/lsof (device processes)"
+ elog " virtual/eject (eject media)"
+ einfo
+ 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"
+ has_version '<virtual/udev-173' && ewarn "You need at least udev-173"
+ kernel_is lt 2 6 38 && ewarn "You need at least kernel 2.6.38"
+ einfo
+ fi
+}
+
+pkg_postrm() {
+ fdo-mime_desktop_database_update
+ fdo-mime_mime_database_update
+ gnome2_icon_cache_update
+}
next reply other threads:[~2016-04-03 12:47 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-03 12:47 Daniel Campbell [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-03 16:11 [gentoo-commits] repo/gentoo:master commit in: x11-misc/spacefm/ Arthur Zamarin
2024-10-03 10:33 Jakov Smolić
2024-10-02 20:29 Andreas Sturmlechner
2024-10-02 20:29 Andreas Sturmlechner
2024-09-04 11:45 Andreas Sturmlechner
2024-09-04 11:45 Andreas Sturmlechner
2024-06-02 8:13 Joonas Niilola
2023-06-10 4:20 Sam James
2023-06-10 4:20 Sam James
2023-05-09 17:51 Sam James
2023-04-10 22:17 Sam James
2021-05-14 17:57 David Seifert
2019-02-22 10:55 Mikle Kolyada
2019-02-15 0:39 Thomas Deutschmann
2018-04-04 23:04 Andreas Sturmlechner
2018-04-04 23:04 Andreas Sturmlechner
2018-04-04 23:04 Andreas Sturmlechner
2018-04-04 23:04 Andreas Sturmlechner
2017-12-16 10:31 Tobias Klausmann
2017-12-12 21:46 Daniel Campbell
2017-10-26 20:18 Thomas Deutschmann
2017-07-30 9:23 Michał Górny
2017-05-06 20:05 Andreas Sturmlechner
2017-03-07 9:14 David Seifert
2016-10-09 12:11 Pacho Ramos
2016-10-09 12:11 Pacho Ramos
2016-07-30 14:16 Mike Gilbert
2016-05-07 21:24 Michał Górny
2016-03-18 19:11 Michał Górny
2016-03-06 22:08 Daniel Campbell
2016-01-27 2:53 Daniel Campbell
2015-12-03 13:28 Agostino Sarubbo
2015-12-01 11:20 Agostino Sarubbo
2015-10-18 22:51 Daniel Campbell
2015-08-27 7:21 Daniel Campbell
2015-08-13 11:33 Daniel Campbell
2015-08-13 11:23 Daniel Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1459687641.e8aa8576867161f00fc7deda3a06abbd45df9a39.zlg@gentoo \
--to=zlg@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox