blob: ef4ec3dc417c9a7876a1732f1a3528cc0fdee972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/halevt/halevt-0.1.5.ebuild,v 1.1 2009/10/03 15:40:04 hwoarang Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A daemon built on ivman that executes arbitrary commands on HAL events"
HOMEPAGE="http://www.environnement.ens.fr/perso/dumas/halevt.html"
SRC_URI="http://savannah.nongnu.org/download/halevt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls rpath"
DEPEND=">=sys-apps/hal-0.5.11-r1
>=sys-apps/dbus-1.2.3-r1
>=dev-libs/dbus-glib-0.76
>=dev-libs/boolstuff-0.1.12"
RDEPEND="${DEPEND}"
src_configure() {
econf $(use_enable nls) $(use_enable rpath)
}
src_install () {
emake DESTDIR="${D}" install || die "install failed"
doinitd "${FILESDIR}"/${PN} || die "failed to install init script"
dodoc AUTHORS NEWS README ABOUT-NLS || die "dodoc failed"
insinto /usr/share/halevt/examples/
doins examples/*.xml
doins examples/*.sh
insinto /etc/${PN}/
newins examples/automatic_sync_mount.xml ${PN}.xml || die "newins ${PN}.xml failed"
}
|