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