Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/yelp: ChangeLog yelp-2.30.2.ebuild
Date: Wed, 29 Sep 2010 21:17:27
Message-Id: 20100929211722.3FFCA20054@flycatcher.gentoo.org
1 eva 10/09/29 21:17:22
2
3 Modified: ChangeLog
4 Added: yelp-2.30.2.ebuild
5 Log:
6 Version bump. Include patches from r1, plus i18n updates.
7
8 (Portage version: 2.2_rc88/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.243 gnome-extra/yelp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/yelp/ChangeLog?rev=1.243&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/yelp/ChangeLog?rev=1.243&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/yelp/ChangeLog?r1=1.242&r2=1.243
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v
20 retrieving revision 1.242
21 retrieving revision 1.243
22 diff -u -r1.242 -r1.243
23 --- ChangeLog 11 Sep 2010 18:52:26 -0000 1.242
24 +++ ChangeLog 29 Sep 2010 21:17:22 -0000 1.243
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-extra/yelp
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v 1.242 2010/09/11 18:52:26 josejx Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v 1.243 2010/09/29 21:17:22 eva Exp $
30 +
31 +*yelp-2.30.2 (29 Sep 2010)
32 +
33 + 29 Sep 2010; Gilles Dartiguelongue <eva@g.o> +yelp-2.30.2.ebuild:
34 + Version bump. Include patches from r1, plus i18n updates.
35
36 11 Sep 2010; Joseph Jezak <josejx@g.o> yelp-2.30.1-r1.ebuild:
37 Marked ppc for bug #324077.
38
39
40
41 1.1 gnome-extra/yelp/yelp-2.30.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/yelp/yelp-2.30.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/yelp/yelp-2.30.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: yelp-2.30.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/yelp-2.30.2.ebuild,v 1.1 2010/09/29 21:17:22 eva Exp $
51
52 EAPI="2"
53
54 inherit autotools eutils gnome2
55
56 DESCRIPTION="Help browser for GNOME"
57 HOMEPAGE="http://www.gnome.org/"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
62 IUSE="beagle lzma"
63
64 RDEPEND=">=gnome-base/gconf-2
65 >=app-text/gnome-doc-utils-0.19.1
66 >=x11-libs/gtk+-2.18
67 >=dev-libs/glib-2.16
68 >=dev-libs/libxml2-2.6.5
69 >=dev-libs/libxslt-1.1.4
70 >=x11-libs/startup-notification-0.8
71 >=dev-libs/dbus-glib-0.71
72 beagle? ( || (
73 >=dev-libs/libbeagle-0.3.0
74 =app-misc/beagle-0.2* ) )
75 net-libs/xulrunner:1.9
76 sys-libs/zlib
77 app-arch/bzip2
78 lzma? ( || (
79 app-arch/xz-utils
80 app-arch/lzma-utils ) )
81 >=app-text/rarian-0.7
82 >=app-text/scrollkeeper-9999"
83 DEPEND="${RDEPEND}
84 sys-devel/gettext
85 >=dev-util/intltool-0.35
86 >=dev-util/pkgconfig-0.9
87 gnome-base/gnome-common"
88 # If eautoreconf:
89 # gnome-base/gnome-common
90
91 DOCS="AUTHORS ChangeLog NEWS README TODO"
92
93 pkg_setup() {
94 G2CONF="${G2CONF}
95 --with-gecko=libxul-embedding
96 $(use_enable lzma)"
97
98 if use beagle; then
99 G2CONF="${G2CONF} --with-search=beagle"
100 else
101 G2CONF="${G2CONF} --with-search=basic"
102 fi
103 }
104
105 src_prepare() {
106 gnome2_src_prepare
107
108 # Fix automagic lzma support, bug #266128
109 epatch "${FILESDIR}/${PN}-2.26.0-automagic-lzma.patch"
110
111 # Fix build with xulrunner-1.9.2
112 epatch "${FILESDIR}/${PN}-2.28.1-system-nspr.patch"
113
114 intltoolize --force --copy --automake || die "intltoolize failed"
115 eautoreconf
116
117 # strip stupid options in configure, see bug #196621
118 sed -i 's|$AM_CFLAGS -pedantic -ansi|$AM_CFLAGS|' configure || die "sed failed"
119 }