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.5.ebuild
Date: Sat, 03 Oct 2009 15:40:06
Message-Id: E1Mu6iK-0000Co-Ni@stork.gentoo.org
1 hwoarang 09/10/03 15:40:04
2
3 Modified: ChangeLog
4 Added: halevt-0.1.5.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 sys-apps/halevt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 15 Aug 2009 08:51:23 -0000 1.8
23 +++ ChangeLog 3 Oct 2009 15:40:04 -0000 1.9
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/halevt
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v 1.8 2009/08/15 08:51:23 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/ChangeLog,v 1.9 2009/10/03 15:40:04 hwoarang Exp $
29 +
30 +*halevt-0.1.5 (03 Oct 2009)
31 +
32 + 03 Oct 2009; Markos Chandras <hwoarang@g.o> +halevt-0.1.5.ebuild:
33 + Version bump
34
35 15 Aug 2009; Markus Meier <maekke@g.o> halevt-0.1.4-r2.ebuild:
36 amd64/x86 stable, bug #281329
37
38
39
40 1.1 sys-apps/halevt/halevt-0.1.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/halevt-0.1.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/halevt/halevt-0.1.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: halevt-0.1.5.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/halevt-0.1.5.ebuild,v 1.1 2009/10/03 15:40:04 hwoarang Exp $
50 EAPI="2"
51
52 inherit eutils
53
54 DESCRIPTION="A daemon built on ivman that executes arbitrary commands on HAL events"
55 HOMEPAGE="http://www.environnement.ens.fr/perso/dumas/halevt.html"
56 SRC_URI="http://savannah.nongnu.org/download/halevt/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="nls rpath"
62
63 DEPEND=">=sys-apps/hal-0.5.11-r1
64 >=sys-apps/dbus-1.2.3-r1
65 >=dev-libs/dbus-glib-0.76
66 >=dev-libs/boolstuff-0.1.12"
67 RDEPEND="${DEPEND}"
68
69 src_configure() {
70 econf $(use_enable nls) $(use_enable rpath)
71 }
72
73 src_install () {
74 emake DESTDIR="${D}" install || die "install failed"
75 doinitd "${FILESDIR}"/${PN} || die "failed to install init script"
76 dodoc AUTHORS NEWS README ABOUT-NLS || die "dodoc failed"
77
78 insinto /usr/share/halevt/examples/
79 doins examples/*.xml
80 doins examples/*.sh
81
82 insinto /etc/${PN}/
83 newins examples/automatic_sync_mount.xml ${PN}.xml || die "newins ${PN}.xml failed"
84 }