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 | fd0217221eda59a2ebb7c556416b5cd92cc6c236 (patch) | |
tree | b31114a6eaf1d6c48ca60d543816e22795274161 | |
parent | 13a7169e581b7c0769ce1a7cb4bec841227135ba (diff) | |
download | upstream-fd0217221eda59a2ebb7c556416b5cd92cc6c236.tar.gz upstream-fd0217221eda59a2ebb7c556416b5cd92cc6c236.tar.bz2 upstream-fd0217221eda59a2ebb7c556416b5cd92cc6c236.zip |
standardize Makefile, change section from base to net for dropbear and utils for dropbearconvert
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4834 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/dropbear/Makefile | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile index 9ffc782d94..73cc10ef8e 100644 --- a/package/dropbear/Makefile +++ b/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 |