blob: 2bbefdb0208715f0502d0cbb06a5410a7923388d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-kioslaves/kdebase-kioslaves-4.2.1.ebuild,v 1.3 2009/04/11 04:39:43 jer Exp $
EAPI="2"
KMNAME="kdebase-runtime"
KMMODULE="kioslave"
inherit kde4-meta
DESCRIPTION="kioslave: the kde VFS framework - kioslave plugins present a filesystem-like view of arbitrary data"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="bzip2 debug openexr samba"
RESTRICT="test"
DEPEND="
dev-libs/cyrus-sasl
sys-apps/dbus
sys-apps/hal
x11-libs/libXcursor
openexr? ( media-libs/openexr )
samba? ( net-fs/samba )
"
RDEPEND="${DEPEND}
>=kde-base/kdesu-${PV}:${SLOT}[kdeprefix=]
>=kde-base/kdialog-${PV}:${SLOT}[kdeprefix=]
virtual/ssh
"
KMEXTRA="
kioexec
kdeeject
doc/kioslave
"
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with bzip2 BZip2)
$(cmake-utils_use_with samba Samba)
$(cmake-utils_use_with openexr OpenEXR)"
kde4-meta_src_configure
}
pkg_postinst() {
echo
elog "Note that if you upgrade strigi, you have to rebuild this package."
echo
kde4-meta_pkg_postinst
}
|