2 # Copyright (C) 2006-2012 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
16 http
://matt.ucc.asn.au
/dropbear
/releases
/ \
17 http
://www.mirrors.wiretapped.net
/security
/cryptography
/apps
/ssh
/dropbear
/
18 PKG_MD5SUM
:=c627ffe09570fad7aa94d8eac2b9320c
22 include $(INCLUDE_DIR
)/package.mk
24 define Package
/dropbear
/Default
25 URL
:=http
://matt.ucc.asn.au
/dropbear
/
28 define Package
/dropbear
29 $(call Package
/dropbear
/Default
)
32 TITLE
:=Small SSH2 client
/server
35 define Package
/dropbear
/description
36 A small SSH2 server
/client designed for small memory environments.
39 define Package
/dropbear
/conffiles
40 /etc
/dropbear
/dropbear_rsa_host_key
41 /etc
/dropbear
/dropbear_dss_host_key
45 define Package
/dropbearconvert
46 $(call Package
/dropbear
/Default
)
49 TITLE
:=Utility for converting SSH keys
57 $(if
$(CONFIG_SHADOW_PASSWORDS
),,--disable-shadow
) \
65 --disable-pututxline \
67 --enable-bundled-libtom
69 TARGET_CFLAGS
+= -DARGTYPE
=3 -ffunction-sections
-fdata-sections
70 TARGET_LDFLAGS
+= -Wl
,--gc-sections
72 define Build
/Configure
73 $(SED
) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR
)/options.h
74 $(SED
) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR
)/options.h
75 $(call Build
/Configure
/Default
)
79 $(MAKE
) $(PKG_JOBS
) -C
$(PKG_BUILD_DIR
) \
80 $(TARGET_CONFIGURE_OPTS
) \
82 PROGRAMS
="dropbear dbclient dropbearkey scp" \
84 $(MAKE
) $(PKG_JOBS
) -C
$(PKG_BUILD_DIR
) \
85 $(TARGET_CONFIGURE_OPTS
) \
87 PROGRAMS
="dropbearconvert"
90 define Package
/dropbear
/install
91 $(INSTALL_DIR
) $(1)/usr
/sbin
92 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearmulti
$(1)/usr
/sbin
/dropbear
93 $(INSTALL_DIR
) $(1)/usr
/bin
94 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/scp
95 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/ssh
96 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dbclient
97 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dropbearkey
98 $(INSTALL_DIR
) $(1)/etc
/config
99 $(INSTALL_DATA
) .
/files
/dropbear.config
$(1)/etc
/config
/dropbear
100 $(INSTALL_DIR
) $(1)/etc
/init.d
101 $(INSTALL_BIN
) .
/files
/dropbear.init
$(1)/etc
/init.d
/dropbear
102 $(INSTALL_DIR
) $(1)/usr
/lib
/opkg
/info
103 $(INSTALL_DIR
) $(1)/etc
/dropbear
104 touch
$(1)/etc
/dropbear
/dropbear_rsa_host_key
105 touch
$(1)/etc
/dropbear
/dropbear_dss_host_key
108 define Package
/dropbearconvert
/install
109 $(INSTALL_DIR
) $(1)/usr
/bin
110 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearconvert
$(1)/usr
/bin
/dropbearconvert
113 $(eval
$(call BuildPackage
,dropbear
))
114 $(eval
$(call BuildPackage
,dropbearconvert
))