6fad273660a4f160dcea3dfe778fd1ea54c54a9e
[openwrt/svn-archive/archive.git] / package / dropbear / Makefile
1 #
2 # Copyright (C) 2006-2009 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:=0.52
12 PKG_RELEASE:=5
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
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:=1c69ec674481d7745452f68f2ea5597e
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
68 define Build/Configure
69 $(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR)/options.h
70 $(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR)/options.h
71 $(call Build/Configure/Default)
72 endef
73
74 define Build/Compile
75 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
76 $(TARGET_CONFIGURE_OPTS) \
77 LD="$(TARGET_CC)" \
78 PROGRAMS="dropbear dbclient dropbearkey scp" \
79 MULTI=1 SCPPROGRESS=1
80 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
81 $(TARGET_CONFIGURE_OPTS) \
82 LD="$(TARGET_CC)" \
83 PROGRAMS="dropbearconvert"
84 endef
85
86 define Package/dropbear/install
87 $(INSTALL_DIR) $(1)/usr/sbin
88 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearmulti $(1)/usr/sbin/dropbear
89 $(INSTALL_DIR) $(1)/usr/bin
90 ln -sf ../sbin/dropbear $(1)/usr/bin/scp
91 ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
92 ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
93 ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
94 $(INSTALL_DIR) $(1)/etc/config
95 $(INSTALL_DATA) ./files/dropbear.config $(1)/etc/config/dropbear
96 $(INSTALL_DIR) $(1)/etc/init.d
97 $(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear
98 $(INSTALL_DIR) $(1)/usr/lib/opkg/info
99 $(INSTALL_DIR) $(1)/etc/dropbear
100 touch $(1)/etc/dropbear/dropbear_rsa_host_key
101 touch $(1)/etc/dropbear/dropbear_dss_host_key
102 endef
103
104 define Package/dropbearconvert/install
105 $(INSTALL_DIR) $(1)/usr/bin
106 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearconvert $(1)/usr/bin/dropbearconvert
107 endef
108
109 $(eval $(call BuildPackage,dropbear))
110 $(eval $(call BuildPackage,dropbearconvert))