Re: [OpenWrt-Devel] [PATCH 4/5] [packages] smartmontools: split daemon into separate package

2011-09-30 Thread Florian Fainelli
On Monday 29 August 2011 22:09:36 eugene...@gmail.com wrote:
 From: Eugene San (eugenesan) eugene...@gmail.com
 
 
 Signed-off-by: Eugene San (eugenesan) eugene...@gmail.com
 ---
Applied a slightly different version in r28326, thanks!
-- 
Florian
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH 4/5] [packages] smartmontools: split daemon into separate package

2011-08-29 Thread eugenesan
From: Eugene San (eugenesan) eugene...@gmail.com


Signed-off-by: Eugene San (eugenesan) eugene...@gmail.com
---
 utils/smartmontools/Makefile |   17 ++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/utils/smartmontools/Makefile b/utils/smartmontools/Makefile
index 9220aea..606d601 100644
--- a/utils/smartmontools/Makefile
+++ b/utils/smartmontools/Makefile
@@ -1,5 +1,5 @@
-# 
-# Copyright (C) 2006-2010 OpenWrt.org
+#
+# Copyright (C) 2006-2011 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -25,6 +25,13 @@ define Package/smartmontools
   URL:=http://smartmontools.sourceforge.net/
 endef
 
+define Package/smartmontools-daemon
+   SECTION:=utils
+   CATEGORY:=Utilities
+   DEPENDS:=+rsync
+   TITLE:=S.M.A.R.T Monitoring Daemon
+endef
+
 define Package/smartmontools/description
smartmontools contains utility programs (smartctl, smartd) to
control/monitor storage systems using the Self-Monitoring, Analysis
@@ -55,11 +62,15 @@ endef
 define Package/smartmontools/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/smartctl $(1)/usr/sbin/
+endef
+
+define Package/smartmontools-daemon/install
$(INSTALL_BIN) $(PKG_BUILD_DIR)/smartd $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc
-   $(INSTALL_DATA) ./files/smartd.conf $(1)/etc
+   $(INSTALL_DATA) ./files/smartd.conf $(1)/etc/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/smartd.init $(1)/etc/init.d/smartd
 endef
 
 $(eval $(call BuildPackage,smartmontools))
+$(eval $(call BuildPackage,smartmontools-daemon))
-- 
1.7.6

___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel