| 1 | # |
| 2 | # Copyright (C) 2006-2012 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:=2011.54 |
| 12 | PKG_RELEASE:=2 |
| 13 | |
| 14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 15 | PKG_SOURCE_URL:= \ |
| 16 | http://matt.ucc.asn.au/dropbear/releases/ \ |
| 17 | http://www.mirrors.wiretapped.net/security/cryptography/apps/ssh/dropbear/ |
| 18 | PKG_MD5SUM:=c627ffe09570fad7aa94d8eac2b9320c |
| 19 | |
| 20 | PKG_BUILD_PARALLEL:=1 |
| 21 | |
| 22 | include $(INCLUDE_DIR)/package.mk |
| 23 | |
| 24 | define Package/dropbear/Default |
| 25 | URL:=http://matt.ucc.asn.au/dropbear/ |
| 26 | endef |
| 27 | |
| 28 | define Package/dropbear |
| 29 | $(call Package/dropbear/Default) |
| 30 | SECTION:=net |
| 31 | CATEGORY:=Base system |
| 32 | TITLE:=Small SSH2 client/server |
| 33 | endef |
| 34 | |
| 35 | define Package/dropbear/description |
| 36 | A small SSH2 server/client designed for small memory environments. |
| 37 | endef |
| 38 | |
| 39 | define Package/dropbear/conffiles |
| 40 | /etc/dropbear/dropbear_rsa_host_key |
| 41 | /etc/dropbear/dropbear_dss_host_key |
| 42 | /etc/config/dropbear |
| 43 | endef |
| 44 | |
| 45 | define Package/dropbearconvert |
| 46 | $(call Package/dropbear/Default) |
| 47 | SECTION:=utils |
| 48 | CATEGORY:=Utilities |
| 49 | TITLE:=Utility for converting SSH keys |
| 50 | endef |
| 51 | |
| 52 | CONFIGURE_ARGS += \ |
| 53 | --with-shared \ |
| 54 | --disable-pam \ |
| 55 | --enable-openpty \ |
| 56 | --enable-syslog \ |
| 57 | $(if $(CONFIG_SHADOW_PASSWORDS),,--disable-shadow) \ |
| 58 | --disable-lastlog \ |
| 59 | --disable-utmp \ |
| 60 | --disable-utmpx \ |
| 61 | --disable-wtmp \ |
| 62 | --disable-wtmpx \ |
| 63 | --disable-loginfunc \ |
| 64 | --disable-pututline \ |
| 65 | --disable-pututxline \ |
| 66 | --disable-zlib \ |
| 67 | --enable-bundled-libtom |
| 68 | |
| 69 | TARGET_CFLAGS += -DARGTYPE=3 -ffunction-sections -fdata-sections |
| 70 | TARGET_LDFLAGS += -Wl,--gc-sections |
| 71 | |
| 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) |
| 76 | endef |
| 77 | |
| 78 | define Build/Compile |
| 79 | +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ |
| 80 | $(TARGET_CONFIGURE_OPTS) \ |
| 81 | LD="$(TARGET_CC)" \ |
| 82 | PROGRAMS="dropbear dbclient dropbearkey scp" \ |
| 83 | MULTI=1 SCPPROGRESS=1 |
| 84 | +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ |
| 85 | $(TARGET_CONFIGURE_OPTS) \ |
| 86 | LD="$(TARGET_CC)" \ |
| 87 | PROGRAMS="dropbearconvert" |
| 88 | endef |
| 89 | |
| 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 |
| 106 | endef |
| 107 | |
| 108 | define Package/dropbearconvert/install |
| 109 | $(INSTALL_DIR) $(1)/usr/bin |
| 110 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearconvert $(1)/usr/bin/dropbearconvert |
| 111 | endef |
| 112 | |
| 113 | $(eval $(call BuildPackage,dropbear)) |
| 114 | $(eval $(call BuildPackage,dropbearconvert)) |
| 115 | |