blob: 6daddbd9da4c2ecab03f9cd38986d666e1725f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/kazehakase/kazehakase-0.1.8.1-r1.ebuild,v 1.2 2004/08/28 13:59:59 usata Exp $
inherit eutils
IUSE="migemo estraier"
DESCRIPTION="Kazehakase is a browser with gecko engine like Epiphany or Galeon."
HOMEPAGE="http://kazehakase.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/${PN}/10618/${P}.tar.gz"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
LICENSE="GPL-2"
DEPEND="sys-devel/automake
sys-devel/libtool
net-www/mozilla
x11-libs/pango
>=x11-libs/gtk+-2
dev-util/pkgconfig
migemo? ( app-text/migemo dev-ruby/uconv )
estraier? ( app-text/estraier )"
RDEPEND="net-www/mozilla
x11-libs/pango
>=x11-libs/gtk+-2
migemo? ( app-text/migemo dev-ruby/uconv )
estraier? ( app-text/estraier )"
pkg_setup(){
if grep -v gtk2 /var/db/pkg/net-www/mozilla-[[:digit:]]*/USE > /dev/null
then
echo
eerror
eerror "This needs mozilla used gtk2."
eerror "To build mozilla use gtk2, please type following command:"
eerror
eerror " # USE=\"gtk2\" emerge mozilla"
eerror
die
fi
}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile(){
econf `use_enable migemo` || die
emake || die
}
src_install(){
emake DESTDIR="${D}" install || die
dodoc ABOUT-NLS AUTHORS COPYING* ChangeLog NEWS README* TODO.ja
}
|