blob: e4063cd5f2102f98118f4a9aa7fbbcb6771b21de (
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
39
40
41
|
# 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.4-r2.ebuild,v 1.4 2009/08/15 08:51:23 maekke 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://www.environnement.ens.fr/perso/dumas/halevt-download/${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 || die "dodoc failed"
insinto /etc/${PN}/
doins ${PN}.xml || die "doins ${PN}.xml failed"
}
pkg_postinst() {
einfo
einfo "Default config file resides at /etc/halevt/halevt.xml."
einfo
}
|