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