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