diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-09-23 17:41:58 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-09-23 17:41:58 +0000 |
commit | d1c2ddcf5272b2260700b510856ac61f5566b047 (patch) | |
tree | 5bda4c93c87e6a7b712c0960f7e59da3b690c014 | |
parent | 860a2214dd5e3703802e29158acfad37f4118508 (diff) | |
download | upstream-d1c2ddcf5272b2260700b510856ac61f5566b047.tar.gz upstream-d1c2ddcf5272b2260700b510856ac61f5566b047.tar.bz2 upstream-d1c2ddcf5272b2260700b510856ac61f5566b047.zip |
standardize Makefile, change section from base to net for dropbear and utils for dropbearconvert
SVN-Revision: 4834
-rw-r--r-- | openwrt/package/dropbear/Makefile | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/openwrt/package/dropbear/Makefile b/openwrt/package/dropbear/Makefile index 9ffc782d94..73cc10ef8e 100644 --- a/openwrt/package/dropbear/Makefile +++ b/openwrt/package/dropbear/Makefile @@ -20,20 +20,25 @@ PKG_CAT:=zcat include $(INCLUDE_DIR)/package.mk +define Package/dropbear/Default + URL:=http://matt.ucc.asn.au/dropbear/ +endef + define Package/dropbear -SECTION:=base -CATEGORY:=Base system -DEFAULT:=y -TITLE:=Small SSH 2 client/server -DESCRIPTION:=A small SSH 2 server/client designed for small memory environments. -URL:=http://matt.ucc.asn.au/dropbear/ + $(call Package/dropbear/Default) + SECTION:=net + CATEGORY:=Base system + DEFAULT:=y + TITLE:=Small SSH2 client/server + DESCRIPTION:=\ + A small SSH2 server/client designed for small memory environments. endef define Package/dropbearconvert -$(call Package/dropbear) -TITLE:=Utility for converting SSH keys -DEFAULT:=m if ALL -DESCRIPTION:=Utility for converting SSH keys + $(call Package/dropbear/Default) + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Utility for converting SSH keys endef define Build/Configure |