Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/dwb: ChangeLog dwb-2012.08.22.ebuild
Date: Sun, 26 Aug 2012 00:44:54
Message-Id: 20120826004444.3F66E20747@flycatcher.gentoo.org
1 radhermit 12/08/26 00:44:44
2
3 Modified: ChangeLog
4 Added: dwb-2012.08.22.ebuild
5 Log:
6 Version bump. Respect LDFLAGS (bug #432676 by xmw).
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 www-client/dwb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/dwb/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 19 Aug 2012 14:05:47 -0000 1.6
24 +++ ChangeLog 26 Aug 2012 00:44:44 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-client/dwb
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/ChangeLog,v 1.6 2012/08/19 14:05:47 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/ChangeLog,v 1.7 2012/08/26 00:44:44 radhermit Exp $
30 +
31 +*dwb-2012.08.22 (26 Aug 2012)
32 +
33 + 26 Aug 2012; Tim Harder <radhermit@g.o> +dwb-2012.08.22.ebuild:
34 + Version bump. Respect LDFLAGS (bug #432676 by xmw).
35
36 19 Aug 2012; Anthony G. Basile <blueness@g.o> dwb-2012.05.11.ebuild:
37 Keyword ~ppc, bug #431822
38
39
40
41 1.1 www-client/dwb/dwb-2012.08.22.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/dwb-2012.08.22.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/dwb-2012.08.22.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dwb-2012.08.22.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-client/dwb/dwb-2012.08.22.ebuild,v 1.1 2012/08/26 00:44:44 radhermit Exp $
51
52 EAPI=4
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="Dynamic web browser based on WebKit and GTK+"
57 HOMEPAGE="http://portix.bitbucket.org/dwb/"
58 SRC_URI="mirror://bitbucket/portix/dwb/downloads/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="examples gtk3"
64
65 RDEPEND=">=net-libs/libsoup-2.32:2.4
66 !gtk3? (
67 >=net-libs/webkit-gtk-1.4.0:2
68 x11-libs/gtk+:2
69 )
70 gtk3? (
71 >=net-libs/webkit-gtk-1.4.0:3
72 x11-libs/gtk+:3
73 )"
74 DEPEND="${RDEPEND}
75 virtual/pkgconfig"
76
77 src_prepare() {
78 sed -i -e "/^CFLAGS += -\(pipe\|g\|O2\)/d" \
79 -e "/^LDFLAGS =/s:=:+=:" config.mk || die
80 }
81
82 src_compile() {
83 local myconf
84 use gtk3 && myconf+=" GTK=3"
85
86 emake CC="$(tc-getCC)" ${myconf}
87 }
88
89 src_install() {
90 default
91
92 if use examples ; then
93 dodoc -r examples
94 docompress -x /usr/share/doc/${PF}/examples
95 fi
96 }