| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.2.98.ebuild,v 1.2 2004/09/21 14:35:19 foser Exp $
|
| 4 |
|
| 5 |
inherit eutils debug python
|
| 6 |
|
| 7 |
DESCRIPTION="Hardware Abstraction Layer"
|
| 8 |
HOMEPAGE="http://www.freedesktop.org/Software/hal"
|
| 9 |
|
| 10 |
SRC_URI="http://freedesktop.org/~david/dist/${P}.tar.gz"
|
| 11 |
LICENSE="GPL-2 | AFL-2.0"
|
| 12 |
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~x86 ~ppc ~amd64"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
RDEPEND=">=dev-libs/glib-2.2.2
|
| 18 |
>=sys-apps/dbus-0.22-r1
|
| 19 |
dev-libs/expat
|
| 20 |
sys-fs/udev
|
| 21 |
sys-apps/hotplug
|
| 22 |
sys-libs/libcap
|
| 23 |
sys-kernel/linux26-headers"
|
| 24 |
|
| 25 |
DEPEND="${RDEPEND}
|
| 26 |
dev-util/pkgconfig"
|
| 27 |
|
| 28 |
src_compile() {
|
| 29 |
|
| 30 |
# FIXME : docs
|
| 31 |
econf \
|
| 32 |
--enable-fstab-sync \
|
| 33 |
--enable-hotplug-map \
|
| 34 |
--disable-doxygen-docs \
|
| 35 |
--disable-docbook-docs \
|
| 36 |
--with-pid-file=/var/run/hald/hald.pid \
|
| 37 |
|| die
|
| 38 |
|
| 39 |
emake || die
|
| 40 |
|
| 41 |
}
|
| 42 |
|
| 43 |
src_install() {
|
| 44 |
|
| 45 |
make DESTDIR=${D} install || die
|
| 46 |
|
| 47 |
# initscript
|
| 48 |
exeinto /etc/init.d/
|
| 49 |
doexe ${FILESDIR}/hald
|
| 50 |
|
| 51 |
# place our pid file
|
| 52 |
keepdir /var/run/hald
|
| 53 |
|
| 54 |
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
|
| 55 |
|
| 56 |
}
|
| 57 |
|
| 58 |
pkg_preinst() {
|
| 59 |
|
| 60 |
enewgroup haldaemon || die "Problem adding haldaemon group"
|
| 61 |
enewuser haldaemon -1 /bin/false /dev/null haldaemon || die "Problem adding haldaemon user"
|
| 62 |
|
| 63 |
}
|
| 64 |
|
| 65 |
pkg_postinst() {
|
| 66 |
|
| 67 |
# make sure the permissions on the pid dir are alright & after preinst
|
| 68 |
chown haldaemon:haldaemon /var/run/hald
|
| 69 |
|
| 70 |
ewarn "Enabled in this ebuild by default is the usage of fstab-sync"
|
| 71 |
ewarn "that will create mount rules for non-existing devices in"
|
| 72 |
ewarn "fstab if needed, mount points will be created in /media."
|
| 73 |
ewarn "This functionality alters /etc/fstab runtime on the filesystem"
|
| 74 |
ewarn "and might have unforseen side-effects."
|
| 75 |
echo
|
| 76 |
einfo "The HAL daemon needs to be running for certain applications to"
|
| 77 |
einfo "work. Suggested is to add the init script to your start-up"
|
| 78 |
einfo "scripts, this should be done like this :"
|
| 79 |
einfo "\`rc-update add hald default\`"
|
| 80 |
|
| 81 |
}
|