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-whiskermenu-plugin/
Date: Thu, 24 Dec 2020 23:08:27
Message-Id: 1608851300.bb716f672957a8ef9b2f9aa552e1428990f80013.mgorny@gentoo
1 commit: bb716f672957a8ef9b2f9aa552e1428990f80013
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 23:05:18 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 23:08:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb716f67
7
8 xfce-extra/xfce4-whiskermenu-plugin: Bump to 2.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-whiskermenu-plugin/Manifest | 1 +
13 .../xfce4-whiskermenu-plugin-2.5.0.ebuild | 51 ++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-whiskermenu-plugin/Manifest b/xfce-extra/xfce4-whiskermenu-plugin/Manifest
17 index a6119a60eb0..385fb969d5f 100644
18 --- a/xfce-extra/xfce4-whiskermenu-plugin/Manifest
19 +++ b/xfce-extra/xfce4-whiskermenu-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-whiskermenu-plugin-2.4.6.tar.bz2 173341 BLAKE2B 03d6ddbe72bf6de6713643bc9df4a6b824f5c7d3792ca8dc73552fa4b0c717fa719f56a4b9fa30c5d435c0f923e7f0260a330f883c9140762338908b586e3137 SHA512 9e947b73735549d81110323bfd7d6f29c91653b12e1aa616b9ca6f0ff99c8a7948ca383422d7b2aa0ac35297488fda6edc699ae4f72883539d6311672818b62c
22 +DIST xfce4-whiskermenu-plugin-2.5.0.tar.bz2 174639 BLAKE2B 02a3007f06d9d5ffab09fd027d913e7f8667fda1c276170dc69e766b1cce15e108d6486f7ca3285942b327412224f78b302f251719a4a84f62bb101f852cf369 SHA512 84f9ef9963e07b5489244b5283b371e2e405f4b280fa2884aa8b3c6a7358578064a227827a7d19b4ab9d72f9fd2016fa24a16b1b3f1f964df4d9d6d2ac2bcf72
23
24 diff --git a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild
25 new file mode 100644
26 index 00000000000..38cde10a058
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.5.0.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit cmake xdg-utils
36 +
37 +DESCRIPTION="Alternate application launcher for Xfce"
38 +HOMEPAGE="https://gottcode.org/xfce4-whiskermenu-plugin/"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND="
47 + virtual/libintl
48 + x11-libs/gtk+:3
49 + xfce-base/exo:=
50 + xfce-base/garcon:=
51 + xfce-base/libxfce4ui:=
52 + xfce-base/libxfce4util:=
53 + xfce-base/xfce4-panel:=
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 +"
58 +BDEPEND="
59 + sys-devel/gettext
60 + virtual/pkgconfig
61 +"
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + -DENABLE_AS_NEEDED=OFF
66 + -DENABLE_LINKER_OPTIMIZED_HASH_TABLES=OFF
67 + -DENABLE_DEVELOPER_MODE=OFF
68 + -DENABLE_LINK_TIME_OPTIMIZATION=OFF
69 + )
70 +
71 + cmake_src_configure
72 +}
73 +
74 +pkg_postinst() {
75 + xdg_icon_cache_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_icon_cache_update
80 +}