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: metadata.xml ChangeLog rtkit-0.6.ebuild
Date: Mon, 08 Feb 2010 03:03:35
Message-Id: E1NeJuM-00038X-OQ@stork.gentoo.org
1 ford_prefect 10/02/08 03:03:30
2
3 Added: metadata.xml ChangeLog rtkit-0.6.ebuild
4 Log:
5 Initial commit. PulseAudio should start using this soon.
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-auth/rtkit/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>ford_prefect@g.o</email>
22 <name>Arun Raghavan</name>
23 </maintainer>
24 <longdescription lang="en">
25 RealtimeKit is a DBus service that provides applications with an interface
26 to escalate their priority to realtime, without any special setup in
27 rlimits, etc.
28 </longdescription>
29 </pkgmetadata>
30
31
32
33 1.1 sys-auth/rtkit/ChangeLog
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/ChangeLog?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/ChangeLog?rev=1.1&content-type=text/plain
37
38 Index: ChangeLog
39 ===================================================================
40 # ChangeLog for sys-auth/rtkit
41 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
42 # $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.1 2010/02/08 03:03:29 ford_prefect Exp $
43
44 *rtkit-0.6 (08 Feb 2010)
45
46 08 Feb 2010; Arun Raghavan <ford_prefect@g.o> +rtkit-0.6.ebuild,
47 +metadata.xml:
48 Initial commit. PulseAudio should start using this soon.
49
50
51
52
53 1.1 sys-auth/rtkit/rtkit-0.6.ebuild
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/rtkit-0.6.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/rtkit/rtkit-0.6.ebuild?rev=1.1&content-type=text/plain
57
58 Index: rtkit-0.6.ebuild
59 ===================================================================
60 # Copyright 1999-2010 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/rtkit-0.6.ebuild,v 1.1 2010/02/08 03:03:29 ford_prefect Exp $
63
64 EAPI="2"
65
66 inherit eutils
67
68 DESCRIPTION="Realtime Policy and Watchdog Daemon"
69 HOMEPAGE="http://0pointer.de/blog/projects/rtkit"
70 SRC_URI="http://0pointer.de/public/${P}.tar.gz"
71
72 LICENSE="GPL-3 BSD"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE=""
76
77 DEPEND="sys-apps/dbus
78 sys-auth/polkit
79 sys-libs/libcap"
80 RDEPEND="${DEPEND}"
81
82 pkg_setup() {
83 enewgroup rtkit
84 enewuser rtkit -1 -1 -1 "rtkit"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "make install"
89
90 ./rtkit-daemon --introspection > org.freedesktop.RealtimeKit1.xml
91 insinto /usr/share/dbus-1/interfaces
92 doins org.freedesktop.RealtimeKit1.xml
93 }
94
95 pkg_postinst () {
96 einfo "To start using RealtimeKit, you need to ensure that the 'dbus'"
97 einfo "service is running. If it is already running, you need to reload it"
98 einfo "with the following command:"
99 einfo ""
100 einfo " /etc/init.d/dbus reload"
101 }