1 |
# Copyright 1999-2007 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.5.9.ebuild,v 1.24 2007/04/18 14:31:07 cardoe Exp $ |
4 |
|
5 |
inherit eutils linux-info autotools flag-o-matic |
6 |
|
7 |
DESCRIPTION="Hardware Abstraction Layer" |
8 |
HOMEPAGE="http://www.freedesktop.org/Software/hal" |
9 |
SRC_URI="http://people.freedesktop.org/~david/dist/${P}.tar.gz" |
10 |
|
11 |
LICENSE="|| ( GPL-2 AFL-2.0 )" |
12 |
SLOT="0" |
13 |
KEYWORDS="~amd64 ~hppa ~ia64 -mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" |
14 |
|
15 |
KERNEL_IUSE="kernel_linux kernel_FreeBSD" |
16 |
IUSE="acpi crypt debug dell disk-partition doc pcmcia selinux ${KERNEL_IUSE}" |
17 |
|
18 |
RDEPEND=">=dev-libs/glib-2.6 |
19 |
>=dev-libs/dbus-glib-0.61 |
20 |
kernel_linux? ( >=sys-fs/udev-104 ) |
21 |
kernel_linux? ( >=sys-apps/util-linux-2.12r-r1 ) |
22 |
kernel_linux? ( >=sys-kernel/linux-headers-2.6.17 ) |
23 |
kernel_FreeBSD? ( dev-libs/libvolume_id ) |
24 |
>=dev-libs/expat-1.95.8 |
25 |
>=sys-apps/pciutils-2.2.3 |
26 |
>=dev-libs/libusb-0.1.10a |
27 |
virtual/eject |
28 |
amd64? ( >=sys-apps/dmidecode-2.7 ) |
29 |
x86? ( >=sys-apps/dmidecode-2.7 ) |
30 |
ia64? ( >=sys-apps/dmidecode-2.7 ) |
31 |
dell? ( >=sys-libs/libsmbios-0.13.4 ) |
32 |
disk-partition? ( >=sys-apps/parted-1.7.1 ) |
33 |
kernel_linux? ( crypt? ( >=sys-fs/cryptsetup-luks-1.0.1 ) ) |
34 |
selinux? ( sys-libs/libselinux |
35 |
sec-policy/selinux-hal )" |
36 |
# pam? ( sys-auth/consolekit )" |
37 |
|
38 |
DEPEND="${RDEPEND} |
39 |
dev-util/pkgconfig |
40 |
>=dev-util/intltool-0.35 |
41 |
doc? ( app-doc/doxygen app-text/docbook-sgml-utils )" |
42 |
|
43 |
PDEPEND="app-misc/hal-info" |
44 |
|
45 |
## HAL Daemon drops privledges so we need group access to read disks |
46 |
HALDAEMON_GROUPS_LINUX="haldaemon,plugdev,disk,cdrom,cdrw,floppy,usb" |
47 |
HALDAEMON_GROUPS_FREEBSD="haldaemon,plugdev,operator" |
48 |
|
49 |
function notify_uevent() { |
50 |
ewarn |
51 |
ewarn "You must enable Kernel Userspace Events in your kernel." |
52 |
ewarn "For this you need to enable 'Hotplug' under 'General Setup' and" |
53 |
ewarn "basic networking. They are marked CONFIG_HOTPLUG and CONFIG_NET" |
54 |
ewarn "in the config file." |
55 |
ewarn |
56 |
ebeep 5 |
57 |
} |
58 |
|
59 |
function notify_procfs() { |
60 |
ewarn |
61 |
ewarn "You must enable the proc filesystem in your kernel." |
62 |
ewarn "For this you need to enable '/proc file system support' under" |
63 |
ewarn "'Pseudo filesystems' in 'File systems'. It is marked" |
64 |
ewarn "CONFIG_PROC_FS in the config file." |
65 |
ewarn |
66 |
ebeep 5 |
67 |
} |
68 |
|
69 |
function notify_inotify() { |
70 |
ewarn |
71 |
ewarn "You must enable the Inotify system in your kernel." |
72 |
ewarn "For this you need to enable 'Inotify support for userspace'" |
73 |
ewarn "in 'File systems'. It is marked CONFIG_INOTIFY_USER in the config file." |
74 |
ewarn |
75 |
ebeep 5 |
76 |
} |
77 |
|
78 |
pkg_setup() { |
79 |
if built_with_use --missing false sys-apps/pciutils zlib ; then |
80 |
eerror "You MUST build sys-apps/pciutils without the zlib USE flag" |
81 |
die "You MUST build sys-apps/pciutils without the zlib USE flag" |
82 |
fi |
83 |
|
84 |
if use kernel_linux; then |
85 |
kernel_is ge 2 6 17 || ewarn "HAL requires a kernel version 2.6.17 or newer" |
86 |
|
87 |
if ! ( linux_chkconfig_present HOTPLUG && linux_chkconfig_present NET ) |
88 |
then |
89 |
notify_uevent |
90 |
fi |
91 |
|
92 |
linux_chkconfig_present INOTIFY_USER || notify_inotify |
93 |
|
94 |
if use acpi ; then |
95 |
linux_chkconfig_present PROC_FS || notify_procfs |
96 |
fi |
97 |
fi |
98 |
|
99 |
if [[ -d ${ROOT}/etc/hal/device.d ]]; then |
100 |
eerror "HAL 0.5.x will not run with the HAL 0.4.x series of" |
101 |
eerror "/etc/hal/device.d/ so please remove this directory" |
102 |
eerror "with rm -rf /etc/hal/device.d/ and then re-emerge." |
103 |
eerror "This is due to configuration protection of /etc/" |
104 |
die "remove /etc/hal/device.d/" |
105 |
fi |
106 |
} |
107 |
|
108 |
src_unpack() { |
109 |
unpack ${A} |
110 |
cd ${S} |
111 |
|
112 |
# Gentoo Patch Set |
113 |
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch ${FILESDIR}/${PV} |
114 |
|
115 |
eautoreconf |
116 |
} |
117 |
|
118 |
src_compile() { |
119 |
local backend="" |
120 |
local acpi="" |
121 |
|
122 |
# TODO :: policykit should have a pam useflag |
123 |
append-flags -rdynamic |
124 |
|
125 |
if use kernel_linux ; then |
126 |
backend="linux" |
127 |
use acpi && acpi="--enable-acpi-toshiba --enable-acpi-ibm" |
128 |
elif use kernel_FreeBSD ; then |
129 |
backend="freebsd" |
130 |
else |
131 |
eerror "Invalid backend" |
132 |
fi |
133 |
|
134 |
if ! use acpi ; then |
135 |
acpi="--disable-acpi-proc --disable-acpi-acpid" |
136 |
fi |
137 |
|
138 |
econf --disable-policy-kit \ |
139 |
--with-doc-dir=/usr/share/doc/${PF} \ |
140 |
--with-os-type=gentoo \ |
141 |
--with-pid-file=/var/run/hald.pid \ |
142 |
--with-socket-dir=/var/run/hald \ |
143 |
--with-hwdata=/usr/share/misc \ |
144 |
--enable-hotplug-map \ |
145 |
--enable-man-pages \ |
146 |
--with-backend=${backend} \ |
147 |
$(use_enable debug verbose-mode) \ |
148 |
$(use_with dell dell-backlight) \ |
149 |
$(use_enable disk-partition parted) \ |
150 |
$(use_enable pcmcia pcmcia-support) \ |
151 |
$(use_enable doc docbook-docs) \ |
152 |
$(use_enable doc doxygen-docs) \ |
153 |
$(use_enable selinux) \ |
154 |
--disable-console-kit \ |
155 |
${acpi} \ |
156 |
|| die "configure failed" |
157 |
#$(use_enable pam console-kit) |
158 |
|
159 |
emake || die "make failed" |
160 |
} |
161 |
|
162 |
src_install() { |
163 |
make DESTDIR="${D}" install || die |
164 |
dodoc AUTHORS ChangeLog NEWS README |
165 |
|
166 |
# remove dep on gnome-python |
167 |
mv "${D}"/usr/bin/hal-device-manager "${D}"/usr/share/hal/device-manager/ |
168 |
|
169 |
# hal umount for unclean unmounts |
170 |
exeinto /lib/udev/ |
171 |
newexe "${FILESDIR}"/hal-unmount.dev hal_unmount |
172 |
|
173 |
# initscript |
174 |
newinitd "${FILESDIR}"/0.5.9-hald.rc hald |
175 |
cp "${FILESDIR}"/0.5.9-hald.conf "${WORKDIR}"/ |
176 |
# if use pam; then |
177 |
# sed -e 's:RC_NEED="":RC_NEED="consolekit":' -i "${WORKDIR}"/0.5.9-hald.conf |
178 |
# fi |
179 |
if use debug; then |
180 |
sed -e 's:HALD_VERBOSE="no":HALD_VERBOSE="yes":' \ |
181 |
-i "${WORKDIR}"/0.5.9-hald.conf |
182 |
fi |
183 |
newconfd "${WORKDIR}"/0.5.9-hald.conf hald |
184 |
|
185 |
# We now create and keep /media here as both gnome-mount and pmount |
186 |
# use these directories, to avoid collision. |
187 |
keepdir /media |
188 |
|
189 |
# We also need to create and keep /etc/fdi/{information,policy,preprobe} |
190 |
# or else hal bombs. |
191 |
keepdir /etc/hal/fdi/{information,policy,preprobe} |
192 |
|
193 |
# HAL stores it's fdi cache in /var/lib/cache/hald |
194 |
keepdir /var/lib/cache/hald |
195 |
|
196 |
# HAL keeps its unix socket here |
197 |
keepdir /var/run/hald |
198 |
} |
199 |
|
200 |
pkg_postinst() { |
201 |
# Despite what people keep changing this location. Either one works.. it doesn't matter |
202 |
# http://dev.gentoo.org/~plasmaroo/devmanual/ebuild-writing/functions/ |
203 |
|
204 |
# Create groups for hotplugging and HAL |
205 |
enewgroup haldaemon || die "Problem adding haldaemon group" |
206 |
enewgroup plugdev || die "Problem adding plugdev group" |
207 |
|
208 |
# HAL drops priviledges by default now ... |
209 |
# ... so we must make sure it can read disk/cdrom info (ie. be in ${HALDAEMON_GROUPS} groups) |
210 |
if use kernel_linux; then |
211 |
enewuser haldaemon -1 "-1" /dev/null ${HALDAEMON_GROUPS_LINUX} \ |
212 |
|| die "Problem adding haldaemon user" |
213 |
elif use kernel_FreeBSD; then |
214 |
enewuser haldaemon -1 "-1" /dev/null ${HALDAEMON_GROUPS_FREEBSD} \ |
215 |
|| die "Problem addding haldaemon user" |
216 |
fi |
217 |
|
218 |
# Make sure that the haldaemon user is in the ${HALDAEMON_GROUPS} |
219 |
# If users have a problem with this, let them file a bug |
220 |
if [[ ${ROOT} == / ]] ; then |
221 |
if use kernel_linux; then |
222 |
usermod -G ${HALDAEMON_GROUPS_LINUX} haldaemon |
223 |
elif use kernel_FreeBSD; then |
224 |
pw usermod haldaemon -G ${HALDAEMON_GROUPS_FREEBSD} |
225 |
fi |
226 |
fi |
227 |
|
228 |
elog "The HAL daemon needs to be running for certain applications to" |
229 |
elog "work. Suggested is to add the init script to your start-up" |
230 |
elog "scripts, this should be done like this :" |
231 |
elog "\`rc-update add hald default\`" |
232 |
echo |
233 |
elog "Looking for automounting support? Add yourself to the plugdev group" |
234 |
} |