blob: a1b980b76bc1af72e2ed529e0eeb8ba30005ff5a (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/kazehakase-cvs/kazehakase-cvs-20050325.ebuild,v 1.2 2005/03/25 17:56:06 nakano Exp $
inherit cvs eutils
ECVS_BRANCH=""
ECVS_SERVER="cvs.sourceforge.jp:/cvsroot/kazehakase"
ECVS_USER="anonymous"
ECVS_MODULE="kazehakase"
DESCRIPTION="Kazehakase is a browser with gecko engine like Epiphany or Galeon."
SRC_URI=""
HOMEPAGE="http://kazehakase.sourceforge.jp/"
IUSE="migemo estraier thumbnail"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc"
LICENSE="GPL-2"
DEPEND=">=www-client/mozilla-1.7
x11-libs/pango
>=x11-libs/gtk+-2
dev-util/pkgconfig
net-misc/curl
migemo? ( || ( app-text/migemo app-text/cmigemo ) )
estraier? ( app-text/estraier )
thumbnail? ( virtual/ghostscript )
sys-devel/autoconf
sys-devel/automake"
S="${WORKDIR}/${ECVS_MODULE}"
pkg_setup(){
local moz_use="$(</var/db/pkg/`best_version www-client/mozilla`/USE)"
# >=www-client/mozilla-1.7.3-r2 always depend on gtk2.
if ! has_version '>=www-client/mozilla-1.7.3-r2' && ! has gtk2 ${moz_use}
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(){
cvs_src_unpack || die
cd ${S}
epatch ${FILESDIR}/${PN}-gentoo.patch
mv configure.in configure.in.org
sed -e "s/\(AC_INIT(kazehakase\|GETTEXT_PACKAGE=kazehakase\)/\1-cvs/" \
configure.in.org > configure.in
mv data/Makefile.am data/Makefile.am.org
sed -e "s/^desktop_DATA = kazehakase.desktop/desktop_DATA = kazehakase-cvs.desktop/" \
data/Makefile.am.org > data/Makefile.am
sed -e "s/kazehakase/kazehakase-cvs/" data/kazehakase.desktop > data/kazehakase-cvs.desktop
}
src_compile(){
export WANT_AUTOCONF=2.5
export WANT_AUTOMAKE=1.6
./autogen.sh || die
econf `use_enable migemo` --program-suffix="-cvs" || die
emake || die
}
src_install(){
emake DESTDIR="${D}" install || die
dodoc ABOUT-NLS AUTHORS COPYING* ChangeLog NEWS README* TODO.ja
}
pkg_postinst(){
if use thumbnail; then
einfo "To enable thumbnail, "
einfo " 1. Go to Preference."
einfo " 2. Check \"Create thumbnail\"."
einfo
ewarn "Creating thumbnail process is still unstable (sometimes causes crash),"
ewarn "but most causes of unstability are Mozilla. If you find a crash bug on"
ewarn "Kazehakase, please confirm the following:"
ewarn
ewarn " 1. Load a crash page with Mozilla."
ewarn " 2. Print preview the page."
ewarn " 3. Close print preview window."
ewarn " 4. Print the page to a file."
ewarn
fi
}
|