Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/file-roller/
Date: Sun, 05 Aug 2018 09:59:22
Message-Id: 1533462204.bafe23e26b9425982cb10251908b8a8b1d243724.leio@gentoo
1 commit: bafe23e26b9425982cb10251908b8a8b1d243724
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 5 09:42:48 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 5 09:43:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafe23e2
7
8 app-arch/file-roller: bump to 3.26.2
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-arch/file-roller/Manifest | 1 +
13 app-arch/file-roller/file-roller-3.26.2.ebuild | 91 ++++++++++++++++++++++++++
14 2 files changed, 92 insertions(+)
15
16 diff --git a/app-arch/file-roller/Manifest b/app-arch/file-roller/Manifest
17 index 9a13997145f..32b758a5f54 100644
18 --- a/app-arch/file-roller/Manifest
19 +++ b/app-arch/file-roller/Manifest
20 @@ -1 +1,2 @@
21 DIST file-roller-3.24.1.tar.xz 1428216 BLAKE2B 7a74ac56fba36a60ba1f7cc0fb905b92336a349f786963a65ea2442fb078704c6e00b46686334f56cf270c861abe7ca252e0ee39f66349f6a4cc3b769a9e7dde SHA512 bd8750b8ffe3e7d3c74492e2ffdde519e7879d46f16c559d06042bac60c8ee63f492aeeaa66b4aff7c997150f4f2955e02a3b0565edf4bd7641a089ed052f268
22 +DIST file-roller-3.26.2.tar.xz 1436760 BLAKE2B a563f77dcc8d61e90e4e42fa4f08aded657d677b319b39f4c9fd16670a2309e81f142b7b8528e52db0be3f454efca15ccd7e9e25754a95b45800a9ca02969e12 SHA512 3572446081f931ce7cfd7eccdc9450d798164426a68bc332f9340b7c06b79ce4f1589b817c27322a0c1681d7f2cb8cf93462cde1e3df13ad40789faec1decc9f
23
24 diff --git a/app-arch/file-roller/file-roller-3.26.2.ebuild b/app-arch/file-roller/file-roller-3.26.2.ebuild
25 new file mode 100644
26 index 00000000000..b7717363afe
27 --- /dev/null
28 +++ b/app-arch/file-roller/file-roller-3.26.2.ebuild
29 @@ -0,0 +1,91 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +GNOME2_LA_PUNT="yes"
35 +
36 +inherit gnome2 readme.gentoo-r1
37 +
38 +DESCRIPTION="Archive manager for GNOME"
39 +HOMEPAGE="https://wiki.gnome.org/Apps/FileRoller"
40 +
41 +LICENSE="GPL-2+ CC-BY-SA-3.0"
42 +SLOT="0"
43 +IUSE="libnotify nautilus packagekit"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
45 +
46 +# gdk-pixbuf used extensively in the source
47 +# cairo used in eggtreemultidnd.c
48 +# pango used in fr-window
49 +RDEPEND="
50 + >=app-arch/libarchive-3:=
51 + >=dev-libs/glib-2.36:2
52 + >=dev-libs/json-glib-0.14
53 + >=x11-libs/gtk+-3.13.2:3
54 + sys-apps/file
55 + x11-libs/cairo
56 + x11-libs/gdk-pixbuf:2
57 + x11-libs/pango
58 + libnotify? ( >=x11-libs/libnotify-0.4.3:= )
59 + nautilus? ( >=gnome-base/nautilus-2.22.2 )
60 + packagekit? ( app-admin/packagekit-base )
61 +"
62 +# libxml2 required for glib-compile-resources
63 +DEPEND="${RDEPEND}
64 + dev-libs/libxml2:2
65 + >=dev-util/intltool-0.50.1
66 + dev-util/itstool
67 + sys-devel/gettext
68 + virtual/pkgconfig
69 +"
70 +# eautoreconf needs:
71 +# gnome-base/gnome-common
72 +
73 +DISABLE_AUTOFORMATTING="yes"
74 +DOC_CONTENTS="
75 +${PN} is a frontend for several archiving utilities. If you want a
76 +particular archive format support, see ${HOMEPAGE}
77 +and install the relevant package. For example:
78 +7-zip - app-arch/p7zip
79 +ace - app-arch/unace
80 +arj - app-arch/arj
81 +cpio - app-arch/cpio
82 +deb - app-arch/dpkg
83 +iso - app-cdr/cdrtools
84 +jar,zip - app-arch/zip and app-arch/unzip
85 +lha - app-arch/lha
86 +lzop - app-arch/lzop
87 +lz4 - app-arch/lz4
88 +rar - app-arch/unrar or app-arch/unar
89 +rpm - app-arch/rpm
90 +unstuff - app-arch/stuffit
91 +zoo - app-arch/zoo"
92 +
93 +src_prepare() {
94 + # File providing Gentoo package names for various archivers
95 + cp -v "${FILESDIR}"/3.22-packages.match data/packages.match || die
96 + gnome2_src_prepare
97 +}
98 +
99 +src_configure() {
100 + # --disable-debug because enabling it adds -O0 to CFLAGS
101 + gnome2_src_configure \
102 + --disable-run-in-place \
103 + --disable-static \
104 + --disable-debug \
105 + --enable-magic \
106 + --enable-libarchive \
107 + $(use_enable libnotify notification) \
108 + $(use_enable nautilus nautilus-actions) \
109 + $(use_enable packagekit)
110 +}
111 +
112 +src_install() {
113 + gnome2_src_install
114 + readme.gentoo_create_doc
115 +}
116 +
117 +pkg_postinst() {
118 + gnome2_pkg_postinst
119 + readme.gentoo_print_elog
120 +}