[pisa-src] r2593 - trunk/openwrt/package/pisa/Makefile

  • From: Samuel Richter <samuel.richter@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 30 May 2011 14:16:43 +0200

Author: richter
Date: Mon May 30 14:16:43 2011
New Revision: 2593

Log:
openwrt packaging: change package names and remove package pisa-beacon

pisa-trust-point is now pisa-server-daemon
pisa-mobile-guest is now pisa-client-daemon
pisa-beacon is not needed anymore

Modified:
   trunk/openwrt/package/pisa/Makefile

Modified: trunk/openwrt/package/pisa/Makefile
==============================================================================
--- trunk/openwrt/package/pisa/Makefile Fri May 27 16:46:29 2011        (r2592)
+++ trunk/openwrt/package/pisa/Makefile Mon May 30 14:16:43 2011        (r2593)
@@ -25,7 +25,7 @@
 
 define Package/pisa
 $(call Package/pisa/Default)
-    DEPENDS:=pisa-mobile-guest pisa-trust-point
+    DEPENDS:=pisa-client-daemon pisa-server-daemon
 endef
 
 define Build/Configure
@@ -55,34 +55,17 @@
        cp -d $(PKG_INSTALL_DIR)/usr/lib/libpisa.so* $(1)/usr/lib/
 endef
 
-define Package/pisa-beacon
-$(call Package/pisa/Default)
-    TITLE:=PISA beacon application
-    DEPENDS:=libpisa
-endef
-
-define Package/pisa-beacon/description
- This package contains the PISA beacon application.
-endef
-
-define Package/pisa-beacon/install
-       $(INSTALL_DIR) $(1)/etc/init.d
-       $(INSTALL_DIR) $(1)/usr/sbin/
-       $(INSTALL_BIN) ./files/pisabeacon.init $(1)/etc/init.d/pisabeacon
-       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pisabeacon $(1)/usr/sbin/
-endef
-
-define Package/pisa-mobile-guest
+define Package/pisa-client-daemon
 $(call Package/pisa/Default)
     TITLE:=PISA mobile guest applications
     DEPENDS:=libpisa
 endef
 
-define Package/pisa-mobile-guest/description
+define Package/pisa-client-daemon/description
  This package contains PISA mobile guest applications including the pisacd, 
pisa client daemon.
 endef
 
-define Package/pisa-mobile-guest/install
+define Package/pisa-client-daemon/install
        $(INSTALL_DIR) $(1)/etc/init.d
        $(INSTALL_DIR) $(1)/etc/pisa/
        $(INSTALL_DIR) $(1)/usr/sbin/
@@ -92,17 +75,17 @@
        $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pisacd $(1)/usr/sbin/
 endef
 
-define Package/pisa-trust-point
+define Package/pisa-server-daemon
 $(call Package/pisa/Default)
     TITLE:=PISA trust point applications
     DEPENDS:=libpisa
 endef
 
-define Package/pisa-trust-point/description
+define Package/pisa-server-daemon/description
  This package contains PISA trust point applications including the pisasd, 
pisa server daemon.
 endef
 
-define Package/pisa-trust-point/install
+define Package/pisa-server-daemon/install
        $(INSTALL_DIR) $(1)/etc/init.d
        $(INSTALL_DIR) $(1)/etc/pisa/
        $(INSTALL_DIR) $(1)/usr/sbin/
@@ -112,6 +95,5 @@
 endef
 
 $(eval $(call BuildPackage,libpisa))
-$(eval $(call BuildPackage,pisa-beacon))
-$(eval $(call BuildPackage,pisa-mobile-guest))
-$(eval $(call BuildPackage,pisa-trust-point))
+$(eval $(call BuildPackage,pisa-client-daemon))
+$(eval $(call BuildPackage,pisa-server-daemon))
-- 
This is the pisa developer mailing list. Please also subscribe to the main pisa 
list at:
//www.freelists.org/list/pisa

Other related posts:

  • » [pisa-src] r2593 - trunk/openwrt/package/pisa/Makefile - Samuel Richter