# $FreeWRT$ #- # This file is part of the FreeWRT project. FreeWRT is copyrighted # material, please see the LICENCE file in the top-level directory # or at http://www.freewrt.org/licence for details. include $(TOPDIR)/rules.mk PKG_NAME:= dropbear PKG_VERSION:= 0.48.1 PKG_RELEASE:= 1 PKG_MD5SUM:= ca8e53a766faec831882831364568421 PKG_INIT:= 50 PKG_SOURCE_URL:= http://matt.ucc.asn.au/dropbear/releases/ PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,DROPBEAR,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,DBCONVERT,dropbearconvert,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(WRKBUILD)/.configured: $(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(WRKBUILD)/options.h $(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(WRKBUILD)/options.h (cd $(WRKBUILD); rm -rf config.cache; \ autoconf; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --program-prefix="" \ --program-suffix="" \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --datadir=/usr/share \ --includedir=/usr/include \ --infodir=/usr/share/info \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ --localstatedir=/var \ --mandir=/usr/share/man \ --sbindir=/usr/sbin \ --sysconfdir=/etc \ --disable-nls \ --with-shared \ --disable-pam \ --enable-openpty \ --enable-syslog \ --disable-shadow \ --disable-lastlog \ --disable-utmp \ --disable-utmpx \ --disable-wtmp \ --disable-wtmpx \ --disable-loginfunc \ --disable-pututline \ --disable-pututxline \ --disable-zlib \ ); touch $@ $(WRKBUILD)/.built: $(MAKE) -C $(WRKBUILD) \ LD=$(TARGET_CC) \ PROGRAMS="dropbear dbclient dropbearkey scp" \ MULTI=1 SCPPROGRESS=1 $(MAKE) -C $(WRKBUILD) \ LD=$(TARGET_CC) \ PROGRAMS="dropbearconvert" touch $@ $(IPKG_DBCONVERT): $(INSTALL_DIR) $(IDIR_DBCONVERT)/usr/bin $(INSTALL_BIN) $(WRKBUILD)/dropbearconvert \ $(IDIR_DBCONVERT)/usr/bin/dropbearconvert $(RSTRIP) $(IDIR_DBCONVERT) $(IPKG_BUILD) $(IDIR_DBCONVERT) $(PACKAGE_DIR) $(IPKG_DROPBEAR): $(INSTALL_DIR) $(IDIR_DROPBEAR)/etc/init.d $(INSTALL_DIR) $(IDIR_DROPBEAR)/usr/bin $(INSTALL_DIR) $(IDIR_DROPBEAR)/usr/sbin $(INSTALL_BIN) $(WRKBUILD)/dropbearmulti \ $(IDIR_DROPBEAR)/usr/sbin/dropbear ln -sf ../sbin/dropbear $(IDIR_DROPBEAR)/usr/bin/scp ln -sf ../sbin/dropbear $(IDIR_DROPBEAR)/usr/bin/ssh ln -sf ../sbin/dropbear $(IDIR_DROPBEAR)/usr/bin/dbclient ln -sf ../sbin/dropbear $(IDIR_DROPBEAR)/usr/bin/dropbearkey $(INSTALL_BIN) ./files/dropbear.init \ $(IDIR_DROPBEAR)/etc/init.d/S$(PKG_INIT)dropbear $(RSTRIP) $(IDIR_DROPBEAR) $(IPKG_BUILD) $(IDIR_DROPBEAR) $(PACKAGE_DIR)