blob: 4166eab045e8ff6e1c66be35c3776ae33ad68b1a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-kioslaves/kdebase-kioslaves-3.5.7.ebuild,v 1.3 2007/07/08 04:34:07 mr_bones_ Exp $
KMNAME=kdebase
KMMODULE=kioslave
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils
SRC_URI="${SRC_URI}
mirror://gentoo/kdebase-3.5-patchset-05.tar.bz2"
DESCRIPTION="kioslave: the kde VFS framework - kioslave plugins present a filesystem-like view of arbitrary data"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="hal kdehiddenvisibility ldap openexr samba"
DEPEND="ldap? ( net-nds/openldap )
samba? ( >=net-fs/samba-3.0.1 )
>=dev-libs/cyrus-sasl-2
hal? ( || ( dev-libs/dbus-qt3-old >=sys-apps/dbus-0.34 )
=sys-apps/hal-0.5* )
openexr? ( >=media-libs/openexr-1.2.2-r2 )
!<kde-base/kdesktop-3.5.6-r1"
RDEPEND="${DEPEND}
virtual/ssh
$(deprange 3.5.5 $MAXKDEVER kde-base/kdialog)" # for the kdeeject script used by the devices/mounthelper ioslave
DEPEND="${DEPEND}
x11-apps/xhost"
# see bug #143375
KMEXTRA="kdesktop/init"
pkg_setup() {
kde_pkg_setup
if use hal && has_version '<sys-apps/dbus-0.91' && ! built_with_use sys-apps/dbus qt3; then
eerror "To enable HAL support in this package is required to have"
eerror "sys-apps/dbus compiled with Qt 3 support."
eerror "Please reemerge sys-apps/dbus with USE=\"qt3\"."
die "Please reemerge sys-apps/dbus with USE=\"qt3\"."
fi
}
src_unpack() {
kde-meta_src_unpack
# FIXME - disable broken tests
sed -i -e "s:TESTS =.*:TESTS =:" ${S}/kioslave/smtp/Makefile.am || die "sed failed"
sed -i -e "s:TESTS =.*:TESTS =:" ${S}/kioslave/trash/Makefile.am || die "sed failed"
if ! [[ $(xhost >> /dev/null 2>/dev/null) ]] ; then
einfo "User ${USER} has no X access, disabling some tests."
for ioslave in media remote home system ; do
sed -e "s:check\: test${ioslave}::" -e "s:./test${ioslave}::" \
-i kioslave/${ioslave}/Makefile.am || die "sed failed"
done
fi
}
src_compile() {
myconf="$myconf `use_with ldap` `use_with samba` `use_with hal` `use_with openexr`"
kde-meta_src_compile
}
|