From 71e06448ede2b47b51347443fb7d0f32efdc7a99 Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Mon, 9 Sep 2019 02:59:50 +0000 Subject: [PATCH] wget: provides gnu-wget So that packages like acme requiring features from it can depend on it explicitly, not the more basic "wget" which is also provided by "uclient-fetch" Signed-off-by: Yousong Zhou --- net/wget/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net/wget/Makefile b/net/wget/Makefile index d572a35ab..83c91374e 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wget PKG_VERSION:=1.20.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/$(PKG_NAME) @@ -31,6 +31,7 @@ define Package/wget/Default SUBMENU:=File Transfer TITLE:=Non-interactive network downloader URL:=https://www.gnu.org/software/wget/index.html + PROVIDES:=wget endef define Package/wget/Default/description @@ -47,6 +48,7 @@ $(call Package/wget/Default) DEPENDS+= +libopenssl +librt TITLE+= (with SSL support) VARIANT:=ssl + PROVIDES+=gnu-wget ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-ssl endef @@ -59,6 +61,7 @@ define Package/wget-nossl $(call Package/wget/Default) TITLE+= (without SSL support) VARIANT:=nossl + PROVIDES+=gnu-wget ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-nossl endef