blob: 327ae28643662437f731572784d6914dc721c817 (
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
98
99
100
101
102
103
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.4.3.ebuild,v 1.5 2010/02/19 17:15:38 pacho Exp $
EAPI="2"
GCONF_DEBUG="no"
inherit autotools bash-completion gnome2 eutils
DESCRIPTION="GNOME Virtual Filesystem Layer"
HOMEPAGE="http://www.gnome.org"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="archive avahi bluetooth cdda doc fuse gdu gnome gnome-keyring gphoto2 hal samba +udev"
RDEPEND=">=dev-libs/glib-2.21.2
>=sys-apps/dbus-1.0
>=net-libs/libsoup-2.25.1[gnome]
dev-libs/libxml2
net-misc/openssh
>=sys-fs/udev-138
archive? ( app-arch/libarchive )
avahi? ( >=net-dns/avahi-0.6 )
bluetooth? (
>=app-mobilephone/obex-data-server-0.4.5
dev-libs/dbus-glib
net-wireless/bluez
dev-libs/expat )
fuse? ( sys-fs/fuse )
gdu? ( >=sys-apps/gnome-disk-utility-2.28 )
gnome? ( >=gnome-base/gconf-2.0 )
gnome-keyring? ( >=gnome-base/gnome-keyring-1.0 )
gphoto2? ( >=media-libs/libgphoto2-2.4.7 )
udev? (
cdda? ( >=dev-libs/libcdio-0.78.2[-minimal] )
>=sys-fs/udev-145[extras] )
hal? (
cdda? ( >=dev-libs/libcdio-0.78.2[-minimal] )
>=sys-apps/hal-0.5.10 )
samba? ( || ( net-fs/samba-libs[smbclient]
<=net-fs/samba-3.3 ) )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
>=dev-util/pkgconfig-0.19
dev-util/gtk-doc-am
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog NEWS README TODO"
pkg_setup() {
if use cdda && ! use hal && ! use udev; then
ewarn "You have \"+cdda\", but you have \"-hal\" and \"-udev\""
ewarn "cdda support will NOT be built unless you enable EITHER hal OR udev"
fi
G2CONF="${G2CONF}
--enable-udev
--enable-http
--disable-bash-completion
$(use_enable archive)
$(use_enable avahi)
$(use_enable bluetooth obexftp)
$(use_enable cdda)
$(use_enable fuse)
$(use_enable gdu)
$(use_enable gnome gconf)
$(use_enable gphoto2)
$(use_enable udev gudev)
$(use_enable hal)
$(use_enable gnome-keyring keyring)
$(use_enable samba)"
}
src_prepare() {
gnome2_src_prepare
# Conditional patching purely to avoid eautoreconf
use gphoto2 && epatch "${FILESDIR}/${PN}-1.2.2-gphoto2-stricter-checks.patch"
if use archive; then
epatch "${FILESDIR}/${PN}-1.2.2-expose-archive-backend.patch"
echo "mount-archive.desktop.in" >> po/POTFILES.in
echo "mount-archive.desktop.in.in" >> po/POTFILES.in
fi
use gphoto2 || use archive && eautoreconf
}
src_install() {
gnome2_src_install
use bash-completion && \
dobashcompletion programs/gvfs-bash-completion.sh ${PN}
}
pkg_postinst() {
gnome2_pkg_postinst
use bash-completion && bash-completion_pkg_postinst
ewarn "In order to use the new gvfs services, please reload dbus configuration"
ewarn "You may need to log out and log back in for some changes to take effect"
}
|