Gentoo Archives: gentoo-commits

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