Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-commander/
Date: Sat, 05 Feb 2022 21:33:49
Message-Id: 1644096724.c71c5a9e2dd183f06c779843b5f66e8dc67e69f6.mattst88@gentoo
1 commit: c71c5a9e2dd183f06c779843b5f66e8dc67e69f6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 5 21:13:21 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 5 21:32:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c71c5a9e
7
8 gnome-extra/gnome-commander: Version bump to 1.14.0
9
10 Bug: https://bugs.gentoo.org/751001
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 gnome-extra/gnome-commander/Manifest | 1 +
14 .../gnome-commander/gnome-commander-1.14.0.ebuild | 54 ++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/gnome-extra/gnome-commander/Manifest b/gnome-extra/gnome-commander/Manifest
18 index 8f858312959e..22d8781ef4d2 100644
19 --- a/gnome-extra/gnome-commander/Manifest
20 +++ b/gnome-extra/gnome-commander/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-commander-1.12.3.1.tar.xz 7530232 BLAKE2B 34a4cabafab52ab6f94619dafac4db87c12909eef22c13d50356dad925f129da182348eabd8993f69ffc398db163f81ec59c9a102530a9b49f7714b5d7c6db68 SHA512 1206d545493deeb2237af6b9026baf6faab2a8f6ae86eb1abb5c2e5ceb6212ad66382d3abd07c89f14271ac8709d14548f0bfe68fb0e11b1779e0c061e0272e5
23 +DIST gnome-commander-1.14.0.tar.xz 6909816 BLAKE2B fa7b3fc2696ec6520a5d2473d8728ceb16efb33134628e00a7b82f3656088a61247e5b2eeb7f3fb306866c9c1a454dbe4bb49af3a8217a1f2be6b951d7851fd2 SHA512 769f1272331ed71f558b87a73a920b9bfd5a2ea2af66972bdcac44d7a7623a6cb32460b0b650bd26d07c27bdc8b71c7d8bc2038076778aa356b638c4765ce4a5
24
25 diff --git a/gnome-extra/gnome-commander/gnome-commander-1.14.0.ebuild b/gnome-extra/gnome-commander/gnome-commander-1.14.0.ebuild
26 new file mode 100644
27 index 000000000000..f28df23d9ea4
28 --- /dev/null
29 +++ b/gnome-extra/gnome-commander/gnome-commander-1.14.0.ebuild
30 @@ -0,0 +1,54 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit gnome2 optfeature
37 +
38 +DESCRIPTION="A graphical, full featured, twin-panel file manager"
39 +HOMEPAGE="https://gcmd.github.io/"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="exif gsf pdf samba taglib test +unique"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.70.0:2
49 + >=x11-libs/gtk+-2.24.0:2
50 + unique? ( >=dev-libs/libunique-0.9.3:1 )
51 + exif? ( >=media-gfx/exiv2-0.14 )
52 + taglib? ( >=media-libs/taglib-1.4 )
53 + gsf? ( >=gnome-extra/libgsf-1.12:= )
54 + pdf? ( >=app-text/poppler-0.18 )
55 +"
56 +DEPEND="
57 + ${RDEPEND}
58 + test? ( >=dev-cpp/gtest-1.7.0 )
59 +"
60 +BDEPEND="
61 + app-text/yelp-tools
62 + >=sys-devel/flex-2.0.0
63 + dev-util/gtk-doc-am
64 + >=sys-devel/gettext-0.19.7
65 + virtual/pkgconfig
66 +"
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + --disable-static \
71 + --without-libchm \
72 + $(use_with exif exiv2) \
73 + $(use_with gsf libgsf) \
74 + $(use_with pdf poppler) \
75 + $(use_with samba) \
76 + $(use_with taglib) \
77 + $(use_with unique)
78 +}
79 +
80 +pkg_postinst() {
81 + gnome2_pkg_postinst
82 + optfeature "synchronizing files and directories" dev-util/meld
83 + optfeature "viewing the documentation" gnome-extra/yelp
84 +}