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: exo-0.5.6.ebuild ChangeLog
Date: Sun, 02 Jan 2011 15:11:44
Message-Id: 20110102151134.8A74320054@flycatcher.gentoo.org
1 ssuominen 11/01/02 15:11:34
2
3 Modified: ChangeLog
4 Added: exo-0.5.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.47 xfce-base/exo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 24 Nov 2010 14:17:43 -0000 1.46
24 +++ ChangeLog 2 Jan 2011 15:11:34 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for xfce-base/exo
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.46 2010/11/24 14:17:43 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.47 2011/01/02 15:11:34 ssuominen Exp $
31 +
32 +*exo-0.5.6 (02 Jan 2011)
33 +
34 + 02 Jan 2011; Samuli Suominen <ssuominen@g.o> +exo-0.5.6.ebuild:
35 + Version bump.
36
37 24 Nov 2010; Samuli Suominen <ssuominen@g.o> exo-0.5.5.ebuild:
38 Missing USE python for byte compiling wrt #346597 by Peter Volkov.
39
40
41
42 1.1 xfce-base/exo/exo-0.5.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.5.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.5.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: exo-0.5.6.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.5.6.ebuild,v 1.1 2011/01/02 15:11:34 ssuominen Exp $
52
53 EAPI=3
54
55 PYTHON_DEPEND="python? 2"
56
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/exo/0.5/${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-perl/URI
70 >=dev-libs/glib-2.18:2
71 >=x11-libs/gtk+-2.14:2
72 xfce-base/libxfce4util
73 python? ( >=dev-python/pygtk-2.4 )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig
76 dev-util/intltool
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 XFCONF=(
86 --docdir="${EPREFIX}"/usr/share/doc/${PF}
87 --disable-dependency-tracking
88 --disable-static
89 $(use_enable python)
90 $(xfconf_use_debug)
91 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
92 )
93
94 DOCS="AUTHORS ChangeLog HACKING NEWS README THANKS TODO"
95 }
96
97 src_prepare() {
98 rm -f py-compile
99 ln -s $(type -P true) py-compile
100
101 xfconf_src_prepare
102 }
103
104 pkg_postinst() {
105 xfconf_pkg_postinst
106 use python && python_mod_optimize exo-0.5 pyexo.py
107 }
108
109 pkg_postrm() {
110 xfconf_pkg_postrm
111 use python && python_mod_cleanup exo-0.5 pyexo.py
112 }