591d7785674d5e303a55353ed543f4c953669e2c
[openwrt/staging/florian.git] / package / dropbear / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=dropbear
12 PKG_VERSION:=0.48.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://matt.ucc.asn.au/dropbear/releases/
17 PKG_MD5SUM:=ca8e53a766faec831882831364568421
18 PKG_CAT:=zcat
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/dropbear/Default
23 URL:=http://matt.ucc.asn.au/dropbear/
24 endef
25
26 define Package/dropbear
27 $(call Package/dropbear/Default)
28 SECTION:=net
29 CATEGORY:=Base system
30 TITLE:=Small SSH2 client/server
31 DESCRIPTION:=\
32 A small SSH2 server/client designed for small memory environments.
33 endef
34
35 define Package/dropbearconvert
36 $(call Package/dropbear/Default)
37 SECTION:=utils
38 CATEGORY:=Utilities
39 TITLE:=Utility for converting SSH keys
40 endef
41
42 CONFIGURE_ARGS += \
43 --with-shared \
44 --disable-pam \
45 --enable-openpty \
46 --enable-syslog \
47 --disable-shadow \
48 --disable-lastlog \
49 --disable-utmp \
50 --disable-utmpx \
51 --disable-wtmp \
52 --disable-wtmpx \
53 --disable-loginfunc \
54 --disable-pututline \
55 --disable-pututxline \
56 --disable-zlib
57
58 define Build/Configure
59 $(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR)/options.h
60 $(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR)/options.h
61 $(call Build/Configure/Default)
62 endef
63
64 define Build/Compile
65 $(MAKE) -C $(PKG_BUILD_DIR) \
66 $(TARGET_CONFIGURE_OPTS) \
67 LD="$(TARGET_CC)" \
68 PROGRAMS="dropbear dbclient dropbearkey scp" \
69 MULTI=1 SCPPROGRESS=1
70 $(MAKE) -C $(PKG_BUILD_DIR) \
71 $(TARGET_CONFIGURE_OPTS) \
72 LD="$(TARGET_CC)" \
73 PROGRAMS="dropbearconvert"
74 endef
75
76 define Package/dropbear/install
77 $(INSTALL_DIR) $(1)/usr/sbin
78 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearmulti \
79 $(1)/usr/sbin/dropbear
80 $(INSTALL_DIR) $(1)/usr/bin
81 ln -sf ../sbin/dropbear $(1)/usr/bin/scp
82 ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
83 ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
84 ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
85 $(INSTALL_DIR) $(1)/etc/config
86 $(INSTALL_DATA) ./files/dropbear.config $(1)/etc/config/dropbear
87 $(INSTALL_DIR) $(1)/etc/init.d
88 $(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear
89 endef
90
91 define Package/dropbearconvert/install
92 $(INSTALL_DIR) $(1)/usr/bin
93 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearconvert \
94 $(1)/usr/bin/dropbearconvert
95 endef
96
97 $(eval $(call BuildPackage,dropbear))
98 $(eval $(call BuildPackage,dropbearconvert))