summaryrefslogtreecommitdiff
blob: 57f2d7d2e09253014f3a56e00054cffe2991b09a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-0.3.ebuild,v 1.2 2003/10/21 01:02:58 azarah Exp $

MY_PV="${PV/0\./00}"
S="${WORKDIR}/${PN}-${MY_PV}"
DESCRIPTION="udev - Linux dynamic device naming support (aka userspace devfs)"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/utils/kernel/hotplug/${PN}-${MY_PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"

DEPEND="virtual/glibc
	>=sys-apps/hotplug-20030805-r1
	sys-fs/sysfsutils"

src_unpack() {
	unpack ${A}

	cd ${S}
	# Get our version in there
	sed -ie "/^VERSION/ c\VERSION = ${PV}" Makefile
	# No need to clutter the logs ...
	sed -ie '/^DEBUG/ c\DEBUG = false' Makefile
	# Do not use optimization flags from the package
	sed -ie 's|$(OPTIMIZATION)||g' Makefile
	# Also use our own CFLAGS for libsysfs
	sed -ie "/^CFLAGS/ c\CFLAGS = ${CFLAGS}" libsysfs/Makefile

	# Make sure we do not build libsysfs
	# For now we use included libsysfs, as udev do not work with
	# latest libsysfs from sysfsutils yet ...
#	echo 'all:' > libsysfs/Makefile

	epatch ${FILESDIR}/${P}-fix-partition-support.patch
}

src_compile() {
	# Do not work with emake
	make udevdir="/dev/" || die
}

src_install() {
	into /
	dosbin udev

	insinto /etc/udev
	doins namedev.config
#	doins ${FILESDIR}/namedev.permissions
	doins namedev.permissions

	dodir /etc/hotplug.d/default
	dosym ../../../sbin/udev /etc/hotplug.d/default/udev.hotplug

	doman udev.8

	dodoc COPYING ChangeLog FAQ README TODO
	dodoc docs/overview
}