Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/halevt: ChangeLog halevt-0.1.4-r2.ebuild halevt-0.1.4-r1.ebuild halevt-0.1.4.ebuild
Date: Fri, 19 Jun 2009 18:41:30
Message-Id: E1MHj1j-0001Ww-VR@stork.gentoo.org
1 hwoarang 09/06/19 18:41:27
2
3 Modified: ChangeLog
4 Added: halevt-0.1.4-r2.ebuild
5 Removed: halevt-0.1.4-r1.ebuild halevt-0.1.4.ebuild
6 Log:
7 New init script thanks to George Kargiotakis. Remove old ebuilds
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 sys-apps/halevt/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 17 Jun 2009 15:04:53 -0000 1.4
24 +++ ChangeLog 19 Jun 2009 18:41:27 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/halevt
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v 1.4 2009/06/17 15:04:53 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v 1.5 2009/06/19 18:41:27 hwoarang Exp $
30 +
31 +*halevt-0.1.4-r2 (19 Jun 2009)
32 +
33 + 19 Jun 2009; Markos Chandras <hwoarang@g.o> -halevt-0.1.4.ebuild,
34 + -halevt-0.1.4-r1.ebuild, +halevt-0.1.4-r2.ebuild, files/halevt:
35 + New init script thanks to George Kargiotakis. Remove old ebuilds
36
37 *halevt-0.1.4-r1 (17 Jun 2009)
38
39
40
41
42 1.1 sys-apps/halevt/halevt-0.1.4-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/halevt-0.1.4-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/halevt-0.1.4-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: halevt-0.1.4-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/halevt-0.1.4-r2.ebuild,v 1.1 2009/06/19 18:41:27 hwoarang Exp $
52
53 EAPI="2"
54
55 inherit eutils
56
57 DESCRIPTION="A daemon built on ivman that executes arbitrary commands on HAL events"
58 HOMEPAGE="http://www.environnement.ens.fr/perso/dumas/halevt.html"
59 SRC_URI="http://www.environnement.ens.fr/perso/dumas/halevt-download/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="nls rpath"
65
66 DEPEND=">=sys-apps/hal-0.5.11-r1
67 >=sys-apps/dbus-1.2.3-r1
68 >=dev-libs/dbus-glib-0.76
69 >=dev-libs/boolstuff-0.1.12"
70 RDEPEND="${DEPEND}"
71
72 src_configure() {
73 econf $(use_enable nls) $(use_enable rpath)
74 }
75
76 src_install () {
77 emake DESTDIR="${D}" install || die "install failed"
78 doinitd "${FILESDIR}"/${PN} || die "failed to install init script"
79 dodoc AUTHORS NEWS README || die "dodoc failed"
80
81 insinto /etc/${PN}/
82 doins ${PN}.xml || die "doins ${PN}.xml failed"
83 }
84
85 pkg_postinst() {
86 einfo
87 einfo "Default config file resides at /etc/halevt/halevt.xml."
88 einfo
89 }