summaryrefslogtreecommitdiff
path: root/package/udev/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-27 10:45:02 +0200
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-27 10:45:02 +0200
commit42dd254f5937274f164a5a7c5fb3c1f80e38e7af (patch)
tree9d2f1aa0333e04af8493d6a5f533b6e243bf5d2b /package/udev/Makefile
parent7f0a66667a815bb8e28b4c8b93666b92a667b485 (diff)
full build on Darwin fixes
Diffstat (limited to 'package/udev/Makefile')
-rw-r--r--package/udev/Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/package/udev/Makefile b/package/udev/Makefile
index d69a41330..08310e268 100644
--- a/package/udev/Makefile
+++ b/package/udev/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= udev
-PKG_VERSION:= 171
+PKG_VERSION:= 182
PKG_RELEASE:= 1
-PKG_MD5SUM:= bdf4617284be2ecac11767437417e209
+PKG_MD5SUM:= e31c83159b017e8ab0fa2f4bca758a41
PKG_DESCR:= Dynamic device management subsystem
PKG_SECTION:= utils
PKG_BUILDDEP:= usbutils glib
@@ -21,18 +21,17 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,UDEV,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-CONFIGURE_ARGS+= --disable-extras \
- --disable-logging \
- --disable-udev_acl \
+TARGET_LDFLAGS+= -lrt
+CONFIGURE_ARGS+= --disable-logging \
--with-pci-ids-path=/usr/share/pci.ids \
--disable-introspection
post-install:
- ${INSTALL_DIR} ${IDIR_UDEV}/usr/sbin ${IDIR_UDEV}/etc/udev
- ${INSTALL_DIR} ${IDIR_UDEV}/usr/lib
+ ${INSTALL_DIR} ${IDIR_UDEV}/usr/bin ${IDIR_UDEV}/etc/udev
+ ${INSTALL_DIR} ${IDIR_UDEV}/usr/lib ${IDIR_UDEV}/usr/libexec/udev
$(CP) $(WRKINST)/usr/lib/libudev.so* $(IDIR_UDEV)/usr/lib
${CP} ${WRKINST}/etc/udev/* ${IDIR_UDEV}/etc/udev
- ${CP} ${WRKINST}/usr/sbin/udevd ${IDIR_UDEV}/usr/sbin
- ${CP} ${WRKINST}/usr/sbin/udevadm ${IDIR_UDEV}/usr/sbin
+ ${CP} ${WRKINST}/usr/libexec/udev/* ${IDIR_UDEV}/usr/libexec/udev
+ ${CP} ${WRKINST}/usr/bin/udevadm ${IDIR_UDEV}/usr/bin
include ${TOPDIR}/mk/pkg-bottom.mk