diff options
author | 2010-05-10 13:16:53 +0000 | |
---|---|---|
committer | 2010-05-10 13:16:53 +0000 | |
commit | 7f9356320cac292d0806c9e2571ff289be1e6d12 (patch) | |
tree | 6535fdad44890eb4ef4c39e1259dc954c829affa | |
parent | x86 stable wrt bug #317587 (diff) | |
download | gentoo-2-7f9356320cac292d0806c9e2571ff289be1e6d12.tar.gz gentoo-2-7f9356320cac292d0806c9e2571ff289be1e6d12.tar.bz2 gentoo-2-7f9356320cac292d0806c9e2571ff289be1e6d12.zip |
Bump to 0.7. Minor features and bug fixes.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r-- | sys-auth/rtkit/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/rtkit/rtkit-0.7.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/sys-auth/rtkit/ChangeLog b/sys-auth/rtkit/ChangeLog index 4dbf7fb35815..95d7afb70483 100644 --- a/sys-auth/rtkit/ChangeLog +++ b/sys-auth/rtkit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/rtkit # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.2 2010/05/04 16:36:23 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.3 2010/05/10 13:16:53 ford_prefect Exp $ + +*rtkit-0.7 (10 May 2010) + + 10 May 2010; Arun Raghavan <ford_prefect@gentoo.org> +rtkit-0.7.ebuild: + Bump to 0.7. Minor features and bug fixes. 04 May 2010; Jeroen Roovers <jer@gentoo.org> rtkit-0.6.ebuild: Marked ~hppa (bug #308971). diff --git a/sys-auth/rtkit/rtkit-0.7.ebuild b/sys-auth/rtkit/rtkit-0.7.ebuild new file mode 100644 index 000000000000..ce359d5bbadb --- /dev/null +++ b/sys-auth/rtkit/rtkit-0.7.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/rtkit-0.7.ebuild,v 1.1 2010/05/10 13:16:53 ford_prefect Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="Realtime Policy and Watchdog Daemon" +HOMEPAGE="http://0pointer.de/blog/projects/rtkit" +SRC_URI="http://0pointer.de/public/${P}.tar.gz" + +LICENSE="GPL-3 BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="" + +DEPEND="sys-apps/dbus + sys-auth/polkit + sys-libs/libcap" +RDEPEND="${DEPEND}" + +pkg_setup() { + enewgroup rtkit + enewuser rtkit -1 -1 -1 "rtkit" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install" + + ./rtkit-daemon --introspection > org.freedesktop.RealtimeKit1.xml + insinto /usr/share/dbus-1/interfaces + doins org.freedesktop.RealtimeKit1.xml +} + +pkg_postinst () { + einfo "To start using RealtimeKit, you need to ensure that the 'dbus'" + einfo "service is running. If it is already running, you need to reload it" + einfo "with the following command:" + einfo "" + einfo " /etc/init.d/dbus reload" +} |