Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-session: cinnamon-session-2.6.3.ebuild ChangeLog
Date: Sat, 04 Jul 2015 19:23:05
Message-Id: 20150704192255.835C5751@oystercatcher.gentoo.org
1 pacho 15/07/04 19:22:55
2
3 Modified: ChangeLog
4 Added: cinnamon-session-2.6.3.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.16 gnome-extra/cinnamon-session/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 14 Jun 2015 01:56:11 -0000 1.15
24 +++ ChangeLog 4 Jul 2015 19:22:55 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-extra/cinnamon-session
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v 1.15 2015/06/14 01:56:11 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/ChangeLog,v 1.16 2015/07/04 19:22:55 pacho Exp $
30 +
31 +*cinnamon-session-2.6.3 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Pacho Ramos <pacho@g.o> +cinnamon-session-2.6.3.ebuild:
34 + Version bump
35
36 *cinnamon-session-2.6.2 (14 Jun 2015)
37
38
39
40
41 1.1 gnome-extra/cinnamon-session/cinnamon-session-2.6.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.6.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.6.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cinnamon-session-2.6.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-session/cinnamon-session-2.6.3.ebuild,v 1.1 2015/07/04 19:22:55 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit autotools eutils gnome2
56
57 DESCRIPTION="Cinnamon session manager"
58 HOMEPAGE="http://cinnamon.linuxmint.com/"
59 SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc ipv6 systemd"
65
66 COMMON_DEPEND="
67 >=dev-libs/dbus-glib-0.88
68 >=dev-libs/glib-2.37.3:2
69 media-libs/libcanberra
70 x11-libs/gdk-pixbuf:2
71 >=x11-libs/gtk+-3:3
72 x11-libs/cairo
73 x11-libs/libICE
74 x11-libs/libSM
75 x11-libs/libX11
76 x11-libs/libXau
77 x11-libs/libXcomposite
78 x11-libs/libXext
79 x11-libs/libXrender
80 x11-libs/libXtst
81 x11-libs/pango[X]
82 virtual/opengl
83 systemd? ( >=sys-apps/systemd-183 )
84 !systemd? ( >=sys-power/upower-pm-utils-0.9.23 )
85 "
86 RDEPEND="${COMMON_DEPEND}
87 >=gnome-extra/cinnamon-desktop-2.6[systemd=]
88 !systemd? ( sys-auth/consolekit )
89 "
90 DEPEND="${COMMON_DEPEND}
91 dev-libs/libxslt
92 >=dev-util/intltool-0.40.6
93 virtual/pkgconfig
94 doc? ( app-text/xmlto )
95
96 gnome-base/gnome-common
97 "
98 # gnome-base/gnome-common for eautoreconf
99
100 src_prepare() {
101 # make upower and logind check non-automagic
102 epatch "${FILESDIR}/${PN}-2.6.2-automagic.patch"
103 epatch_user
104
105 eautoreconf
106 gnome2_src_prepare
107 }
108
109 src_configure() {
110 DOCS="AUTHORS README README.md"
111
112 gnome2_src_configure \
113 --disable-gconf \
114 --disable-static \
115 $(use_enable doc docbook-docs) \
116 $(use_enable ipv6) \
117 $(use_enable systemd logind) \
118 $(usex systemd --disable-old-upower --enable-old-upower)
119 }