[openwrt/openwrt] ppp: make ppp-multilink provide ppp

LEDE Commits lede-commits at lists.infradead.org
Mon Mar 12 12:02:51 PDT 2018


nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/092d75aa3e86db8331fffdbd0a99987df9dc438b

commit 092d75aa3e86db8331fffdbd0a99987df9dc438b
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Thu Mar 8 11:14:09 2018 +0100

    ppp: make ppp-multilink provide ppp
    
    Fixes dependencies on ppp from other packages
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 package/network/services/ppp/Makefile | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile
index beeaa53..ab8780b 100644
--- a/package/network/services/ppp/Makefile
+++ b/package/network/services/ppp/Makefile
@@ -46,6 +46,7 @@ $(call Package/ppp/Default)
   DEPENDS:=+kmod-ppp
   TITLE:=PPP daemon (with multilink support)
   VARIANT:=multilink
+  PROVIDES:=ppp
 endef
 
 define Package/ppp/description
@@ -64,7 +65,7 @@ endef
 
 define Package/ppp-mod-pppoa
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +linux-atm +kmod-pppoa
+  DEPENDS:=ppp +linux-atm +kmod-pppoa
   TITLE:=PPPoA plugin
 endef
 
@@ -74,7 +75,7 @@ endef
 
 define Package/ppp-mod-pppoe
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +kmod-pppoe
+  DEPENDS:=ppp +kmod-pppoe
   TITLE:=PPPoE plugin
 endef
 
@@ -84,7 +85,7 @@ endef
 
 define Package/ppp-mod-radius
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink)
+  DEPENDS:=ppp
   TITLE:=RADIUS plugin
 endef
 
@@ -100,7 +101,7 @@ endef
 
 define Package/ppp-mod-pppol2tp
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +kmod-pppol2tp
+  DEPENDS:=ppp +kmod-pppol2tp
   TITLE:=PPPoL2TP plugin
 endef
 
@@ -110,7 +111,7 @@ endef
 
 define Package/ppp-mod-pptp
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +kmod-pptp +kmod-mppe +resolveip
+  DEPENDS:=ppp +kmod-pptp +kmod-mppe +resolveip
   TITLE:=PPtP plugin
 endef
 
@@ -120,7 +121,7 @@ endef
 
 define Package/ppp-mod-passwordfd
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink)
+  DEPENDS:=ppp
   TITLE:=pap/chap secret from filedescriptor
 endef
 
@@ -141,7 +142,7 @@ endef
 
 define Package/pppdump
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink)
+  DEPENDS:=ppp
   TITLE:=Read PPP record file
 endef
 
@@ -151,7 +152,7 @@ endef
 
 define Package/pppstats
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink)
+  DEPENDS:=ppp
   TITLE:=Report PPP statistics
 endef
 
@@ -161,7 +162,7 @@ endef
 
 define Package/pppoe-discovery
 $(call Package/ppp/Default)
-  DEPENDS:=@(PACKAGE_ppp||PACKAGE_ppp-multilink) +ppp-mod-pppoe
+  DEPENDS:=ppp +ppp-mod-pppoe
   TITLE:=Perform a PPPoE-discovery process
 endef
 



More information about the lede-commits mailing list