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.22.1-r1.ebuild yelp-2.22.0.ebuild
Date: Mon, 21 Apr 2008 21:53:52
Message-Id: E1Jo3xN-0000Ab-GR@stork.gentoo.org
1 eva 08/04/21 21:53:49
2
3 Modified: ChangeLog
4 Added: yelp-2.22.1-r1.ebuild
5 Removed: yelp-2.22.0.ebuild
6 Log:
7 apply patch to allow compilation against libbeagle, bug #215026
8 (Portage version: 2.1.5_rc5)
9
10 Revision Changes Path
11 1.181 gnome-extra/yelp/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/yelp/ChangeLog?rev=1.181&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/yelp/ChangeLog?rev=1.181&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/yelp/ChangeLog?r1=1.180&r2=1.181
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v
20 retrieving revision 1.180
21 retrieving revision 1.181
22 diff -u -r1.180 -r1.181
23 --- ChangeLog 10 Apr 2008 23:02:11 -0000 1.180
24 +++ ChangeLog 21 Apr 2008 21:53:48 -0000 1.181
25 @@ -1,6 +1,13 @@
26 # ChangeLog for gnome-extra/yelp
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v 1.180 2008/04/10 23:02:11 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/ChangeLog,v 1.181 2008/04/21 21:53:48 eva Exp $
30 +
31 +*yelp-2.22.1-r1 (21 Apr 2008)
32 +
33 + 21 Apr 2008; Gilles Dartiguelongue <eva@g.o>
34 + +files/yelp-2.22-with-beagle-0.3.patch, -yelp-2.22.0.ebuild,
35 + +yelp-2.22.1-r1.ebuild:
36 + apply patch to allow compilation against libbeagle, bug #215026
37
38 *yelp-2.22.1 (10 Apr 2008)
39
40
41
42
43 1.1 gnome-extra/yelp/yelp-2.22.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/yelp/yelp-2.22.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/yelp/yelp-2.22.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: yelp-2.22.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/yelp-2.22.1-r1.ebuild,v 1.1 2008/04/21 21:53:48 eva Exp $
53
54 inherit eutils autotools 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 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62 IUSE="beagle lzma xulrunner"
63
64 RDEPEND=">=gnome-base/gconf-2
65 >=app-text/gnome-doc-utils-0.11.1
66 >=x11-libs/gtk+-2.10
67 >=gnome-base/gnome-vfs-2
68 >=gnome-base/libglade-2
69 >=gnome-base/libgnome-2.14
70 >=gnome-base/libgnomeui-2.14
71 >=dev-libs/libxml2-2.6.5
72 >=dev-libs/libxslt-1.1.4
73 >=x11-libs/startup-notification-0.8
74 >=dev-libs/glib-2
75 >=dev-libs/dbus-glib-0.71
76 beagle? ( || ( >=dev-libs/libbeagle-0.3.0 =app-misc/beagle-0.2* ) )
77 !xulrunner? ( =www-client/mozilla-firefox-2* )
78 xulrunner? ( =net-libs/xulrunner-1.8* )
79 sys-libs/zlib
80 app-arch/bzip2
81 lzma? ( app-arch/lzma-utils )
82 >=app-text/rarian-0.7
83 >=app-text/scrollkeeper-9999"
84 DEPEND="${RDEPEND}
85 sys-devel/gettext
86 >=dev-util/intltool-0.35
87 >=dev-util/pkgconfig-0.9"
88
89 DOCS="AUTHORS ChangeLog NEWS README TODO"
90
91 src_unpack() {
92 gnome2_src_unpack
93
94 # patch to work with >=libbeagle-0.3, bug #215026
95 epatch "${FILESDIR}"/yelp-2.22-with-beagle-0.3.patch
96
97 AT_M4DIR="${AT_M4DIR} m4" eautoreconf
98
99 # strip stupid options in configure, see bug #196621
100 sed -i 's|$AM_CFLAGS -pedantic -ansi|$AM_CFLAGS|' configure
101 }
102
103 pkg_setup() {
104 # FIXME: Add patch to make lzma-utils not automagic and use_enable here
105 G2CONF="${G2CONF} --enable-man --enable-info"
106
107 if use beagle; then
108 G2CONF="${G2CONF} --with-search=beagle"
109 else
110 G2CONF="${G2CONF} --with-search=basic"
111 fi
112
113 if use xulrunner; then
114 G2CONF="${G2CONF} --with-gecko=xulrunner"
115 else
116 G2CONF="${G2CONF} --with-gecko=firefox"
117 fi
118 }
119
120
121
122 --
123 gentoo-commits@l.g.o mailing list