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