remove udevextras dependency on udev (thx, fish)
[openwrt/svn-archive/archive.git] / package / udev / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=udev
12 PKG_VERSION:=106
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/hotplug/
17 PKG_MD5SUM:=320ccd2d0f4540d10e021bafa14f8985
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/udev
22 SECTION:=utils
23 CATEGORY:=Utilities
24 DEPENDS:=@LINUX_2_6
25 TITLE:=Dynamic device management subsystem
26 URL:=http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
27 endef
28
29 define Package/udev/description
30 udev provides a dynamic device directory containing only the files for
31 actually present devices. It creates or removes device node files in
32 the /dev directory, or it renames network interfaces.
33 endef
34
35 define Package/udevtrigger
36 $(call Package/udev)
37 TITLE:=Small utility to request kernel devices events for coldplug
38 endef
39
40 define Package/udevextras
41 $(call Package/udev)
42 TITLE:=Utilities for udev scripts, for general device discovery
43 MENU:=1
44 endef
45
46 define Package/udevextras/config
47 source "$(SOURCE)/udevextras-config.in"
48 endef
49
50 UDEV_ALL_EXTRAS=ata_id cdrom_id dasd_id scsi_id path_id usb_id volume_id
51 UDEV_EXTRAS=$(strip $(foreach e, $(UDEV_ALL_EXTRAS), \
52 $(if $(CONFIG_UDEVEXTRAS_$(e)),extras/$(e))))
53
54 define Build/Compile
55 $(MAKE) -C $(PKG_BUILD_DIR) \
56 CROSS_COMPILE="$(TARGET_CROSS)" \
57 STRIP="/bin/true" \
58 OPTFLAGS="$(TARGET_CFLAGS)" \
59 DESTDIR="$(PKG_INSTALL_DIR)" \
60 INSTALL="install -c" \
61 EXTRAS="$(UDEV_EXTRAS)" \
62 VOLUME_ID_STATIC=true \
63 all install
64 endef
65
66 define Package/udev/install
67 install -d -m0775 $(1)/etc/udev
68 $(CP) $(PKG_INSTALL_DIR)/etc/udev/* $(1)/etc/udev/
69 install -d -m0775 $(1)/lib/udev
70 install -d -m0775 $(1)/sbin/
71 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevcontrol $(1)/sbin/
72 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevd $(1)/sbin/
73 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevsettle $(1)/sbin/
74 install -d -m0775 $(1)/usr/bin/
75 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udevinfo $(1)/usr/bin/
76 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/udevtest $(1)/usr/bin/
77 install -d -m0775 $(1)/usr/sbin/
78 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/udevmonitor $(1)/usr/sbin/
79 install -d -m0775 $(1)/etc/udev/rules.d
80 $(CP) files/20-input-grouping.rules $(1)/etc/udev/rules.d/
81 endef
82
83 define Package/udevtrigger/install
84 $(INSTALL_DIR) $(1)/sbin
85 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/udevtrigger $(1)/sbin/
86 endef
87
88 define Package/udevextras/install
89 $(INSTALL_DIR) $(1)/etc/udev
90 $(CP) $(PKG_BUILD_DIR)/etc/udev/rules.d $(1)/etc/udev/
91 $(INSTALL_DIR) $(1)/lib/udev
92 $$(foreach f, $$(shell $(FIND) $(PKG_INSTALL_DIR)/lib/udev/ -type f), \
93 $(CP) $$(f) $(1)/lib/udev/ ; \
94 )
95 endef
96
97 $(eval $(call BuildPackage,udev))
98 $(eval $(call BuildPackage,udevtrigger))
99 $(eval $(call BuildPackage,udevextras))