Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/kazehakase: ChangeLog kazehakase-0.5.3.ebuild
Date: Fri, 29 Feb 2008 15:43:25
Message-Id: E1JV7OM-00052L-I0@stork.gentoo.org
1 matsuu 08/02/29 15:43:22
2
3 Modified: ChangeLog
4 Added: kazehakase-0.5.3.ebuild
5 Log:
6 Version bumped. Fixed gcc 4.3 issue, bug #211840.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.56 www-client/kazehakase/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/kazehakase/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 24 Feb 2008 15:54:16 -0000 1.55
23 +++ ChangeLog 29 Feb 2008 15:43:21 -0000 1.56
24 @@ -1,6 +1,13 @@
25 # ChangeLog for www-client/kazehakase
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase/ChangeLog,v 1.55 2008/02/24 15:54:16 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase/ChangeLog,v 1.56 2008/02/29 15:43:21 matsuu Exp $
29 +
30 +*kazehakase-0.5.3 (29 Feb 2008)
31 +
32 + 29 Feb 2008; MATSUU Takuto <matsuu@g.o>
33 + +files/kazehakase-0.5.3-gcc43.patch, +kazehakase-0.5.3.ebuild:
34 + Version bumped.
35 + Fixed gcc 4.3 issue, bug #211840.
36
37 *kazehakase-0.5.2 (24 Feb 2008)
38
39
40
41
42 1.1 www-client/kazehakase/kazehakase-0.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/kazehakase-0.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/kazehakase-0.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kazehakase-0.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase/kazehakase-0.5.3.ebuild,v 1.1 2008/02/29 15:43:21 matsuu Exp $
52
53 inherit autotools eutils flag-o-matic
54
55 IUSE="hyperestraier migemo ruby ssl"
56
57 DESCRIPTION="a browser with gecko engine like Epiphany or Galeon."
58 SRC_URI="mirror://sourceforge.jp/${PN}/29695/${P}.tar.gz"
59 HOMEPAGE="http://kazehakase.sourceforge.jp/"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 LICENSE="GPL-2"
64
65 DEPEND=">=x11-libs/gtk+-2.12
66 || (
67 >=www-client/mozilla-firefox-1.0.2-r1
68 >=www-client/seamonkey-1.0
69 >=mail-client/mozilla-thunderbird-0.8
70 >=net-libs/xulrunner-1.8
71 )
72 ssl? ( >=net-libs/gnutls-1.2.0 )
73 ruby? ( dev-ruby/ruby-gtk2 dev-ruby/ruby-gettext )
74 hyperestraier? ( >=app-text/hyperestraier-1.2 )"
75
76 RDEPEND="${DEPEND}
77 migemo? ( app-text/migemo )"
78
79 DEPEND="${DEPEND}
80 dev-util/pkgconfig"
81
82 src_unpack() {
83 unpack ${A}
84 cd "${S}"
85 epatch "${FILESDIR}"/${P}-gcc43.patch
86 AT_M4DIR=macros eautoreconf
87 }
88
89 src_compile(){
90 local myconf
91
92 # Bug 159949
93 replace-flags -Os -O2
94
95 myconf="${myconf} $(use_enable migemo)"
96 use ruby || myconf="${myconf} --with-ruby=no --with-rgettext=no"
97 use ssl || myconf="${myconf} --disable-ssl"
98
99 econf ${myconf} || die
100 emake || die
101 }
102
103 src_install(){
104 emake DESTDIR="${D}" install || die
105 dodoc AUTHORS ChangeLog NEWS README* TODO*
106 }
107
108
109
110 --
111 gentoo-commits@l.g.o mailing list