Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-places-plugin/
Date: Thu, 02 May 2019 17:07:27
Message-Id: 1556816832.95c9cc3857b8c438df470d10304c9e6b48bb6eca.mgorny@gentoo
1 commit: 95c9cc3857b8c438df470d10304c9e6b48bb6eca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 17:00:59 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 17:07:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c9cc38
7
8 xfce-extra/xfce4-places-plugin: Bump to 1.8.0 (GTK+3 port)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-places-plugin/Manifest | 1 +
13 .../xfce4-places-plugin-1.8.0.ebuild | 40 ++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-places-plugin/Manifest b/xfce-extra/xfce4-places-plugin/Manifest
17 index a5c55a8b560..63a77343553 100644
18 --- a/xfce-extra/xfce4-places-plugin/Manifest
19 +++ b/xfce-extra/xfce4-places-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-places-plugin-1.7.0.tar.bz2 371395 BLAKE2B fe18391e0cabe06d9d63dfc86a829e35461858b5915d7331053dfabbc9bb689bba0a3cc05b7d7f6dced6e19aa6e32308ba052cca9416bbfb2f050768d3e86f5e SHA512 ae324a29584d7dc6beb4840bec7e4c5802e94c25512f449ab959c588c91f4030d895fe185dad87ab9442611e9fe01f8ccec82e8cb5153cf192d1124156be6bd3
22 +DIST xfce4-places-plugin-1.8.0.tar.bz2 371134 BLAKE2B 5ef5cf79ce565a827520ed281a0be2533df643137d673f12d15393efb2a0ef5db1a18fff3c5e807cdb98d29a8ab4767469fa248cbca85c5a77d9a4e66aff6b59 SHA512 9db3b311881292a9cd380d505be8cd529b51ee92c25e0bbdcbc28dc099369cd7ea078e7c729856d9718967de8f8e2f08db045efb00a4be097d4ebf766da51263
23
24 diff --git a/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.8.0.ebuild b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.8.0.ebuild
25 new file mode 100644
26 index 00000000000..1eaee9cc680
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.8.0.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="A panel plug-in to provide quick access to files, folders and removable media"
36 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin"
37 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
38 +
39 +LICENSE="GPL-2+"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
42 +IUSE="libnotify"
43 +
44 +RDEPEND=">=dev-libs/glib-2.42:2
45 + >=x11-libs/gtk+-3.22:3
46 + x11-libs/libX11:=
47 + >=xfce-base/exo-0.6:=
48 + >=xfce-base/libxfce4ui-4.12:=
49 + >=xfce-base/libxfce4util-4.12:=
50 + >=xfce-base/xfce4-panel-4.12:=
51 + >=xfce-base/xfconf-4.8:=
52 + libnotify? ( >=x11-libs/libnotify-0.7:= )"
53 +DEPEND="${RDEPEND}
54 + dev-util/intltool
55 + sys-devel/gettext
56 + virtual/pkgconfig"
57 +
58 +src_configure() {
59 + local myconf=(
60 + $(use_enable libnotify notifications)
61 + )
62 +
63 + econf "${myconf[@]}"
64 +}
65 +
66 +src_install() {
67 + default
68 + find "${D}" -name '*.la' -delete || die
69 +}