Gentoo Archives: gentoo-commits

From: Kristian Fiskerstrand <k_f@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-menus/
Date: Tue, 31 Jul 2018 08:38:48
Message-Id: 1533026074.5d52e7fbd962e0ba8154088e4604c1b82cc3374b.k_f@gentoo
1 commit: 5d52e7fbd962e0ba8154088e4604c1b82cc3374b
2 Author: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 4 10:50:25 2018 +0000
4 Commit: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 08:34:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d52e7fb
7
8 gnome-extra/cinnamon-menus: New upstream version 3.8.2
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 gnome-extra/cinnamon-menus/Manifest | 1 +
13 .../cinnamon-menus/cinnamon-menus-3.8.2.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/gnome-extra/cinnamon-menus/Manifest b/gnome-extra/cinnamon-menus/Manifest
17 index 828a691fb63..9605843c3ca 100644
18 --- a/gnome-extra/cinnamon-menus/Manifest
19 +++ b/gnome-extra/cinnamon-menus/Manifest
20 @@ -1 +1,2 @@
21 DIST cinnamon-menus-3.6.0.tar.gz 180165 BLAKE2B a014c120bc84206914be69fcae0f4ec09b98a281012ed3f6f2f21f46762ea0b5e289c6dbd321fb7889f6172c9e7150673513e4c15dbd2e634c48efcefa816176 SHA512 dc90dbb8633ac77f4c8be7b013e3d6f9ba8f4e830f7e8c09ec7dcb9566a3768171a59cdc90b6cd11ad015b93629cdf6fc8c2397656f74603a517c0fbc97d3b14
22 +DIST cinnamon-menus-3.8.2.tar.gz 181252 BLAKE2B 9f91d22760d0ee13ce968dc0b553d2bbd8ead94169baf4bc8d4157e23225ec0a9e70d2eff22975aec6c2985517391b5e6293fd630e038061d313098320a8a498 SHA512 ce75e4076fbedffa998654537520dd0efa146ae4419d76921bf7de44a1b16c3431cc819a55436bfa038947d21f83cda37dc56fab5dcb372a90ca8a3850271868
23
24 diff --git a/gnome-extra/cinnamon-menus/cinnamon-menus-3.8.2.ebuild b/gnome-extra/cinnamon-menus/cinnamon-menus-3.8.2.ebuild
25 new file mode 100644
26 index 00000000000..35270ece27e
27 --- /dev/null
28 +++ b/gnome-extra/cinnamon-menus/cinnamon-menus-3.8.2.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit autotools gnome2
35 +
36 +DESCRIPTION="Cinnamon's library for the Desktop Menu fd.o specification"
37 +HOMEPAGE="http://cinnamon.linuxmint.com/"
38 +SRC_URI="https://github.com/linuxmint/cinnamon-menus/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="GPL-2+ LGPL-2+"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="debug +introspection"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.29.15:2
47 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
48 +"
49 +DEPEND="${RDEPEND}
50 + dev-libs/gobject-introspection-common
51 + >=dev-util/intltool-0.40
52 + gnome-base/gnome-common
53 + sys-devel/gettext
54 + virtual/pkgconfig
55 +"
56 +
57 +src_prepare() {
58 + eautoreconf
59 + gnome2_src_prepare
60 +}
61 +
62 +src_configure() {
63 + gnome2_src_configure \
64 + $(usex debug --enable-debug=yes ' ') \
65 + $(use_enable introspection) \
66 + --disable-static
67 +}