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/gnome-volume-manager: ChangeLog gnome-volume-manager-2.24.1.ebuild
Date: Thu, 19 Feb 2009 23:56:38
Message-Id: E1LaIkt-0000Qi-Nl@stork.gentoo.org
1 eva 09/02/19 23:56:35
2
3 Modified: ChangeLog
4 Added: gnome-volume-manager-2.24.1.ebuild
5 Log:
6 Bump to 2.24.1. Bug fixes and integration of consolekit 0.3 patch.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.119 gnome-base/gnome-volume-manager/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog?rev=1.119&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog?rev=1.119&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog?r1=1.118&r2=1.119
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog,v
19 retrieving revision 1.118
20 retrieving revision 1.119
21 diff -u -r1.118 -r1.119
22 --- ChangeLog 31 Jan 2009 09:04:29 -0000 1.118
23 +++ ChangeLog 19 Feb 2009 23:56:35 -0000 1.119
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-base/gnome-volume-manager
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog,v 1.118 2009/01/31 09:04:29 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-volume-manager/ChangeLog,v 1.119 2009/02/19 23:56:35 eva Exp $
29 +
30 +*gnome-volume-manager-2.24.1 (19 Feb 2009)
31 +
32 + 19 Feb 2009; Gilles Dartiguelongue <eva@g.o>
33 + +gnome-volume-manager-2.24.1.ebuild:
34 + Bump to 2.24.1. Bug fixes and integration of consolekit 0.3 patch.
35
36 31 Jan 2009; Alexis Ballier <aballier@g.o>
37 gnome-volume-manager-2.24.0-r1.ebuild:
38
39
40
41 1.1 gnome-base/gnome-volume-manager/gnome-volume-manager-2.24.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-volume-manager/gnome-volume-manager-2.24.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-volume-manager/gnome-volume-manager-2.24.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnome-volume-manager-2.24.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-volume-manager/gnome-volume-manager-2.24.1.ebuild,v 1.1 2009/02/19 23:56:35 eva Exp $
51
52 inherit gnome2 eutils
53
54 DESCRIPTION="Daemon that enforces volume-related policies"
55 HOMEPAGE="http://www.gnome.org/"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="automount debug consolekit"
61
62 # TODO: libnotify support is optional but doesn't have a configure switch
63
64 RDEPEND=">=gnome-base/libgnomeui-2.1.5
65 >=dev-libs/dbus-glib-0.71
66 >=sys-apps/hal-0.5.9
67 >=x11-libs/gtk+-2.6
68 >=gnome-base/libglade-2
69 >=x11-libs/libnotify-0.3
70 >=gnome-base/gconf-2
71
72 gnome-base/nautilus
73 >=gnome-base/gnome-mount-0.6
74
75 consolekit? ( >=sys-auth/consolekit-0.2 )"
76 DEPEND="${RDEPEND}
77 sys-devel/gettext
78 >=dev-util/pkgconfig-0.20
79 >=dev-util/intltool-0.35"
80
81 DOCS="AUTHORS ChangeLog README HACKING NEWS TODO"
82
83 pkg_setup() {
84 # if consolekit is absent, g-v-m will fall back to the old
85 # behavior of the pam_console time.
86 G2CONF="${G2CONF}
87 $(use_enable debug)
88 $(use_enable automount)
89 $(use_enable consolekit multiuser)"
90 }
91
92 src_unpack() {
93 gnome2_src_unpack
94
95 # Fix most FreeBSD issues (bug #183442) -- local fallback wont work
96 epatch "${FILESDIR}/${PN}-2.22.0-fbsd-support.patch"
97
98 # Fix default totem command, bug #200999
99 epatch "${FILESDIR}/${PN}-2.17.0-totem-dvd.patch"
100 }
101
102 pkg_postinst() {
103 gnome2_pkg_postinst
104
105 elog "To start the gnome-volume-manager daemon you need to configure"
106 elog "it through it's preferences capplet. Also the HAL daemon (hald)"
107 elog "needs to be running or it will shut down."
108 elog
109 elog "If you experience problems with automounting (windows opened"
110 elog "twice or nothing happening on media insertion) try changing"
111 elog "the status of the automount USE flag."
112 }