dropbear: update to 2016.73
[openwrt/openwrt.git] / package / network / services / dropbear / Makefile
1 #
2 # Copyright (C) 2006-2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=dropbear
11 PKG_VERSION:=2016.73
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:= \
16 http://matt.ucc.asn.au/dropbear/releases/ \
17 https://dropbear.nl/mirror/releases/
18 PKG_MD5SUM:=8d6d78ce60ca52350ec04fcbd711ce9b
19
20 PKG_LICENSE:=MIT
21 PKG_LICENSE_FILES:=LICENSE libtomcrypt/LICENSE libtommath/LICENSE
22
23 PKG_BUILD_PARALLEL:=1
24 PKG_USE_MIPS16:=0
25
26 PKG_CONFIG_DEPENDS:=CONFIG_TARGET_INIT_PATH CONFIG_DROPBEAR_ECC CONFIG_DROPBEAR_CURVE25519
27
28 include $(INCLUDE_DIR)/package.mk
29
30 ifneq ($(DUMP),1)
31 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell $(SH_FUNC) echo $(CONFIG_TARGET_INIT_PATH) | md5s)
32 endif
33
34 define Package/dropbear/Default
35 URL:=http://matt.ucc.asn.au/dropbear/
36 endef
37
38 define Package/dropbear/config
39 source "$(SOURCE)/Config.in"
40 endef
41
42 define Package/dropbear
43 $(call Package/dropbear/Default)
44 SECTION:=net
45 CATEGORY:=Base system
46 TITLE:=Small SSH2 client/server
47 endef
48
49 define Package/dropbear/description
50 A small SSH2 server/client designed for small memory environments.
51 endef
52
53 define Package/dropbear/conffiles
54 /etc/dropbear/dropbear_rsa_host_key
55 /etc/config/dropbear
56 endef
57
58 define Package/dropbearconvert
59 $(call Package/dropbear/Default)
60 SECTION:=utils
61 CATEGORY:=Utilities
62 TITLE:=Utility for converting SSH keys
63 endef
64
65 CONFIGURE_ARGS += \
66 --disable-pam \
67 --enable-openpty \
68 --enable-syslog \
69 $(if $(CONFIG_SHADOW_PASSWORDS),,--disable-shadow) \
70 --disable-lastlog \
71 --disable-utmpx \
72 $(if $(CONFIG_DROPBEAR_UTMP),,--disable-utmp) \
73 --disable-wtmp \
74 --disable-wtmpx \
75 --disable-loginfunc \
76 $(if $(CONFIG_DROPBEAR_PUTUTLINE),,--disable-pututline) \
77 --disable-pututxline \
78 --disable-zlib \
79 --enable-bundled-libtom
80
81 TARGET_CFLAGS += -DDEFAULT_PATH=\\\"$(TARGET_INIT_PATH)\\\" -DARGTYPE=3 -ffunction-sections -fdata-sections
82 TARGET_LDFLAGS += -Wl,--gc-sections
83
84 define Build/Configure
85 $(Build/Configure/Default)
86
87 $(SED) 's,^#define DEFAULT_PATH .*$$$$,#define DEFAULT_PATH "$(TARGET_INIT_PATH)",g' \
88 $(PKG_BUILD_DIR)/options.h
89
90 awk 'BEGIN { rc = 1 } \
91 /'DROPBEAR_CURVE25519'/ { $$$$0 = "$(if $(CONFIG_DROPBEAR_CURVE25519),,// )#define 'DROPBEAR_CURVE25519'"; rc = 0 } \
92 { print } \
93 END { exit(rc) }' $(PKG_BUILD_DIR)/options.h \
94 >$(PKG_BUILD_DIR)/options.h.new && \
95 mv $(PKG_BUILD_DIR)/options.h.new $(PKG_BUILD_DIR)/options.h
96
97 # Enforce that all replacements are made, otherwise options.h has changed
98 # format and this logic is broken.
99 for OPTION in DROPBEAR_ECDSA DROPBEAR_ECDH; do \
100 awk 'BEGIN { rc = 1 } \
101 /'$$$$OPTION'/ { $$$$0 = "$(if $(CONFIG_DROPBEAR_ECC),,// )#define '$$$$OPTION'"; rc = 0 } \
102 { print } \
103 END { exit(rc) }' $(PKG_BUILD_DIR)/options.h \
104 >$(PKG_BUILD_DIR)/options.h.new && \
105 mv $(PKG_BUILD_DIR)/options.h.new $(PKG_BUILD_DIR)/options.h || exit 1; \
106 done
107
108 # Enforce rebuild of svr-chansession.c
109 rm -f $(PKG_BUILD_DIR)/svr-chansession.o
110 endef
111
112 define Build/Compile
113 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
114 $(TARGET_CONFIGURE_OPTS) \
115 PROGRAMS="dropbear dbclient dropbearkey scp" \
116 MULTI=1 SCPPROGRESS=1
117 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
118 $(TARGET_CONFIGURE_OPTS) \
119 PROGRAMS="dropbearconvert"
120 endef
121
122 define Package/dropbear/install
123 $(INSTALL_DIR) $(1)/usr/sbin
124 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearmulti $(1)/usr/sbin/dropbear
125 $(INSTALL_DIR) $(1)/usr/bin
126 $(LN) ../sbin/dropbear $(1)/usr/bin/scp
127 $(LN) ../sbin/dropbear $(1)/usr/bin/ssh
128 $(LN) ../sbin/dropbear $(1)/usr/bin/dbclient
129 $(LN) ../sbin/dropbear $(1)/usr/bin/dropbearkey
130 $(INSTALL_DIR) $(1)/etc/config
131 $(INSTALL_DATA) ./files/dropbear.config $(1)/etc/config/dropbear
132 $(INSTALL_DIR) $(1)/etc/init.d
133 $(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear
134 $(INSTALL_DIR) $(1)/usr/lib/opkg/info
135 $(INSTALL_DIR) $(1)/etc/dropbear
136 touch $(1)/etc/dropbear/dropbear_rsa_host_key
137 endef
138
139 define Package/dropbearconvert/install
140 $(INSTALL_DIR) $(1)/usr/bin
141 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearconvert $(1)/usr/bin/dropbearconvert
142 endef
143
144 $(eval $(call BuildPackage,dropbear))
145 $(eval $(call BuildPackage,dropbearconvert))