Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-base/exo: ChangeLog exo-0.6.2-r1.ebuild
Date: Thu, 01 Mar 2012 15:10:48
Message-Id: 20120301151022.0CFCF2004C@flycatcher.gentoo.org
1 ssuominen 12/03/01 15:10:22
2
3 Modified: ChangeLog
4 Added: exo-0.6.2-r1.ebuild
5 Log:
6 Backport upstream patch to include Chromium (or Google Chrome) in the preferred browsers list wrt #388853 by Michael Mol and Paweł Hajdan, Jr.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.69 xfce-base/exo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 20 Feb 2012 20:32:30 -0000 1.68
24 +++ ChangeLog 1 Mar 2012 15:10:21 -0000 1.69
25 @@ -1,6 +1,13 @@
26 # ChangeLog for xfce-base/exo
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.68 2012/02/20 20:32:30 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.69 2012/03/01 15:10:21 ssuominen Exp $
30 +
31 +*exo-0.6.2-r1 (01 Mar 2012)
32 +
33 + 01 Mar 2012; Samuli Suominen <ssuominen@g.o> +exo-0.6.2-r1.ebuild,
34 + +files/exo-0.6.x-chromium.patch:
35 + Backport upstream patch to include Chromium (or Google Chrome) in the
36 + preferred browsers list wrt #388853 by Michael Mol and Paweł Hajdan, Jr.
37
38 *exo-0.7.1 (20 Feb 2012)
39
40
41
42
43 1.1 xfce-base/exo/exo-0.6.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.6.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.6.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: exo-0.6.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.6.2-r1.ebuild,v 1.1 2012/03/01 15:10:21 ssuominen Exp $
53
54 EAPI=4
55 PYTHON_DEPEND="python? 2:2.6"
56 EAUTORECONF=yes
57 inherit python xfconf
58
59 DESCRIPTION="Extensions, widgets and framework library with session management support"
60 HOMEPAGE="http://www.xfce.org/projects/exo/"
61 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
62
63 LICENSE="GPL-2 LGPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
66 IUSE="debug python"
67
68 RDEPEND=">=dev-lang/perl-5.6
69 >=dev-libs/glib-2.18
70 dev-perl/URI
71 >=x11-libs/gtk+-2.14:2
72 >=xfce-base/libxfce4util-4.8
73 python? ( >=dev-python/pygtk-2.4 )"
74 DEPEND="${RDEPEND}
75 dev-util/intltool
76 dev-util/pkgconfig
77 sys-devel/gettext"
78
79 pkg_setup() {
80 if use python; then
81 python_set_active_version 2
82 python_pkg_setup
83 fi
84
85 PATCHES=( "${FILESDIR}"/${PN}-0.6.x-chromium.patch )
86
87 XFCONF=(
88 --docdir="${EPREFIX}"/usr/share/doc/${PF}
89 --disable-static
90 $(use_enable python)
91 $(xfconf_use_debug)
92 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
93 )
94
95 [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
96
97 DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO )
98 }
99
100 src_prepare() {
101 >py-compile
102 xfconf_src_prepare
103 }
104
105 pkg_postinst() {
106 xfconf_pkg_postinst
107 use python && python_mod_optimize exo-0.6 pyexo.py
108 }
109
110 pkg_postrm() {
111 xfconf_pkg_postrm
112 use python && python_mod_cleanup exo-0.6 pyexo.py
113 }