Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gvfs: ChangeLog gvfs-1.0.2.ebuild
Date: Thu, 23 Oct 2008 20:29:23
Message-Id: E1Kt6o5-0002Lo-ID@stork.gentoo.org
1 eva 08/10/23 20:29:21
2
3 Modified: ChangeLog
4 Added: gvfs-1.0.2.ebuild
5 Log:
6 Bump to 1.0.2. Crash fixes, emit mount-added signal when needed and some FUSE fixes.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.36 gnome-base/gvfs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 19 Oct 2008 01:01:27 -0000 1.35
23 +++ ChangeLog 23 Oct 2008 20:29:21 -0000 1.36
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-base/gvfs
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.35 2008/10/19 01:01:27 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.36 2008/10/23 20:29:21 eva Exp $
29 +
30 +*gvfs-1.0.2 (23 Oct 2008)
31 +
32 + 23 Oct 2008; Gilles Dartiguelongue <eva@g.o> +gvfs-1.0.2.ebuild:
33 + Bump to 1.0.2. Crash fixes, emit mount-added signal when needed and some
34 + FUSE fixes.
35
36 19 Oct 2008; Brent Baude <ranger@g.o> gvfs-0.2.5-r3.ebuild:
37 Marking gvfs-0.2.5-r3 ppc stable for bug 241340
38
39
40
41 1.1 gnome-base/gvfs/gvfs-1.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gvfs-1.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.0.2.ebuild,v 1.1 2008/10/23 20:29:21 eva Exp $
51
52 inherit bash-completion gnome2 eutils
53
54 DESCRIPTION="GNOME Virtual Filesystem Layer"
55 HOMEPAGE="http://www.gnome.org"
56
57 LICENSE="LGPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
60 IUSE="archive avahi bluetooth cdda doc fuse gnome gphoto2 hal gnome-keyring samba"
61
62 RDEPEND=">=dev-libs/glib-2.17.6
63 >=sys-apps/dbus-1.0
64 >=net-libs/libsoup-2.23.91
65 dev-libs/libxml2
66 net-misc/openssh
67 archive? ( app-arch/libarchive )
68 avahi? ( >=net-dns/avahi-0.6 )
69 cdda? (
70 >=sys-apps/hal-0.5.10
71 >=dev-libs/libcdio-0.78.2
72 )
73 fuse? ( sys-fs/fuse )
74 gnome? ( >=gnome-base/gconf-2.0 )
75 hal? ( >=sys-apps/hal-0.5.10 )
76 bluetooth? (
77 dev-libs/dbus-glib
78 >=net-wireless/bluez-libs-3.12
79 dev-libs/expat
80 )
81 gphoto2? ( >=media-libs/libgphoto2-2.4 )
82 gnome-keyring? ( >=gnome-base/gnome-keyring-1.0 )
83 samba? ( >=net-fs/samba-3 )"
84 DEPEND="${RDEPEND}
85 >=dev-util/intltool-0.40
86 >=dev-util/pkgconfig-0.19
87 doc? ( >=dev-util/gtk-doc-1 )"
88
89 DOCS="AUTHORS ChangeLog NEWS README TODO"
90
91 pkg_setup() {
92 G2CONF="${G2CONF}
93 --enable-http
94 --disable-bash-completion
95 $(use_enable archive)
96 $(use_enable avahi)
97 $(use_enable bluetooth obexftp)
98 $(use_enable cdda)
99 $(use_enable fuse)
100 $(use_enable gnome gconf)
101 $(use_enable gphoto2)
102 $(use_enable hal)
103 $(use_enable gnome-keyring keyring)
104 $(use_enable samba)"
105
106 if use cdda && built_with_use dev-libs/libcdio minimal; then
107 ewarn
108 ewarn "CDDA support in gvfs requires dev-libs/libcdio to be built"
109 ewarn "without the minimal USE flag."
110 die "Please re-emerge dev-libs/libcdio without the minimal USE flag"
111 fi
112 }
113
114 src_install() {
115 gnome2_src_install
116 use bash-completion && \
117 dobashcompletion programs/gvfs-bash-completion.sh ${PN}
118 }
119
120 pkg_postinst() {
121 gnome2_pkg_postinst
122 use bash-completion && bash-completion_pkg_postinst
123 }