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.6.ebuild
Date: Fri, 21 Nov 2008 03:27:35
Message-Id: E1L3Mg9-00089h-9h@stork.gentoo.org
1 matsuu 08/11/21 03:27:33
2
3 Modified: ChangeLog
4 Added: kazehakase-0.5.6.ebuild
5 Log:
6 Version bumped, bug #247797.
7 (Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
8
9 Revision Changes Path
10 1.66 www-client/kazehakase/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/kazehakase/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 21 Nov 2008 01:57:58 -0000 1.65
23 +++ ChangeLog 21 Nov 2008 03:27:33 -0000 1.66
24 @@ -1,6 +1,11 @@
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.65 2008/11/21 01:57:58 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase/ChangeLog,v 1.66 2008/11/21 03:27:33 matsuu Exp $
29 +
30 +*kazehakase-0.5.6 (21 Nov 2008)
31 +
32 + 21 Nov 2008; MATSUU Takuto <matsuu@g.o> +kazehakase-0.5.6.ebuild:
33 + Version bumped, bug #247797.
34
35 21 Nov 2008; Jeroen Roovers <jer@g.o> metadata.xml:
36 Fix package atom.
37
38
39
40 1.1 www-client/kazehakase/kazehakase-0.5.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/kazehakase-0.5.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/kazehakase/kazehakase-0.5.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: kazehakase-0.5.6.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase/kazehakase-0.5.6.ebuild,v 1.1 2008/11/21 03:27:33 matsuu Exp $
50
51 inherit eutils flag-o-matic
52
53 IUSE="hyperestraier migemo ruby ssl webkit"
54
55 DESCRIPTION="a browser with gecko engine like Epiphany or Galeon."
56 SRC_URI="mirror://sourceforge.jp/${PN}/33533/${P}.tar.gz"
57 HOMEPAGE="http://kazehakase.sourceforge.jp/"
58
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 LICENSE="GPL-2"
62
63 DEPEND=">=x11-libs/gtk+-2.12
64 || (
65 >=www-client/mozilla-firefox-2
66 >=www-client/seamonkey-1
67 >=mail-client/mozilla-thunderbird-2
68 >=net-libs/xulrunner-1.8
69 )
70 ssl? ( >=net-libs/gnutls-1.2.0 )
71 ruby? ( dev-ruby/ruby-gtk2 dev-ruby/ruby-gettext )
72 hyperestraier? ( >=app-text/hyperestraier-1.2 )
73 webkit? ( net-libs/webkit-gtk )"
74
75 RDEPEND="${DEPEND}
76 migemo? ( app-text/migemo )"
77
78 DEPEND="${DEPEND}
79 dev-util/pkgconfig"
80
81 src_unpack() {
82 unpack ${A}
83 cd "${S}"
84 epatch "${FILESDIR}"/${PN}-0.5.5-xulrunner19.patch
85 }
86
87 src_compile() {
88 local myconf
89
90 # Bug 159949
91 replace-flags -Os -O2
92
93 myconf="${myconf} $(use_enable migemo)"
94 use ruby || myconf="${myconf} --with-ruby=no --with-rgettext=no"
95 use ssl || myconf="${myconf} --disable-ssl"
96
97 econf ${myconf} || die
98 emake || die
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die
103 dodoc AUTHORS ChangeLog NEWS README* TODO*
104 }