Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/drivel: ChangeLog drivel-3.0.0.ebuild
Date: Tue, 06 Oct 2009 09:54:14
Message-Id: E1Mv6kF-0006dT-HA@stork.gentoo.org
1 mrpouet 09/10/06 09:54:11
2
3 Modified: ChangeLog drivel-3.0.0.ebuild
4 Log:
5 Fix bug #287746, compile-warnings support was automagic, which forced -Werror cflag to be used (and compilation to fail). Fix some QA
6 (Portage version: 2.2_rc43/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.35 net-misc/drivel/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/ChangeLog?rev=1.35&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/ChangeLog?rev=1.35&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/ChangeLog?r1=1.34&r2=1.35
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-misc/drivel/ChangeLog,v
18 retrieving revision 1.34
19 retrieving revision 1.35
20 diff -u -r1.34 -r1.35
21 --- ChangeLog 5 Oct 2009 18:55:46 -0000 1.34
22 +++ ChangeLog 6 Oct 2009 09:54:11 -0000 1.35
23 @@ -1,6 +1,11 @@
24 # ChangeLog for net-misc/drivel
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-misc/drivel/ChangeLog,v 1.34 2009/10/05 18:55:46 graaff Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-misc/drivel/ChangeLog,v 1.35 2009/10/06 09:54:11 mrpouet Exp $
28 +
29 + 06 Oct 2009; Romain Perier <mrpouet@g.o>
30 + drivel-3.0.0.ebuild, +files/drivel-3.0.0-compile-warnings.patch:
31 + Fix bug #287746, compile-warnings support was automagic, which forced
32 + -Werror cflag to be used (and compilation to fail). Fix some QA.
33
34 05 Oct 2009; Hans de Graaff <graaff@g.o> drivel-3.0.0.ebuild:
35 Do not error out on warnings, this should fix the build as reported in
36
37
38
39 1.3 net-misc/drivel/drivel-3.0.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild?r1=1.2&r2=1.3
44
45 Index: drivel-3.0.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- drivel-3.0.0.ebuild 5 Oct 2009 18:55:46 -0000 1.2
52 +++ drivel-3.0.0.ebuild 6 Oct 2009 09:54:11 -0000 1.3
53 @@ -1,8 +1,10 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild,v 1.2 2009/10/05 18:55:46 graaff Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-misc/drivel/drivel-3.0.0.ebuild,v 1.3 2009/10/06 09:54:11 mrpouet Exp $
58
59 -inherit gnome2
60 +EAPI="2"
61 +
62 +inherit autotools eutils gnome2
63
64 DESCRIPTION="Drivel is a desktop blogger with support for LiveJournal, Blogger,
65 MoveableType, Wordpress and more."
66 @@ -29,15 +31,21 @@
67 >=app-text/gnome-doc-utils-0.3.2
68 >=dev-util/intltool-0.21
69 >=app-text/scrollkeeper-0.3.5"
70 -
71 DOCS="AUTHORS ChangeLog NEWS README TODO"
72
73 -G2CONF="${G2CONF} \
74 - `use_with spell gtkspell` \
75 - `use_with dbus` \
76 - --disable-mime-update \
77 - --disable-desktop-update \
78 - --disable-error-on-warning \
79 - --localstatedir=${D}/var"
80 -
81 -USE_DESTDIR="1"
82 +pkg_setup() {
83 + G2CONF="${G2CONF}
84 + $(use_with spell gtkspell)
85 + $(use_with dbus)
86 + --disable-mime-update
87 + --disable-desktop-update
88 + --disable-error-on-warning
89 + --disable-compile-warnings
90 + --localstatedir=${D}/var"
91 +}
92 +src_prepare() {
93 + epatch "${FILESDIR}/${P}-compile-warnings.patch"
94 +
95 + intltoolize --automake --copy --force || die "intltoolize failed"
96 + eautoreconf
97 +}