Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gnome-python-desktop: ChangeLog gnome-python-desktop-2.22.0.ebuild gnome-python-desktop-2.18.0.ebuild
Date: Thu, 27 Mar 2008 10:19:30
Message-Id: E1JepCg-0006H9-PK@stork.gentoo.org
1 eva 08/03/27 10:19:26
2
3 Modified: ChangeLog
4 Added: gnome-python-desktop-2.22.0.ebuild
5 Removed: gnome-python-desktop-2.18.0.ebuild
6 Log:
7 New version for GNOME 2.22. Bug fixes and new evolution/eds component.
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.49 dev-python/gnome-python-desktop/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 10 Feb 2008 22:04:04 -0000 1.48
24 +++ ChangeLog 27 Mar 2008 10:19:26 -0000 1.49
25 @@ -1,6 +1,9 @@
26 # ChangeLog for dev-python/gnome-python-desktop
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog,v 1.48 2008/02/10 22:04:04 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog,v 1.49 2008/03/27 10:19:26 eva Exp $
30 +
31 + 27 Mar 2008; Gilles Dartiguelongue <eva@g.o> ChangeLog:
32 + New version for GNOME 2.22. Bug fixes and new evolution/eds component.
33
34 10 Feb 2008; Gilles Dartiguelongue <eva@g.o>
35 gnome-python-desktop-2.20.0.ebuild:
36
37
38
39 1.1 dev-python/gnome-python-desktop/gnome-python-desktop-2.22.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gnome-python-desktop/gnome-python-desktop-2.22.0.ebuild?rev=1.1&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/gnome-python-desktop/gnome-python-desktop-2.22.0.ebuild?rev=1.1&content-type=text/plain
43
44 Index: gnome-python-desktop-2.22.0.ebuild
45 ===================================================================
46 # Copyright 1999-2008 Gentoo Foundation
47 # Distributed under the terms of the GNU General Public License v2
48 # $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/gnome-python-desktop-2.22.0.ebuild,v 1.1 2008/03/27 10:19:26 eva Exp $
49
50 EAPI="1"
51
52 inherit gnome2 python virtualx
53
54 DESCRIPTION="provides python interfacing modules for some GNOME desktop libraries"
55 HOMEPAGE="http://pygtk.org/"
56
57 LICENSE="LGPL-2.1 GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="doc eds"
61
62 # FIXME: upstream is intending to move to WAF build system
63
64 RDEPEND="virtual/python
65 >=dev-python/pygtk-2.10.3
66 >=dev-libs/glib-2.6.0
67 >=x11-libs/gtk+-2.4.0
68 >=dev-python/gnome-python-2.10.0
69 >=gnome-base/gnome-panel-2.13.4
70 >=gnome-base/libgnomeprint-2.2.0
71 >=gnome-base/libgnomeprintui-2.2.0
72 x11-libs/gtksourceview:1.0
73 >=x11-libs/libwnck-2.19.3
74 >=gnome-base/libgtop-2.13.0
75 >=gnome-extra/nautilus-cd-burner-2.15.3
76 >=gnome-extra/gnome-media-2.10.0
77 >=gnome-base/gconf-2.10.0
78 >=x11-wm/metacity-2.21.5
79 dev-python/pycairo
80 >=gnome-base/librsvg-2.13.93
81 >=gnome-base/gnome-keyring-2.20.1
82 >=gnome-base/gnome-desktop-2.10.0
83 eds? ( >=gnome-extra/evolution-data-server-1.8 )
84 >=media-video/totem-1.4.0
85 !<dev-python/gnome-python-extras-2.13"
86 DEPEND="${RDEPEND}
87 >=dev-util/pkgconfig-0.7"
88
89 DOCS="AUTHORS ChangeLog INSTALL* MAINTAINERS NEWS README"
90
91 pkg_config() {
92 G2CONF="${G2CONF}
93 $(use_enable eds evolution)
94 $(use_enable eds evolution-ecal)"
95 }
96
97 src_unpack() {
98 gnome2_src_unpack
99
100 # disable pyc compiling
101 mv py-compile py-compile.orig
102 ln -s $(type -P true) py-compile
103 }
104
105 src_test() {
106 Xemake check || die "tests failed"
107 }
108
109 src_install() {
110 gnome2_src_install
111
112 if use doc; then
113 insinto /usr/share/doc/${PF}
114 doins -r examples
115 fi
116 }
117
118 pkg_postinst() {
119 python_version
120 python_mod_optimize "${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0"
121 }
122
123 pkg_postrm() {
124 python_version
125 python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0
126 }
127
128
129
130 --
131 gentoo-commits@l.g.o mailing list