From bb81306581704459163bc30a4f1b46acffdff9d1 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Fri, 10 Dec 2010 05:21:16 +0000 Subject: Fix dbus interface file generation. Remove buggy ebuild. (Portage version: 2.2.0_alpha6/cvs/Linux x86_64) --- sys-auth/rtkit/ChangeLog | 8 +++++++- sys-auth/rtkit/rtkit-0.9-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++++++ sys-auth/rtkit/rtkit-0.9.ebuild | 42 -------------------------------------- 3 files changed, 49 insertions(+), 43 deletions(-) create mode 100644 sys-auth/rtkit/rtkit-0.9-r1.ebuild delete mode 100644 sys-auth/rtkit/rtkit-0.9.ebuild (limited to 'sys-auth') diff --git a/sys-auth/rtkit/ChangeLog b/sys-auth/rtkit/ChangeLog index 44c5270ec140..9842fa86c38a 100644 --- a/sys-auth/rtkit/ChangeLog +++ b/sys-auth/rtkit/ChangeLog @@ -1,6 +1,12 @@ # 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.8 2010/11/30 22:00:30 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/rtkit/ChangeLog,v 1.9 2010/12/10 05:21:16 ford_prefect Exp $ + +*rtkit-0.9-r1 (10 Dec 2010) + + 10 Dec 2010; Arun Raghavan -rtkit-0.9.ebuild, + +rtkit-0.9-r1.ebuild: + Fix dbus interface file generation. Remove buggy ebuild. 30 Nov 2010; Markus Meier rtkit-0.9.ebuild: add ~arm, bug #308971 diff --git a/sys-auth/rtkit/rtkit-0.9-r1.ebuild b/sys-auth/rtkit/rtkit-0.9-r1.ebuild new file mode 100644 index 000000000000..166f9d424b6f --- /dev/null +++ b/sys-auth/rtkit/rtkit-0.9-r1.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.9-r1.ebuild,v 1.1 2010/12/10 05:21:16 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 ~arm ~hppa ~ppc ~ppc64 ~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 --introspect > 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" +} diff --git a/sys-auth/rtkit/rtkit-0.9.ebuild b/sys-auth/rtkit/rtkit-0.9.ebuild deleted file mode 100644 index fb7247e4fce5..000000000000 --- a/sys-auth/rtkit/rtkit-0.9.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# 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.9.ebuild,v 1.2 2010/11/30 22:00:30 maekke 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 ~arm ~hppa ~ppc ~ppc64 ~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" -} -- cgit v1.2.3-65-gdbad