[packages] openntpd: remove/restore busybox ntpd on install/remove, relocate to /sbin to prevent clash with busybox

git-svn-id: svn://svn.openwrt.org/openwrt/packages@28620 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-10-27 10:19:14 +00:00
parent 4100ab957e
commit 359190ba4a

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=openntpd
PKG_VERSION:=3.9p1
PKG_RELEASE:=4
PKG_RELEASE:=5
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \
@ -50,8 +50,8 @@ define Build/Compile
endef
define Package/openntpd/install
$(INSTALL_DIR) $(1)/usr/sbin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/sbin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd $(1)/sbin/
$(INSTALL_DIR) $(1)/etc
$(INSTALL_DATA) ./files/ntpd.conf $(1)/etc/
$(INSTALL_DIR) $(1)/etc/init.d
@ -60,4 +60,16 @@ define Package/openntpd/install
$(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
endef
define Package/openntpd/postinst
#!/bin/sh
[ -L "$${IPKG_INSTROOT}/usr/sbin/ntpd" ] && rm -f "$${IPKG_INSTROOT}/usr/sbin/ntpd"
exit 0
endef
define Package/openntpd/postrm
#!/bin/sh
/bin/busybox ntpd -h 2>&1 | grep -q BusyBox && ln -sf ../../bin/busybox /usr/sbin/ntpd
exit 0
endef
$(eval $(call BuildPackage,openntpd))