Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/gedit: ChangeLog gedit-2.22.3.ebuild
Date: Mon, 02 Jun 2008 17:57:56
Message-Id: E1K3EI2-0001zR-Jg@stork.gentoo.org
1 leio 08/06/02 17:57:50
2
3 Modified: ChangeLog
4 Added: gedit-2.22.3.ebuild
5 Log:
6 Version bump for misc bug fixes and translation updates
7 (Portage version: 2.1.5.3)
8
9 Revision Changes Path
10 1.242 app-editors/gedit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/ChangeLog?rev=1.242&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/ChangeLog?rev=1.242&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/ChangeLog?r1=1.241&r2=1.242
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/gedit/ChangeLog,v
19 retrieving revision 1.241
20 retrieving revision 1.242
21 diff -u -r1.241 -r1.242
22 --- ChangeLog 29 May 2008 15:35:21 -0000 1.241
23 +++ ChangeLog 2 Jun 2008 17:57:50 -0000 1.242
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-editors/gedit
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/ChangeLog,v 1.241 2008/05/29 15:35:21 hawking Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/ChangeLog,v 1.242 2008/06/02 17:57:50 leio Exp $
29 +
30 +*gedit-2.22.3 (02 Jun 2008)
31 +
32 + 02 Jun 2008; Mart Raudsepp <leio@g.o> +gedit-2.22.3.ebuild:
33 + Version bump for misc bug fixes and translation updates
34
35 29 May 2008; Ali Polatel <hawking@g.o> gedit-2.22.0.ebuild,
36 gedit-2.22.1.ebuild:
37
38
39
40 1.1 app-editors/gedit/gedit-2.22.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/gedit-2.22.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/gedit-2.22.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gedit-2.22.3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/gedit-2.22.3.ebuild,v 1.1 2008/06/02 17:57:50 leio Exp $
50
51 inherit gnome2 python eutils autotools
52
53 DESCRIPTION="A text editor for the GNOME desktop"
54 HOMEPAGE="http://www.gnome.org/"
55
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE="doc python spell xattr"
60
61 RDEPEND=">=gnome-base/gconf-2
62 xattr? ( sys-apps/attr )
63 >=dev-libs/glib-2.14
64 >=x11-libs/gtk+-2.12
65 >=x11-libs/gtksourceview-2.2
66 >=gnome-base/libgnomeui-2.16
67 >=gnome-base/libglade-2.5.1
68 >=gnome-base/gnome-vfs-2.16
69 spell? (
70 >=app-text/enchant-1.2
71 app-text/iso-codes
72 )
73 python? (
74 >=dev-python/pygobject-2.12
75 >=dev-python/pygtk-2.12
76 >=dev-python/pygtksourceview-2.2
77 )"
78
79 DEPEND="${RDEPEND}
80 sys-devel/gettext
81 >=dev-util/pkgconfig-0.9
82 >=app-text/scrollkeeper-0.3.11
83 >=dev-util/intltool-0.35
84 >=app-text/gnome-doc-utils-0.3.2
85 gnome-base/gnome-common"
86 # gnome-common needed to eautoreconf
87
88 DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README"
89
90 if [[ "${ARCH}" == "PPC" ]] ; then
91 # HACK HACK HACK: someone fix this garbage
92 MAKEOPTS="${MAKEOPTS} -j1"
93 fi
94
95 pkg_setup() {
96 G2CONF="${G2CONF}
97 --disable-scrollkeeper
98 $(use_enable python)
99 $(use_enable spell)
100 $(use_enable xattr attr)"
101 }
102
103 src_unpack() {
104 gnome2_src_unpack
105
106 # Remove symbols that are not meant to be part of the docs, and
107 # break compilation if USE="doc -python" (bug #158638).
108 if use !python && use doc; then
109 epatch "${FILESDIR}"/${PN}-2.16.2-no_python_module_docs.patch
110 fi
111
112 # chown on fbsd doesn't have --reference. Bug #183691
113 epatch "${FILESDIR}"/${PN}-2.18.1-fbsd.patch
114
115 # fixes failing python test due to libtool 2.2, bug #216110
116 epatch "${FILESDIR}/${PN}-2.22.1-fix-libtool-2.2.patch"
117
118 # disable pyc compiling
119 mv "${S}"/py-compile "${S}"/py-compile.orig
120 ln -s $(type -P true) "${S}"/py-compile
121
122 eautoreconf
123 }
124
125 pkg_postinst() {
126 use python && python_mod_optimize /usr/$(get_libdir)/gedit-2/plugins
127 }
128
129 pkg_postrm() {
130 use python && python_mod_cleanup /usr/$(get_libdir)/gedit-2/plugins
131 }
132
133
134
135 --
136 gentoo-commits@l.g.o mailing list