blob: 303cf9d2c10d5526bd51f54ef04b7cf45dfe3c82 (
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
|
# Copyright 1999-2011 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.6.2.ebuild,v 1.2 2011/05/09 08:48:20 tomka Exp $
EAPI=3
KDE_HANDBOOK="optional"
KMNAME="kdebase-runtime"
KMMODULE="kioslave"
inherit kde4-meta
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
DESCRIPTION="kioslave: the kde VFS framework - kioslave plugins present a filesystem-like view of arbitrary data"
IUSE="+bzip2 exif debug lzma openexr samba +sftp"
# tests hang, last checked for 4.2.96
RESTRICT="test"
DEPEND="
!aqua? ( x11-libs/libXcursor )
bzip2? ( app-arch/bzip2 )
exif? ( media-gfx/exiv2 )
lzma? ( app-arch/xz-utils )
openexr? ( media-libs/openexr )
samba? (
|| (
=net-fs/samba-3.0*
>=net-fs/samba-3.4.6[smbclient]
)
)
sftp? ( >=net-libs/libssh-0.4.0[sftp] )
"
RDEPEND="${DEPEND}
$(add_kdebase_dep kdelibs 'bzip2?,lzma?')
$(add_kdebase_dep kdialog)
virtual/ssh
!aqua? ( !kernel_SunOS? ( virtual/eject ) )
"
KMEXTRA="
kioexec
kdeeject
"
src_configure() {
mycmakeargs=(
-DWITH_SLP=OFF
$(cmake-utils_use_with bzip2 BZip2)
$(cmake-utils_use_with exif Exiv2)
$(cmake-utils_use_with lzma LibLZMA)
$(cmake-utils_use_with openexr OpenEXR)
$(cmake-utils_use_with samba)
$(cmake-utils_use_with sftp LibSSH)
)
kde4-meta_src_configure
}
|