Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/rtkit: ChangeLog rtkit-0.7.ebuild
Date: Mon, 10 May 2010 13:17:08
Message-Id: 20100510131653.3F9192C571@corvid.gentoo.org
1 ford_prefect 10/05/10 13:16:53
2
3 Modified: ChangeLog
4 Added: rtkit-0.7.ebuild
5 Log:
6 Bump to 0.7. Minor features and bug fixes.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 sys-auth/rtkit/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/rtkit/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/rtkit/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/rtkit/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 4 May 2010 16:36:23 -0000 1.2
23 +++ ChangeLog 10 May 2010 13:16:53 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-auth/rtkit
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.2 2010/05/04 16:36:23 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.3 2010/05/10 13:16:53 ford_prefect Exp $
29 +
30 +*rtkit-0.7 (10 May 2010)
31 +
32 + 10 May 2010; Arun Raghavan <ford_prefect@g.o> +rtkit-0.7.ebuild:
33 + Bump to 0.7. Minor features and bug fixes.
34
35 04 May 2010; Jeroen Roovers <jer@g.o> rtkit-0.6.ebuild:
36 Marked ~hppa (bug #308971).
37
38
39
40 1.1 sys-auth/rtkit/rtkit-0.7.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/rtkit/rtkit-0.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/rtkit/rtkit-0.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rtkit-0.7.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/rtkit-0.7.ebuild,v 1.1 2010/05/10 13:16:53 ford_prefect Exp $
50
51 EAPI="2"
52
53 inherit eutils
54
55 DESCRIPTION="Realtime Policy and Watchdog Daemon"
56 HOMEPAGE="http://0pointer.de/blog/projects/rtkit"
57 SRC_URI="http://0pointer.de/public/${P}.tar.gz"
58
59 LICENSE="GPL-3 BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~x86"
62 IUSE=""
63
64 DEPEND="sys-apps/dbus
65 sys-auth/polkit
66 sys-libs/libcap"
67 RDEPEND="${DEPEND}"
68
69 pkg_setup() {
70 enewgroup rtkit
71 enewuser rtkit -1 -1 -1 "rtkit"
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die "make install"
76
77 ./rtkit-daemon --introspection > org.freedesktop.RealtimeKit1.xml
78 insinto /usr/share/dbus-1/interfaces
79 doins org.freedesktop.RealtimeKit1.xml
80 }
81
82 pkg_postinst () {
83 einfo "To start using RealtimeKit, you need to ensure that the 'dbus'"
84 einfo "service is running. If it is already running, you need to reload it"
85 einfo "with the following command:"
86 einfo ""
87 einfo " /etc/init.d/dbus reload"
88 }