blob: 301d2bc48aa51014e8c30501c3016484d6588d99 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/konqueror/konqueror-4.2.1-r1.ebuild,v 1.3 2009/04/11 19:33:19 armin76 Exp $
EAPI="2"
KMNAME="kdebase-apps"
inherit kde4-meta
DESCRIPTION="KDE: Web browser, file manager, ..."
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="+auth +bookmarks debug thumbnail"
# 4 of 4 tests fail. Last checked for 4.0.3
RESTRICT="test"
DEPEND="
>=kde-base/libkonq-${PV}:${SLOT}[kdeprefix=]
"
RDEPEND="${DEPEND}
>=kde-base/kdebase-kioslaves-${PV}:${SLOT}[kdeprefix=]
>=kde-base/kfind-${PV}:${SLOT}[kdeprefix=]
>=kde-base/kurifilter-plugins-${PV}:${SLOT}[kdeprefix=]
auth? ( >=kde-base/kpasswdserver-${PV}:${SLOT}[kdeprefix=] )
bookmarks? ( >=kde-base/keditbookmarks-${PV}:${SLOT}[kdeprefix=] )
thumbnail? ( media-video/mplayerthumbs:1[kdeprefix=] )
"
KMEXTRA="
doc/${PN}/
"
KMEXTRACTONLY="
lib/konq/
"
pkg_postinst() {
kde4-meta_pkg_postinst
echo
elog "If you want to use konqueror as a filemanager, install the dolphin kpart:"
elog "emerge -1 kde-base/dolphin:${SLOT}"
elog
elog "To use Java on webpages: emerge jre"
echo
}
|